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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c0aa62c3e96645ea7afe492af7fca4db227c8e58 | 6bcb4548098bc6f847a1e93bdac74c811518eb5f | /src/appium/SelectDropDownValue.java | 7e0ca5edd9b0e839222388c886085ed48ab64ce9 | [] | no_license | kvchs/appium-api | 6b2e53ca00a8eecf566dea8686cd0ff51b10ac94 | e55d6fbf349ac38688a9a5fdd3bc47050d3f83ee | refs/heads/master | 2020-03-22T00:39:01.109105 | 2018-06-30T14:46:34 | 2018-06-30T14:46:34 | 139,256,785 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,600 | java | package appium;
import io.appium.java_client.android.AndroidDriver;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.testng.Assert;
import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
public class SelectDropDownValue {
AndroidDriver driver;
@BeforeTest
public void setUp() throws Exception {
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability("deviceName", "ZX1B32FFXF");
capabilities.setCapability("browserName", "Android");
capabilities.setCapability("platformVersion", "4.3");
capabilities.setCapability("platformName", "Android");
capabilities.setCapability("appPackage", "io.appium.android.apis");
capabilities.setCapability("appActivity",
"io.appium.android.apis.ApiDemos");
driver = new AndroidDriver(new URL("http://127.0.0.1:4723/wd/hub"),
capabilities);
driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS);
}
@Test
public void typeInText() throws InterruptedException {
// Scroll till element which contains "Views" text If It Is not visible
// on screen.
// driver.scrollTo("Views");
// Click on Views.
driver.findElement(
By.xpath("//android.widget.TextView[@content-desc='Views']"))
.click();
// Scroll till element which contains "Controls" text If It Is not
// visible on screen.
// driver.scrollTo("Controls");
// Click on Controls.
driver.findElement(
By.xpath("//android.widget.TextView[@text='Controls']"))
.click();
// Scroll till element which contains "2. Dark Theme" text If It Is not
// visible on screen.
// driver.scrollTo("2. Dark Theme");
// Click on 2. Dark Theme.
driver.findElement(
By.xpath("//android.widget.TextView[@text='2. Dark Theme']"))
.click();
// Typing in text box using sendKeys command.
driver.findElement(By.id("io.appium.android.apis:id/edit")).sendKeys(
"Test Message");
driver.hideKeyboard();
// driver.findElement(By.name("Checkbox 2")).click();
driver.findElement(By.id("io.appium.android.apis:id/check2")).click();
driver.findElement(By.id("android:id/text1")).click();
//Select item "Mars" from drop down list.
driver.findElement(By.xpath("//android.widget.CheckedTextView[@text='Mars']")).click();
}
@AfterTest
public void End() {
driver.quit();
}
}
| [
"[email protected]"
] | |
70518e2195007407c26e0f4133cd7f665de48fcd | 77fadbe264a35daba810d9b2442ebb1675a0f734 | /app/src/main/java/com/example/shivam/culibrary/books_Due.java | fe1e44cbbafe4bf1c049c53f766f0b1d399627f6 | [] | no_license | Shivam0126/KohaAndroidApplication | 758af686305ab94f4b5d3e31b701e6cfb168e43b | b632572370555c262ebcc3dc3fd7274ddbf94040 | refs/heads/master | 2022-08-05T13:53:23.876047 | 2020-05-19T02:42:07 | 2020-05-19T02:42:07 | 265,114,574 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 970 | java | package com.example.shivam.culibrary;
/**
* Created by shivam on 5/1/18.
*/
public class books_Due {
public String title,author,due_Date,image;
public books_Due()
{
}
public books_Due(String title, String author, String due_Date,String image) {
this.title = title;
this.author = author;
this.due_Date = due_Date;
this.image= image;
}
public String getTitle() {
return title;
}
public String getAuthor() {
return author;
}
public String getDue_Date() {
return due_Date;
}
public void setTitle(String title) {
this.title = title;
}
public void setImage(String image) {
this.image = image;
}
public String getImage() {
return image;
}
public void setAuthor(String author) {
this.author = author;
}
public void setDue_Date(String due_Date) {
this.due_Date = due_Date;
}
}
| [
"[email protected]"
] | |
38ff93e81c7a1457a7313a2432661a35b4b49d1e | e1cad595ca440c3c12516b2083e3af0a5cddf720 | /netty-gnss/src/main/java/com/netty/gnss/protocol/codec/IMDecoder.java | fbd6d426e25f00f74fd4f9117d476dcc3e20f8b3 | [] | no_license | GentleDevin/netty-parent | 2ee3d1d55d7f6f949bae683fcb29787a4428f468 | 708d8a4490405d524c5e96c5888deec9df3443fc | refs/heads/master | 2023-03-31T00:21:32.082875 | 2021-03-29T02:23:25 | 2021-03-29T02:23:25 | 335,195,188 | 0 | 0 | null | 2021-02-04T02:49:56 | 2021-02-02T06:47:02 | Java | UTF-8 | Java | false | false | 1,341 | java | package com.netty.gnss.protocol.codec;
import com.netty.gnss.processor.ServerMsgProcessor;
import com.netty.gnss.protocol.IMMessage;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.ByteToMessageDecoder;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.util.List;
/**
* @Title: 自定义IM协议的编码器
* @Description:
* @Author: Devin
* @CreateDate: 2021/03/10 11:40:36
**/
public class IMDecoder extends ByteToMessageDecoder {
private static Logger logger= LogManager.getLogger(LogManager.ROOT_LOGGER_NAME);
private final int BASE_LENGTH = 6;
private int msgLength = 0;
private ServerMsgProcessor msgProcessor = new ServerMsgProcessor();
@Override
protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
// 可读长度必须大于基本长度
if (in.readableBytes() > BASE_LENGTH && in.readableBytes() >= msgLength) {
IMMessage imMessage = msgProcessor.parseGnss(in);
if (null == imMessage) {
return;
}
msgLength = imMessage.getMsgLength();
//可读字节数据不够,等待缓冲区数据
if(!imMessage.isReadable()) {
return;
}
out.add(imMessage);
}else{
System.out.println("readableBytes=" +in.readableBytes());
}
}
}
| [
"[email protected]"
] | |
dd3f303713151fd845fa8647fde5e29c86b6de2f | f0e7b4d121a65232c9fb97b3e3052dcd5fcbf9c6 | /src/AddHomeDeli_D.java | fe31ea44a74f6f1bd3554368d27849cce8140056 | [] | no_license | Talhart49/Food-Delivery | 76624e804c619a8d539fa7ad0b71cc255d4143ab | b98c9920a794c907309968ff97f6ee14190cd961 | refs/heads/main | 2023-06-07T00:43:45.511990 | 2021-07-01T20:52:40 | 2021-07-01T20:52:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,406 | java | import java.awt.*;
import javax.swing.ImageIcon;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.SQLException;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
public class AddHomeDeli_D extends JFrame {
private JPanel PaddhomeDeli;
private JButton Addbtn;
private JButton backbtn;
private JTextField idfld;
private JTextField descfld;
private JLabel homeDelilbl;
private JTextField addressfld;
private JTextField delimanidfld;
private JTextField paymentfld;
private JLabel paymentlbl;
public static void main(String[] args) {
AddHomeDeli_D frame = new AddHomeDeli_D();
frame.setVisible(true);
}
public AddHomeDeli_D() {
initComponents();
}
private void initComponents() {
setIconImage(Toolkit.getDefaultToolkit().getImage("ramen.png"));
setTitle("Ramen_Here");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 1600, 800);
PaddhomeDeli = new JPanel();
PaddhomeDeli.setBackground(new Color(107, 103, 91));
setContentPane(PaddhomeDeli);
PaddhomeDeli.setLayout(null);
JLabel backgroundlabel = new JLabel("");
backgroundlabel.setIcon(new ImageIcon("add.jpg"));
backgroundlabel.setBounds(0, 0, 1370, 749);
JLabel idlbl = new JLabel("ID :");
idlbl.setFont(new Font("Tahoma", Font.PLAIN, 19));
idlbl.setForeground(Color.BLACK);
idlbl.setBounds(548, 370, 102, 40);
PaddhomeDeli.add(idlbl);
JLabel desclbl = new JLabel("Description :");
desclbl.setFont(new Font("Tahoma", Font.PLAIN, 19));
desclbl.setForeground(Color.BLACK);
desclbl.setBounds(548, 424, 139, 42);
PaddhomeDeli.add(desclbl);
idfld = new JTextField();
idfld.setFont(new Font("Tahoma", Font.PLAIN, 15));
idfld.setBounds(714, 370, 283, 44);
PaddhomeDeli.add(idfld);
idfld.setColumns(10);
Addbtn = new JButton("Add");
Addbtn.setFont(new Font("Tahoma", Font.PLAIN, 16));
Addbtn.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
if (!(idfld.getText().isBlank() || descfld.getText().isBlank() || addressfld.getText().isBlank()
|| paymentfld.getText().isBlank() || delimanidfld.getText().isBlank())){
if( AddAll.AddhomeDeli (Integer.parseInt(idfld.getText()),descfld.getText(),addressfld.getText()
, Integer.parseInt(paymentfld.getText()),Integer.parseInt(delimanidfld.getText()))){
JOptionPane.showMessageDialog(null,"Added");
}
else {
JOptionPane.showMessageDialog(null,"Error Enter Again");
}
idfld.setText("");
descfld.setText("");
addressfld.setText("");
paymentfld.setText("");
delimanidfld.setText("");
}
else {
JOptionPane.showMessageDialog(null,"Error ,Please fill all fields");
}
}catch (SQLException throwables) {
JOptionPane.showMessageDialog(null,"Error Enter Again");
idfld.setText("");
descfld.setText("");
addressfld.setText("");
paymentfld.setText("");
delimanidfld.setText("");
}
}
});
Addbtn.setBounds(714, 650, 129, 33);
PaddhomeDeli.add(Addbtn);
backbtn = new JButton("Back");
backbtn.setIcon(new ImageIcon("bckR.jpg"));
backbtn.setFont(new Font("Tahoma", Font.PLAIN, 20));
backbtn.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
dispose();
Recep_Dashboard_D a=new Recep_Dashboard_D();
a.setVisible(true);
}
});
backbtn.setForeground(new Color(220, 20, 60));
backbtn.setBackground(new Color(255, 235, 205));
backbtn.setBounds(0, 0, 139, 33);
PaddhomeDeli.add(backbtn);
JLabel experincelbl = new JLabel("Delivery Man ID :");
experincelbl.setForeground(Color.BLACK);
experincelbl.setFont(new Font("Tahoma", Font.PLAIN, 19));
experincelbl.setBounds(548, 594, 156, 42);
PaddhomeDeli.add(experincelbl);
descfld = new JTextField();
descfld.setFont(new Font("Tahoma", Font.PLAIN, 15));
descfld.setColumns(10);
descfld.setBounds(714, 424, 283, 44);
PaddhomeDeli.add(descfld);
homeDelilbl = new JLabel("Add Home Delivery");
homeDelilbl.setForeground(Color.BLACK);
homeDelilbl.setFont(new Font("Tahoma", Font.BOLD | Font.ITALIC, 20));
homeDelilbl.setBounds(728, 254, 210, 40);
PaddhomeDeli.add(homeDelilbl);
addressfld = new JTextField();
addressfld.setFont(new Font("Tahoma", Font.PLAIN, 15));
addressfld.setColumns(10);
addressfld.setBounds(714, 482, 283, 44);
PaddhomeDeli.add(addressfld);
delimanidfld = new JTextField();
delimanidfld.setFont(new Font("Tahoma", Font.PLAIN, 15));
delimanidfld.setColumns(10);
delimanidfld.setBounds(714, 595, 283, 44);
PaddhomeDeli.add(delimanidfld);
JLabel Addresslbl = new JLabel("Address :");
Addresslbl.setForeground(Color.BLACK);
Addresslbl.setFont(new Font("Tahoma", Font.PLAIN, 19));
Addresslbl.setBounds(548, 477, 102, 42);
PaddhomeDeli.add(Addresslbl);
paymentfld = new JTextField();
paymentfld.setFont(new Font("Tahoma", Font.PLAIN, 15));
paymentfld.setColumns(10);
paymentfld.setBounds(714, 534, 283, 44);
PaddhomeDeli.add(paymentfld);
paymentlbl = new JLabel("Payment :");
paymentlbl.setForeground(Color.BLACK);
paymentlbl.setFont(new Font("Tahoma", Font.PLAIN, 19));
paymentlbl.setBounds(548, 530, 102, 42);
PaddhomeDeli.add(paymentlbl);
PaddhomeDeli.add(backgroundlabel);
setLocationRelativeTo(null);
}
}
| [
"[email protected]"
] | |
4b5f43842c4850c447713326f43c1440e65f241e | bd9bb4900952e03fcbb801e8ec9e7ca78cb2c454 | /nros-crm/start/src/test/java/com/ztesoft/zsmart/nros/crm/core/start/controller/MemberControllerTest.java | 38fab0c051e728bc5286a1ace82428cb5013e14a | [] | no_license | P79N6A/nrosCrm | 9469b1019f59d92d8138a32f55643e51b594d0b7 | acde991af55d2d8ddac6ac494574954bea4432bc | refs/heads/master | 2020-07-26T07:30:21.001382 | 2019-09-15T10:32:55 | 2019-09-15T10:32:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,814 | java | package com.ztesoft.zsmart.nros.crm.core.start.controller;
import com.ztesoft.zsmart.nros.base.model.ResponseMsg;
import com.ztesoft.zsmart.nros.crm.core.MockitoTest;
import com.ztesoft.zsmart.nros.crm.core.client.model.dto.GrowthRecordDTO;
import com.ztesoft.zsmart.nros.crm.core.client.model.param.TagMemberParam;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.MemberServiceImpl;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.MemberProxy;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.model.BalanceRecordDTO;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.model.MemberBalanceDTO;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.model.MemberDetailDTO;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.model.MemberListDTO;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.model.PointUseRecordDTO;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.model.TagConfigDTO;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.model.TagDTO;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.param.BalanceRecordQuery;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.param.GrowthRecordQuery;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.param.MemberQuery;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.param.PointRecordQuery;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.param.TagConfigQuery;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.param.TagParams;
import com.ztesoft.zsmart.nros.crm.core.server.middleware.rpc.feigin.proxy.param.TagQuery;
import com.ztesoft.zsmart.nros.crm.core.client.model.vo.MemberPointVO;
import org.assertj.core.util.Lists;
import org.junit.Test;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.ArrayList;
import java.util.List;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.anyList;
import static org.mockito.Mockito.when;
/**
* 会员接口单元测试
*/
public class MemberControllerTest extends MockitoTest {
@Autowired
private MemberController memberController;
@Mock
private MemberProxy memberProxy;
@InjectMocks
@Autowired
private MemberServiceImpl memberService;
@Test
public void listMemberTest() {
MemberQuery memberQuery = new MemberQuery();
ResponseMsg<List<MemberListDTO>> responseMsg = new ResponseMsg<>();
List<MemberListDTO> list = new ArrayList<>();
MemberListDTO memberListDTO = new MemberListDTO();
memberListDTO.setName("zhangsan");
list.add(memberListDTO);
responseMsg.setData(list);
when(memberProxy.queryMemberList(memberQuery)).thenReturn(responseMsg);
ResponseMsg<List<MemberListDTO>> rtn = memberController.listMember(memberQuery);
assertTrue(rtn.getData().get(0).getName().equals("zhangsan"));
}
@Test
public void tagsMembersTest() {
TagMemberParam tagMemberParam = new TagMemberParam();
List<String> memberIdList = new ArrayList<>();
memberIdList.add("1");
List<String> tagIdList = new ArrayList<>();
tagIdList.add("2");
tagMemberParam.setMemberIdList(memberIdList);
tagMemberParam.setTagIdList(tagIdList);
tagMemberParam.setTagType("1");
ResponseMsg responseMsg = new ResponseMsg();
responseMsg.setSuccess(true);
when(memberProxy.saveMemberTagBatch(anyList())).thenReturn(responseMsg);
ResponseMsg rtn = memberController.tagsMembers(tagMemberParam);
assertTrue(rtn.getSuccess() == true);
}
@Test
public void deleteMemberTagTest() {
TagParams tagParams = new TagParams();
tagParams.setMemberId(1L);
tagParams.setTagId(1L);
ResponseMsg responseMsg = new ResponseMsg();
responseMsg.setSuccess(true);
when(memberProxy.modifyMemberTag(tagParams)).thenReturn(responseMsg);
ResponseMsg rtn = memberController.deleteMemberTag(tagParams);
assertTrue(rtn.getSuccess() == true);
}
@Test
public void getDetailByIdTest() {
Long memberId = 1L;
ResponseMsg<MemberDetailDTO> responseMsg = new ResponseMsg<>();
MemberDetailDTO memberDetailDTO = new MemberDetailDTO();
memberDetailDTO.setName("zhangsan");
responseMsg.setData(memberDetailDTO);
when(memberProxy.getDetailById(memberId)).thenReturn(responseMsg);
ResponseMsg<MemberDetailDTO> rtn = memberController.getDetailById(memberId);
assertTrue("zhangsan".equals(rtn.getData().getName()));
}
@Test
public void qyTagByMemberTest() {
TagQuery query = new TagQuery();
query.setTagId(1L);
ResponseMsg<List<TagDTO>> responseMsg = new ResponseMsg<>();
List<TagDTO> list = new ArrayList<>();
TagDTO tagDTO = new TagDTO();
tagDTO.setMemberId(1L);
list.add(tagDTO);
responseMsg.setData(list);
when(memberProxy.qyTagByMember(query)).thenReturn(responseMsg);
ResponseMsg<List<TagDTO>> rtn = memberController.qyTagByMember(query);
assertTrue(rtn.getData().get(0).getMemberId().longValue() == 1);
}
@Test
public void findPointUseRecordTest() {
PointRecordQuery query = new PointRecordQuery();
query.setMemberId(1L);
ResponseMsg<List<PointUseRecordDTO>> responseMsg = new ResponseMsg<>();
List<PointUseRecordDTO> list = new ArrayList<>();
PointUseRecordDTO pointUseRecordDTO = new PointUseRecordDTO();
pointUseRecordDTO.setUsePoint(5);
list.add(pointUseRecordDTO);
responseMsg.setData(list);
when(memberProxy.findPointUseRecord(query)).thenReturn(responseMsg);
ResponseMsg<List<PointUseRecordDTO>> rtn = memberController.findPointUseRecord(query);
assertTrue(rtn.getData().get(0).getUsePoint() == 5);
}
@Test
public void findPointRecordTest() {
PointRecordQuery query = new PointRecordQuery();
query.setMemberId(1L);
ResponseMsg responseMsg = new ResponseMsg();
responseMsg.setSuccess(true);
when(memberProxy.findPointRecord(query)).thenReturn(responseMsg);
ResponseMsg rtn = memberController.findPointRecord(query);
assertTrue(rtn.getSuccess() == true);
}
@Test
public void findMemberBalanceTest() {
Long memberId = 1L;
ResponseMsg<MemberBalanceDTO> responseMsg = new ResponseMsg<>();
MemberBalanceDTO balanceDTO = new MemberBalanceDTO();
balanceDTO.setNormalBalance(500L);
responseMsg.setData(balanceDTO);
when(memberProxy.findMemberBalance(memberId)).thenReturn(responseMsg);
ResponseMsg<MemberBalanceDTO> rtn = memberController.findMemberBalance(memberId);
assertTrue(rtn.getData().getNormalBalance().longValue() == 500);
}
@Test
public void findGrowthRecordTest() {
GrowthRecordQuery query = new GrowthRecordQuery();
query.setMemberId(1L);
ResponseMsg<List<GrowthRecordDTO>> responseMsg = new ResponseMsg<>();
List<GrowthRecordDTO> list = new ArrayList<>();
GrowthRecordDTO growthRecordDTO = new GrowthRecordDTO();
growthRecordDTO.setGrowth(100);
list.add(growthRecordDTO);
responseMsg.setData(list);
when(memberProxy.findGrowthRecord(query)).thenReturn(responseMsg);
ResponseMsg<List<GrowthRecordDTO>> rtn = memberController.findGrowthRecord(query);
assertTrue(rtn.getData().get(0).getGrowth() == 100);
}
@Test
public void findBalanceRecordListTest() {
BalanceRecordQuery query = new BalanceRecordQuery();
query.setMemberId(1L);
ResponseMsg<List<BalanceRecordDTO>> responseMsg = new ResponseMsg<>();
List<BalanceRecordDTO> list = new ArrayList<>();
BalanceRecordDTO balanceRecordDTO = new BalanceRecordDTO();
balanceRecordDTO.setGiftAmount("1000");
list.add(balanceRecordDTO);
responseMsg.setData(list);
when(memberProxy.findBalanceRecordList(query)).thenReturn(responseMsg);
ResponseMsg<List<BalanceRecordDTO>> rtn = memberController.findBalanceRecordList(query);
assertTrue(rtn.getData().get(0).getGiftAmount().equals("1000"));
}
@Test
public void findDetailPointTest() {
Long memberId = 1L;
ResponseMsg responseTotalPoint = new ResponseMsg();
responseTotalPoint.setData(1000);
ResponseMsg responseUsePoint = new ResponseMsg();
responseUsePoint.setData(400);
when(memberProxy.findTotalPoint(memberId)).thenReturn(responseTotalPoint);
when(memberProxy.findTotalUsePoint(memberId)).thenReturn(responseUsePoint);
ResponseMsg<MemberPointVO> responseMsg = memberController.findDetailPoint(memberId);
assertTrue(responseMsg.getData().getSurplusPoint() == 600);
}
@Test
public void qyTagConfigListTest() {
TagConfigQuery query = new TagConfigQuery();
ResponseMsg<List<TagConfigDTO>> responseMsg = new ResponseMsg<>();
TagConfigDTO tagConfigDTO = new TagConfigDTO();
tagConfigDTO.setValue("test");
responseMsg.setData(Lists.newArrayList(tagConfigDTO));
when(memberProxy.qyTagConfigList(query)).thenReturn(responseMsg);
ResponseMsg<List<TagConfigDTO>> rtn = memberController.qyTagConfigList(query);
assertTrue(rtn.getData().get(0).getValue().equals("test"));
}
}
| [
"[email protected]"
] | |
0366d5f9b24e7044c5cffe91034a7068c78bc2ef | 33e73b6b7de2d70829f93e67a64e0e7e8c15c884 | /objectflowview/src/main/java/com/aqoong/lib/objectflowview/ObjectFlowView.java | a6530da66e174be388d06bfba9d4124a5ba314b0 | [] | no_license | aqoong/ObjectFlowView | c25b28dcd38f93bb226aef2c38b02a60380d4b7b | 9ea8733680b4620fd1dd44826751a1e72dd2b20b | refs/heads/master | 2020-11-28T04:52:53.700392 | 2020-01-14T09:09:51 | 2020-01-14T09:09:51 | 229,708,306 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,034 | java | package com.aqoong.lib.objectflowview;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Color;
import android.util.AttributeSet;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewDebug;
import android.view.ViewTreeObserver;
import android.view.animation.Animation;
import android.view.animation.LinearInterpolator;
import android.view.animation.TranslateAnimation;
import android.widget.HorizontalScrollView;
import androidx.annotation.Nullable;
import java.util.LinkedList;
import java.util.Queue;
/**
* [ObjectFlowViewSample]
* <p>
* Class: ObjectFlowView
* <p>
* Created by aqoong on 2019-12-23.
* - Email : [email protected]
* - GitHub : https://github.com/aqoong
* <p>
* Description:
*/
public class ObjectFlowView extends HorizontalScrollView {
private final String TAG = getClass().getSimpleName();
private FlowObjectManager flowManager;
private Queue<FlowObjectManager> flowObjectManagerQueue;
private View parentView; //ScrollView
private View contentView;
private boolean isPlaying = false;
private long mDuration = 0;
private float mTextSize = 0;
private int mTextColor = -1;
private int mObjectInterval = 0;
public ObjectFlowView(Context context) {
this(context, null);
}
public ObjectFlowView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
try {
TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.ObjectFlowView);
setAnimationDuration(ta.getInt(R.styleable.ObjectFlowView_animDuration, 2000));
setTextSize(ta.getDimension(R.styleable.ObjectFlowView_textSize, 30));
setTextColor(ta.getString(R.styleable.ObjectFlowView_textColor));
if(mTextColor == -1){
setTextColor(ta.getColor(R.styleable.ObjectFlowView_textColor, Color.BLACK));
}
setObjectInterval(ta.getInt(R.styleable.ObjectFlowView_objectInterval, 30));
ta.recycle();
}catch(NullPointerException e){
e.printStackTrace();
}catch (Exception e){
e.printStackTrace();
}finally {
setupView();
}
}
private ViewTreeObserver.OnGlobalLayoutListener addViewListener = new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
TranslateAnimation translateAnimation = new TranslateAnimation(
parentView.getWidth(),
-contentView.getWidth(),
0,
0
);
translateAnimation.setDuration(flowManager.getFlowObjectList().size() * mDuration);
translateAnimation.setRepeatCount(Animation.INFINITE);
translateAnimation.setInterpolator(new LinearInterpolator());
translateAnimation.setFillAfter(true);
translateAnimation.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
isPlaying = true;
}
@Override
public void onAnimationEnd(Animation animation) {
isPlaying = false;
}
@Override
public void onAnimationRepeat(Animation animation) {
if(!flowObjectManagerQueue.isEmpty()){
Log.d(TAG, "change view");
isPlaying = false;
animation.cancel();
setFlowObjectManager(flowObjectManagerQueue.poll());
return;
}
}
});
if(!isPlaying) {
contentView.setAnimation(translateAnimation);
}
}
};
private void setupView(){
Log.d(TAG, "call setupView()");
removeAllViews();
LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
parentView = inflater.inflate(R.layout.objectflowview_layout, this);
flowObjectManagerQueue = new LinkedList<>();
}
public void setAnimationDuration(long duration){
this.mDuration = duration;
setupView();
}
public void setTextColor(int color){
this.mTextColor = color;
setupView();
}
public void setTextColor(String color){
this.mTextColor = Color.parseColor(color);
setupView();
}
public void setTextSize(float size){
this.mTextSize = size;
setupView();
}
public void setObjectInterval(int interval) {
this.mObjectInterval = interval;
setupView();
}
public void setTextSetting(String color, float size){
setTextSetting(Color.parseColor(color), size);
}
public void setTextSetting(int color, float size){
this.mTextColor = color;
this.mTextSize = size;
setupView();
}
private void setAnimation(View view){
view.getViewTreeObserver().removeOnGlobalLayoutListener(addViewListener);
this.removeAllViews();
this.addView(view);
view.getViewTreeObserver().addOnGlobalLayoutListener(addViewListener);
}
public void setFlowObjectManager(FlowObjectManager manager){
Log.d(TAG, "call setFlowObjectManager()");
if(isPlaying){
flowObjectManagerQueue.add(manager);
return;
}
this.flowManager = manager;
this.removeAllViews();
clearAnimation();
contentView = this.flowManager.ConvertObjectToView(mTextSize, mTextColor, mObjectInterval);
setAnimation(contentView);
this.invalidate();
}
public FlowObjectManager getFlowObjectManager(){
return this.flowManager;
}
public boolean isPlaying(){return this.isPlaying;}
}
| [
"[email protected]"
] | |
403b1928b7f73db31526eafe8e1c80ad72ded006 | b71673707e418dcbf869d0e53ef76f7ec7651ce1 | /entity-view/testsuite/src/test/java/com/blazebit/persistence/view/testsuite/update/subview/inverse/embedded/entityid/model/UpdatableLegacyOrderPositionDefaultView.java | cdf22ee525ac05e9ea88707feea0f61dc6680969 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Mobe91/blaze-persistence | bf92028028b241eb6a0a5f13dec323566f5ec9f8 | 8a4c867f07d6d31404d35e4db672b481fc8a2d59 | refs/heads/master | 2023-08-17T05:42:02.526696 | 2020-11-28T20:13:04 | 2020-11-28T20:13:04 | 83,560,399 | 0 | 0 | NOASSERTION | 2020-02-05T21:56:44 | 2017-03-01T13:59:01 | Java | UTF-8 | Java | false | false | 1,425 | java | /*
* Copyright 2014 - 2020 Blazebit.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.blazebit.persistence.view.testsuite.update.subview.inverse.embedded.entityid.model;
import com.blazebit.persistence.view.CreatableEntityView;
import com.blazebit.persistence.view.EntityView;
import com.blazebit.persistence.view.PostCreate;
import com.blazebit.persistence.view.UpdatableEntityView;
import com.blazebit.persistence.view.testsuite.entity.LegacyOrderPositionDefault;
import com.blazebit.persistence.view.testsuite.entity.LegacyOrderPositionDefaultId;
/**
*
* @author Christian Beikov
* @since 1.2.0
*/
@CreatableEntityView
@UpdatableEntityView
@EntityView(LegacyOrderPositionDefault.class)
public abstract class UpdatableLegacyOrderPositionDefaultView implements LegacyOrderPositionDefaultIdView {
@PostCreate
void init() {
setId(new LegacyOrderPositionDefaultId());
}
}
| [
"[email protected]"
] | |
e4b54875cf3f8e455512f5872ea30ac18d6cac7b | bd44bfa70d1d13ccc290361b235617b8a874d72b | /seleniumproject/src/test/java/testNG/demosoftassert.java | c2bfedefc657a7108d7c8ae5b46ff42a4ce20e45 | [] | no_license | 005kumar/complete-selenium | 89f9602e8de8cc019bad118c6ac23cab01036caf | 0a2794ab54dd5ea9bd69be3d803ea80539dffbb3 | refs/heads/master | 2020-11-25T19:54:10.934403 | 2019-12-18T10:56:32 | 2019-12-18T10:56:32 | 228,819,371 | 0 | 0 | null | 2020-10-13T18:18:05 | 2019-12-18T10:49:40 | HTML | UTF-8 | Java | false | false | 493 | java | package testNG;
import org.testng.annotations.Test;
import org.testng.asserts.SoftAssert;
public class demosoftassert {
@Test
public void test1() {
System.out.println("Test 1 started");
SoftAssert sa =new SoftAssert();
System.out.println("Checking first condition");
sa.assertEquals("Hello", "Hi");
System.out.println("Checking second condition");
sa.assertNotEquals(10,10,"Error message: both are equal");
System.out.println("Test 1 completed");
sa.assertAll();
}
}
| [
"[email protected]"
] | |
bc60e6713df1c89ee87f958254ce61f8809366d0 | d170d5f7d26bf2dfae6dc3f9be50c561765ad75c | /service/src/test/java/com/tracholar/articlerecsys/TestArticleFetcher.java | 5ef8e6c25fad18a72effe4ec764f2229ca3d1959 | [] | no_license | langjiangit/recsys-proj | 8485a5d828937eeb2db2476acc626d3571ce6782 | 3730bdcb3ab885ea7578c37f55fb7d9af5a271c9 | refs/heads/master | 2023-04-20T01:58:51.136219 | 2021-05-16T07:43:14 | 2021-05-16T07:43:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 590 | java | package com.tracholar.articlerecsys;
import com.alibaba.fastjson.JSON;
import com.tracholar.articlerecsys.data.Article;
import org.junit.Test;
import java.util.LinkedList;
import java.util.List;
public class TestArticleFetcher {
@Test
public void test1(){
ArticleFetcher fetcher = new ArticleFetcher();
List<Article> ids = new LinkedList<>();
ids.add(new Article("5"));
ids.add(new Article("10"));
List<Article> articles = fetcher.fetch(ids);
articles.stream().forEach(e -> System.out.println(JSON.toJSONString(e, true)));
}
}
| [
"[email protected]"
] | |
803a3f45fd5331e634c7b638aa7fafbafd7158aa | dd39833a565417d5d44bbadc9c5327c85e1e534f | /src/os/test1/Login.java | 4394ad5868b14f5fd0df93e6799eb040673283de | [] | no_license | nadaahmad/OS-test1 | 6dbcb4ca3e32ac5d6aa19f23ecc27c408a69dc23 | 528022ec000fd28367e11bd781a781761472451d | refs/heads/master | 2020-12-07T17:13:20.298302 | 2015-12-23T20:58:36 | 2015-12-23T20:58:36 | 59,705,399 | 1 | 0 | null | 2016-05-25T23:46:00 | 2016-05-25T23:46:00 | null | UTF-8 | Java | false | false | 12,332 | java | package os.test1;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import static java.lang.System.exit;
import java.util.ArrayList;
import java.util.StringTokenizer;
import javax.swing.JOptionPane;
public class Login extends javax.swing.JFrame {
// private String newfile;
/**
* Creates new form Login
*/
public Login() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
buttonGroup1 = new javax.swing.ButtonGroup();
jPanel1 = new javax.swing.JPanel();
jButton1 = new javax.swing.JButton();
jPanel2 = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
name = new javax.swing.JTextField();
p = new javax.swing.JPasswordField();
log = new javax.swing.JButton();
up = new javax.swing.JButton();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jButton1.setText("Exit");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
.addGap(0, 0, Short.MAX_VALUE)
.addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 59, javax.swing.GroupLayout.PREFERRED_SIZE))
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addComponent(jButton1, javax.swing.GroupLayout.DEFAULT_SIZE, 37, Short.MAX_VALUE)
.addContainerGap())
);
jLabel1.setText("UserName");
jLabel2.setText("PassWord");
log.setText("Login");
log.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
logActionPerformed(evt);
}
});
up.setText("Sign Up");
up.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
upActionPerformed(evt);
}
});
javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);
jPanel2.setLayout(jPanel2Layout);
jPanel2Layout.setHorizontalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(205, 205, 205)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(74, 74, 74)
.addComponent(log)
.addGap(44, 44, 44)
.addComponent(up))
.addGroup(jPanel2Layout.createSequentialGroup()
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 60, Short.MAX_VALUE)
.addComponent(jLabel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addGap(47, 47, 47)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(name, javax.swing.GroupLayout.DEFAULT_SIZE, 171, Short.MAX_VALUE)
.addComponent(p))))
.addContainerGap(113, Short.MAX_VALUE))
);
jPanel2Layout.setVerticalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(61, 61, 61)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(name, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 21, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(p, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(76, 76, 76)
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(log)
.addComponent(up))
.addContainerGap(116, Short.MAX_VALUE))
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jPanel2, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
// TODO add your handling code here:
exit(0);
}//GEN-LAST:event_jButton1ActionPerformed
private void upActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_upActionPerformed
// TODO add your handling code here:
Name = name.getText();
pass = p.getText();
try {
writer = new FileWriter("file.txt", true);
bufferedWriter = new BufferedWriter(writer);
bufferedWriter.write(Name);
bufferedWriter.write(" ");
bufferedWriter.write(pass);
bufferedWriter.newLine();
bufferedWriter.close();
} catch (IOException e) {
e.printStackTrace();
}
}//GEN-LAST:event_upActionPerformed
private void logActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_logActionPerformed
String n = null; //name
String pa; //pass
String line;
try {
FileReader reader = new FileReader("file.txt");
BufferedReader bufferedReader = new BufferedReader(reader);
while ((line = bufferedReader.readLine()) != null) {
StringTokenizer st = new StringTokenizer(line, " ");
n = st.nextToken();//name
pa=st.nextToken();//pass
if(n.equals(name.getText())&&pa.equals(p.getText()))
{
t.setVisible(true);
break;
}
else if(!(n.equals(name.getText()))){
JOptionPane.showMessageDialog(rootPane, " Unvalid user name , Sign Up please");
this.setVisible(true);
break;
}
else if(!(pa.equals(p.getText()))&&n.equals(name.getText())){
JOptionPane.showMessageDialog(rootPane, "Enter pass word again");
this.setVisible(true);
break;
}
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}//GEN-LAST:event_logActionPerformed
/**
* @param args the command line arguments
*/
public void Store() throws FileNotFoundException, UnsupportedEncodingException, IOException {
JOptionPane.showMessageDialog(rootPane, s);
}
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Login.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Login().setVisible(true);
}
});
}
Desktop t=new Desktop();
String Name;
String pass;
ArrayList<String> NameArray = new ArrayList<>();
ArrayList<String> passArray = new ArrayList<>();
String s;
FileWriter writer;
BufferedWriter bufferedWriter;
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.ButtonGroup buttonGroup1;
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JButton log;
private javax.swing.JTextField name;
private javax.swing.JPasswordField p;
private javax.swing.JButton up;
// End of variables declaration//GEN-END:variables
}
| [
"[email protected]"
] | |
f523fdbe7f25c78456c363b5782daf3eb1959831 | 421f0a75a6b62c5af62f89595be61f406328113b | /generated_tests/model_seeding/83_xbus-net.sf.xbus.base.core.timeoutcall.TimedCallable-1.0-8/net/sf/xbus/base/core/timeoutcall/TimedCallable_ESTest_scaffolding.java | 372fd045984f57c9d1b6c0906c13fbb16f5707be | [] | 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 | 553 | java | /**
* Scaffolding file used to store all the setups needed to run
* tests automatically generated by EvoSuite
* Fri Oct 25 23:54:45 GMT 2019
*/
package net.sf.xbus.base.core.timeoutcall;
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 TimedCallable_ESTest_scaffolding {
// Empty scaffolding for empty test suite
}
| [
"[email protected]"
] | |
3f40df7430a206218752a3c8a3825c28047091d6 | 079c540fbcc40ba47f828d0cf2baec1ba618cf89 | /project2-master-dcb059d320a1a1c8e1fabe81a045d75a672cd6c6/app/src/main/java/edu/msu/zhaoenli/chess/Cloud/Models/PieceData.java | f33187209bd617771a2cb8edfaefa01c420bc304 | [] | no_license | enliangzhao/Andriod-Online-Chess-Game- | a747bedc7165e42ad1d91190bc84809f8238ae3d | 7ceaf5749f78309485f0fec2cee344c43efbdb5e | refs/heads/master | 2022-11-13T17:16:02.817369 | 2020-06-29T19:07:07 | 2020-06-29T19:07:07 | 275,902,164 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,366 | java | package edu.msu.zhaoenli.chess.Cloud.Models;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Root;
@Root(name = "piece")
public class PieceData {
@Attribute
private String type;
public void setType(String type) {
this.type = type;
}
public String getType() {
return type;
}
@Attribute
private int color;
public void setColor(int color) {
this.color = color;
}
public int getColor() {
return color;
}
@Attribute
private float placedX;
public void setPlacedX(float placedX) {
this.placedX = placedX;
}
public float getPlacedX() {
return placedX;
}
@Attribute
private float placedY;
public void setPlacedY(float placedY) {
this.placedY = placedY;
}
public float getPlacedY() {
return placedY;
}
@Attribute(required = false)
private float startY;
public void setStartY(float startY) {
this.startY = startY;
}
public float getStartY() {
return startY;
}
public PieceData() {}
public PieceData(String type, int color, float placedX, float placedY, float startY) {
this.type = type;
this.color = color;
this.placedX = placedX;
this.placedY = placedY;
this.startY = startY;
}
}
| [
"[email protected]"
] | |
59fc17750d83b4e16ed94c3c607c487ab2b2724b | 9986c415747248305776f7bd855f93b461444eed | /src/test/java/com/github/leeonky/invalidmap/bug/SourceDTO.java | 357231a4191ea6e145ceaa7d2dc948510f62299b | [
"Apache-2.0"
] | permissive | leeonky/view-mapper | a6b000b3477299d05f7021668322ba2c3089e711 | 087c655d5938f58d88475d95859c08c016a36219 | refs/heads/master | 2022-11-25T05:05:48.569296 | 2022-11-17T15:01:40 | 2022-11-17T15:01:40 | 192,476,692 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 156 | java | package com.github.leeonky.invalidmap.bug;
import com.github.leeonky.map.MappingFrom;
@MappingFrom(PackagePrivateSource.class)
public class SourceDTO {
}
| [
"[email protected]"
] | |
82a9806e14939ed7ee7ddb264ca0f00ac810503e | c2ebb942815bf44b57b64a4bcdf95f221779b842 | /app/src/main/java/com/xihua/wx/weixiao/achieve/mine/adapter/LostingTimeAdapter.java | 8fed5e309480caec6b2148d7d998086c900ef01a | [] | no_license | yinguohui/weixiaoapp | 0692913859ad5f305596aa1309ee3ffa64a322f3 | 143e69e0ca4dd286d45611469d4affcd6a2aaa6c | refs/heads/master | 2020-06-19T19:06:55.600583 | 2019-09-04T16:05:36 | 2019-09-04T16:05:36 | 196,836,899 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,945 | java | package com.xihua.wx.weixiao.achieve.mine.adapter;
import android.content.Context;
import android.content.Intent;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RelativeLayout;
import android.widget.TextView;
import com.xihua.wx.weixiao.R;
import com.xihua.wx.weixiao.achieve.main.lost.activity.LostInfoDetailActivity;
import com.xihua.wx.weixiao.achieve.main.publish.activity.ChangYanDetailActivity;
import com.xihua.wx.weixiao.utils.DensityUtil;
import com.xihua.wx.weixiao.utils.TimeFormat;
import com.xihua.wx.weixiao.vo.response.DonationTimeLine;
import com.xihua.wx.weixiao.vo.response.LostFoundTimeLine;
import java.util.List;
//适配器代码编写 最主要的就是逻辑的处理
public class LostingTimeAdapter extends RecyclerView.Adapter{
private Context context;
private List<LostFoundTimeLine> data;
public LostingTimeAdapter(Context context, List<LostFoundTimeLine> list) {
this.context = context;
this.data = list;
}
@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
return new ViewHolder(LayoutInflater.from(parent.getContext()).inflate(R.layout.item_timeview, parent, false));
}
@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
((ViewHolder) holder).setPosition(position);
}
@Override
public int getItemCount() {
return data.size();
}
class ViewHolder extends RecyclerView.ViewHolder {
private TextView txtDateTime;
private TextView txt_date_title;
private RelativeLayout rlTitle;
private View vLine;
private int position;
private LostFoundTimeLine timeData;
public ViewHolder(View itemView) {
super(itemView);
rlTitle = itemView.findViewById(R.id.rl_title);
vLine = itemView.findViewById(R.id.v_line);
txtDateTime = itemView.findViewById(R.id.txt_date_time);
txt_date_title = itemView.findViewById(R.id.txt_date_title);
}
public void setPosition(int position) {
this.position = position;
timeData = data.get(position);
//时间轴竖线的layoutParams,用来动态的添加竖线
RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams) vLine.getLayoutParams();
//position等于0的处理
if (position == 0) {
//数据个数必须大于等于2,要不对于时间的判断会有越界危险
if (data.size() >= 2) {
if (!timeData.getLostinfoCreateTime().equals(data.get(position + 1).getLostinfoCreateTime())) {
txt_date_title.setBackgroundResource(R.drawable.message_sys_bgfirst);
layoutParams.setMargins(DensityUtil.dip2px(vLine.getContext(), 20), DensityUtil.dip2px(vLine.getContext(), 15), 0, 0);
} else {
txt_date_title.setBackgroundResource(R.drawable.message_sys_bgtop);
layoutParams.setMargins(DensityUtil.dip2px(vLine.getContext(), 20), DensityUtil.dip2px(vLine.getContext(), 15), 0, 0);
}
} else {
txt_date_title.setBackgroundResource(R.drawable.message_sys_bgfirst);
//动态的代码设置距离上面的边距,只有第一条才有上边距
layoutParams.setMargins(DensityUtil.dip2px(vLine.getContext(), 20), DensityUtil.dip2px(vLine.getContext(), 15), 0, 0);
}
rlTitle.setVisibility(View.VISIBLE);
txtDateTime.setText(TimeFormat.format("yyyy-MM-dd hh:mm:ss", timeData.getLostinfoCreateTime()));
layoutParams.addRule(RelativeLayout.ALIGN_TOP, R.id.rl_title);
layoutParams.addRule(RelativeLayout.ALIGN_BOTTOM, R.id.txt_date_title);
} else if (position < data.size() - 1) {
if (timeData.getLostinfoCreateTime().equals(data.get(position - 1).getLostinfoCreateTime())) {
if (timeData.getLostinfoCreateTime().equals(data.get(position + 1).getLostinfoCreateTime())) {
rlTitle.setVisibility(View.GONE);
layoutParams.setMargins(DensityUtil.dip2px(vLine.getContext(), 20), DensityUtil.dip2px(vLine.getContext(), 0), 0, 0);
txt_date_title.setBackgroundResource(R.drawable.message_sys_bgcenter);
layoutParams.addRule(RelativeLayout.ALIGN_TOP, R.id.txt_date_title);
layoutParams.addRule(RelativeLayout.ALIGN_BOTTOM, R.id.txt_date_title);
} else {
rlTitle.setVisibility(View.GONE);
txt_date_title.setBackgroundResource(R.drawable.message_sys_bgbot);
layoutParams.addRule(RelativeLayout.ALIGN_TOP, R.id.txt_date_title);
layoutParams.addRule(RelativeLayout.ALIGN_BOTTOM, R.id.txt_date_title);
}
} else {
if (!timeData.getLostinfoCreateTime().equals(data.get(position + 1).getLostinfoCreateTime())) {
txt_date_title.setBackgroundResource(R.drawable.message_sys_bgfirst);
} else {
txt_date_title.setBackgroundResource(R.drawable.message_sys_bgtop);
}
layoutParams.setMargins(DensityUtil.dip2px(vLine.getContext(), 20), DensityUtil.dip2px(vLine.getContext(), 0), 0, 0);
rlTitle.setVisibility(View.VISIBLE);
txtDateTime.setText(TimeFormat.format("yyyy-MM-dd hh:mm:ss", timeData.getLostinfoCreateTime()));
layoutParams.addRule(RelativeLayout.ALIGN_TOP, R.id.rl_title);
layoutParams.addRule(RelativeLayout.ALIGN_BOTTOM, R.id.txt_date_title);
}
} else {
if (!timeData.getLostinfoCreateTime().equals(data.get(position - 1).getLostinfoCreateTime())) {
txt_date_title.setBackgroundResource(R.drawable.message_sys_bgfirst);
rlTitle.setVisibility(View.VISIBLE);
txtDateTime.setText(TimeFormat.format("yyyy-MM-dd hh:mm:ss", timeData.getLostinfoCreateTime()));
layoutParams.setMargins(DensityUtil.dip2px(vLine.getContext(), 20), DensityUtil.dip2px(vLine.getContext(), 0), 0, 0);
layoutParams.addRule(RelativeLayout.ALIGN_TOP, R.id.rl_title);
layoutParams.addRule(RelativeLayout.ALIGN_BOTTOM, R.id.txt_date_title);
} else {
rlTitle.setVisibility(View.GONE);
txt_date_title.setBackgroundResource(R.drawable.message_sys_bgbot);
txtDateTime.setText(TimeFormat.format("yyyy-MM-dd hh:mm:ss", timeData.getLostinfoCreateTime()));
layoutParams.setMargins(DensityUtil.dip2px(vLine.getContext(), 20), DensityUtil.dip2px(vLine.getContext(), 0), 0, 0);
layoutParams.addRule(RelativeLayout.ALIGN_TOP, R.id.txt_date_title);
layoutParams.addRule(RelativeLayout.ALIGN_BOTTOM, R.id.txt_date_title);
}
}
vLine.setLayoutParams(layoutParams);
txt_date_title.setText(timeData.getLostinfoName());
rlTitle.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(context,LostInfoDetailActivity.class);
intent.putExtra("lost_id",timeData.getLostinfoId());
context.startActivity(intent);
}
});
}
}
}
| [
"[email protected]"
] | |
dcb82c0c4c403172d7970aa06b1ec486af7cd5cf | b81f9e06ee83eccc7bb53219a14a84ec645ede9a | /java/src/main/java/com/toesbieya/my/service/BizPurchaseInboundService.java | 5fc29e99fe6194c5a02311c45d0169119311e1b2 | [
"MIT"
] | permissive | lovepli/jxc-admin | 5d81c4f7f4e75fddffa3b16961e65fb0de95cc97 | f727314a6741bcc8812287ecc74268fd9e4bf790 | refs/heads/master | 2022-10-10T03:13:20.201498 | 2020-06-08T03:56:00 | 2020-06-08T03:56:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,710 | java | package com.toesbieya.my.service;
import com.github.pagehelper.PageHelper;
import com.toesbieya.my.annoation.Lock;
import com.toesbieya.my.annoation.Tx;
import com.toesbieya.my.annoation.UserAction;
import com.toesbieya.my.enumeration.BizDocumentFinishEnum;
import com.toesbieya.my.enumeration.BizDocumentHistoryEnum;
import com.toesbieya.my.enumeration.BizDocumentStatusEnum;
import com.toesbieya.my.exception.JsonResultException;
import com.toesbieya.my.mapper.BizDocumentHistoryMapper;
import com.toesbieya.my.mapper.BizPurchaseInboundMapper;
import com.toesbieya.my.mapper.BizPurchaseOrderMapper;
import com.toesbieya.my.mapper.BizStockMapper;
import com.toesbieya.my.model.entity.*;
import com.toesbieya.my.model.vo.export.PurchaseInboundExport;
import com.toesbieya.my.model.vo.result.PageResult;
import com.toesbieya.my.model.vo.search.PurchaseInboundSearch;
import com.toesbieya.my.model.vo.update.DocumentStatusUpdate;
import com.toesbieya.my.utils.ExcelUtil;
import com.toesbieya.my.utils.RedisUtil;
import com.toesbieya.my.utils.Result;
import com.toesbieya.my.utils.Util;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import org.springframework.util.StringUtils;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse;
import java.util.ArrayList;
import java.util.List;
@Service
@Slf4j
public class BizPurchaseInboundService {
@Resource
private BizPurchaseInboundMapper purchaseInboundMapper;
@Resource
private BizPurchaseOrderMapper purchaseOrderMapper;
@Resource
private BizDocumentHistoryMapper documentHistoryMapper;
@Resource
private BizStockMapper stockMapper;
@Resource
private RecService recService;
public BizPurchaseInbound getById(String id) {
BizPurchaseInbound inbound = purchaseInboundMapper.getById(id);
if (inbound == null) return null;
List<BizPurchaseInboundSub> list = purchaseInboundMapper.getSubById(id);
inbound.setData(list);
List<RecAttachment> imageList = recService.getAttachmentByPid(id);
inbound.setImageList(imageList);
return inbound;
}
public List<BizPurchaseInboundSub> getSubById(String id) {
return purchaseInboundMapper.getSubById(id);
}
public PageResult<BizPurchaseInbound> search(PurchaseInboundSearch vo) {
PageHelper.startPage(vo.getPage(), vo.getPageSize());
List<BizPurchaseInbound> list = purchaseInboundMapper.search(vo);
return new PageResult<>(list);
}
public void export(PurchaseInboundSearch vo, HttpServletResponse response) throws Exception {
List<PurchaseInboundExport> list = purchaseInboundMapper.export(vo);
ExcelUtil.exportSimply(list, response, "采购入库单导出");
}
@UserAction("'添加采购入库单'")
@Tx
public Result add(BizPurchaseInbound doc) {
return addInbound(doc);
}
@UserAction("'修改采购入库单'+#doc.id")
@Lock("#doc.id")
@Tx
public Result update(BizPurchaseInbound doc) {
return updateInbound(doc);
}
@UserAction("'提交采购入库单'+#doc.id")
@Lock("#doc.id")
@Tx
public Result commit(BizPurchaseInbound doc) {
boolean isFirstCreate = StringUtils.isEmpty(doc.getId());
Result result = isFirstCreate ? addInbound(doc) : updateInbound(doc);
documentHistoryMapper.add(
BizDocumentHistory.builder()
.pid(doc.getId())
.type(BizDocumentHistoryEnum.COMMIT.getCode())
.uid(doc.getCid())
.uname(doc.getCname())
.status_before(BizDocumentStatusEnum.DRAFT.getCode())
.status_after(BizDocumentStatusEnum.WAIT_VERIFY.getCode())
.time(System.currentTimeMillis())
.build()
);
result.setMsg(result.isSuccess() ? "提交成功" : "提交失败," + result.getMsg());
return result;
}
@UserAction("'撤回采购入库单'+#vo.id")
@Lock("#vo.id")
@Tx
public Result withdraw(DocumentStatusUpdate vo, SysUser user) {
String id = vo.getId();
String info = vo.getInfo();
if (purchaseInboundMapper.reject(id) < 1) {
return Result.fail("撤回失败,请刷新重试");
}
documentHistoryMapper.add(
BizDocumentHistory.builder()
.pid(id)
.type(BizDocumentHistoryEnum.WITHDRAW.getCode())
.uid(user.getId())
.uname(user.getName())
.status_before(BizDocumentStatusEnum.WAIT_VERIFY.getCode())
.status_after(BizDocumentStatusEnum.DRAFT.getCode())
.time(System.currentTimeMillis())
.info(info)
.build()
);
return Result.success("撤回成功");
}
@UserAction("'通过采购入库单'+#vo.id")
@Lock({"#vo.pid", "#vo.id"})
@Tx
public Result pass(DocumentStatusUpdate vo, SysUser user) {
String id = vo.getId();
String info = vo.getInfo();
String pid = vo.getPid();
long now = System.currentTimeMillis();
/*检查采购订单状态、入库商品是否符合订单要求*/
List<BizPurchaseInboundSub> inboundSubList = purchaseInboundMapper.getSubById(vo.getId());
String err = checkOrder(vo.getPid(), inboundSubList);
if (err != null) return Result.fail("通过失败," + err);
if (purchaseInboundMapper.pass(id, user.getId(), user.getName(), now) < 1) {
return Result.fail("通过失败,请刷新重试");
}
/*修改采购订单完成情况、子表的未入库数量*/
List<BizStock> stockList = new ArrayList<>();
BizDocumentFinishEnum finish = BizDocumentFinishEnum.FINISHED;
//使用一级缓存
List<BizPurchaseOrderSub> orderSubList = purchaseOrderMapper.getSubById(pid);
//如果有任意一个采购商品的remain_num大于采购商品的num,则完成情况为进行中,否则为已完成
for (BizPurchaseOrderSub orderSub : orderSubList) {
if (orderSub.getRemain_num().equals(0D)) continue;
BizPurchaseInboundSub inboundSub = Util.find(inboundSubList, i -> i.getCid().equals(orderSub.getCid()));
if (inboundSub == null) continue;
stockList.add(
BizStock.builder()
.cid(inboundSub.getCid())
.cname(inboundSub.getCname())
.num(inboundSub.getNum())
.price(orderSub.getPrice())
.ctime(now)
.cgddid(pid)
.cgrkid(id)
.build()
);
double gap = orderSub.getRemain_num() - inboundSub.getNum();
if (gap > 0) finish = BizDocumentFinishEnum.UNDERWAY;
//更新采购订单子表
purchaseOrderMapper.updateSubRemainNum(orderSub.getId(), gap);
}
//更新采购订单完成情况
purchaseOrderMapper.updateFinish(pid, finish.getCode(), finish == BizDocumentFinishEnum.FINISHED ? now : null);
//插入库存
if (stockList.size() == 0) throw new JsonResultException("通过失败,入库异常");
stockMapper.batchInsert(stockList);
documentHistoryMapper.add(
BizDocumentHistory.builder()
.pid(id)
.type(BizDocumentHistoryEnum.PASS.getCode())
.uid(user.getId())
.uname(user.getName())
.status_before(BizDocumentStatusEnum.WAIT_VERIFY.getCode())
.status_after(BizDocumentStatusEnum.VERIFIED.getCode())
.time(now)
.info(info)
.build()
);
return Result.success("通过成功");
}
@UserAction("'驳回采购入库单'+#vo.id")
@Lock("#vo.id")
@Tx
public Result reject(DocumentStatusUpdate vo, SysUser user) {
String id = vo.getId();
String info = vo.getInfo();
if (purchaseInboundMapper.reject(id) < 1) {
return Result.fail("驳回失败,请刷新重试");
}
documentHistoryMapper.add(
BizDocumentHistory.builder()
.pid(id)
.type(BizDocumentHistoryEnum.REJECT.getCode())
.uid(user.getId())
.uname(user.getName())
.status_before(BizDocumentStatusEnum.WAIT_VERIFY.getCode())
.status_after(BizDocumentStatusEnum.DRAFT.getCode())
.time(System.currentTimeMillis())
.info(info)
.build()
);
return Result.success("驳回成功");
}
@UserAction("'删除采购入库单'+#id")
@Lock("#id")
@Tx
public Result del(String id) {
if (purchaseInboundMapper.del(id) < 1) return Result.fail("删除失败");
purchaseInboundMapper.delSubByPid(id);
recService.delAttachmentByPid(id);
return Result.success("删除成功");
}
private Result addInbound(BizPurchaseInbound doc) {
String err = checkOrder(doc.getPid(), doc.getData());
if (err != null) return Result.fail(err);
String id = RedisUtil.getDocumentID("CGRK");
if (StringUtils.isEmpty(id)) return Result.fail("获取单号失败");
doc.setId(id);
for (BizPurchaseInboundSub sub : doc.getData()) {
sub.setPid(id);
}
purchaseInboundMapper.add(doc);
purchaseInboundMapper.addSub(doc.getData());
List<RecAttachment> uploadImageList = doc.getUploadImageList();
Long time = System.currentTimeMillis();
for (RecAttachment attachment : uploadImageList) {
attachment.setPid(id);
attachment.setTime(time);
}
recService.handleAttachment(uploadImageList, null);
return Result.success("添加成功", id);
}
private Result updateInbound(BizPurchaseInbound doc) {
String err = checkUpdateStatus(doc.getId());
if (err == null) err = checkOrder(doc.getPid(), doc.getData());
if (err != null) return Result.fail(err);
purchaseInboundMapper.delSubByPid(doc.getId());
purchaseInboundMapper.update(doc);
purchaseInboundMapper.addSub(doc.getData());
List<RecAttachment> uploadImageList = doc.getUploadImageList();
Long time = System.currentTimeMillis();
for (RecAttachment attachment : uploadImageList) {
attachment.setPid(doc.getId());
attachment.setTime(time);
}
recService.handleAttachment(uploadImageList, doc.getDeleteImageList());
return Result.success("修改成功");
}
//只有拟定状态的单据才能修改
private String checkUpdateStatus(String id) {
BizPurchaseInbound doc = purchaseInboundMapper.getById(id);
if (doc == null || !doc.getStatus().equals(0)) return "单据状态已更新,请刷新后重试";
return null;
}
//检查采购订单是否已审核、未完成、还有未入库的商品
private String checkOrder(String pid, List<BizPurchaseInboundSub> docSubList) {
BizPurchaseOrder order = purchaseOrderMapper.getById(pid);
if (order == null || order.getStatus() != 2 || order.getFinish() == 2) {
return "采购订单状态异常";
}
List<BizPurchaseOrderSub> orderSubList = purchaseOrderMapper.getSubById(pid);
if (orderSubList.size() <= 0) return "没有找到采购订单的数据";
for (BizPurchaseInboundSub inboundSub : docSubList) {
BizPurchaseOrderSub orderSub = Util.find(orderSubList, t -> t.getCid().equals(inboundSub.getCid()));
if (orderSub == null) {
return "入库商品【" + inboundSub.getCname() + "】不在采购订单中";
}
if (orderSub.getRemain_num().equals(0D)) {
return "入库商品【" + inboundSub.getCname() + "】已全部入库";
}
if (orderSub.getRemain_num() < inboundSub.getNum()) {
return "入库商品【" + inboundSub.getCname() + "】的数量超出订单数量";
}
}
return null;
}
}
| [
"[email protected]"
] | |
172d2ab46bab3615f1178895c85089665df528b1 | 9e6af08c85afbf38545d4160fc3d6ed095e7dd25 | /FSM/src/com/me/fsm/Input.java | 0159e1907c2d447d1b6459e2951e160434dcfa36 | [] | no_license | Rinnion/MainBomber | c13001eaa85a9d89d2a14a1a06b6df8b04a2775c | 366ff3b802f0f5f774685d96b5febc7189cc8528 | refs/heads/master | 2021-01-20T13:13:27.183485 | 2017-02-25T05:27:40 | 2017-02-25T05:27:40 | 82,679,089 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 48 | java | package com.me.fsm;
public interface Input {
}
| [
"[email protected]"
] | |
23d50b48ea152fccb31db80a255458f25d30f6f2 | af434f9e337739aa02666417da7e51e6e8a2d00c | /src/main/java/App.java | f73cb2e71acc1eeb158ac20783d4fdd00c2ca3b7 | [] | no_license | Daniil1399/spring-helloworld-master | fed9ca0103c653618d7bb0f8184876140834aa3d | ee5cce9247f9f8bc26d265a06d1aea5a9e195298 | refs/heads/master | 2023-08-15T13:27:35.077722 | 2021-09-15T12:55:53 | 2021-09-15T12:55:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 954 | java | import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class App {
public static void main(String[] args) {
ApplicationContext applicationContext =
new AnnotationConfigApplicationContext(AppConfig.class);
HelloWorld bean =
(HelloWorld) applicationContext.getBean("helloworld");
System.out.println(bean.getMessage());
HelloWorld beanHell =
(HelloWorld) applicationContext.getBean("helloworld");
System.out.println(beanHell.getMessage());
Cat beanCat = (Cat) applicationContext.getBean("Cat");
System.out.println(beanCat.getMassage());
Cat beanCat2 = (Cat) applicationContext.getBean("Cat");
System.out.println(beanCat2.getMassage());
System.out.println(bean == beanHell);
System.out.println(beanCat == beanCat2);
}
} | [
"[email protected]"
] | |
ce0e8e14575f5fd694722ca1b5cb97e337415b89 | dd1b9cc9b735c08f2f5337a394f0b9bea64187fc | /android/src/main/java/com/henninghall/date_picker/UnitPatterns.java | c1b299294238f3dc069c36ce08b453d72d448077 | [
"MIT"
] | permissive | SweetInn/react-native-date-picker | 71c44c34e58905073156c02fe66b9aebd69b930b | fc9732b6c6d804a1a3d10b09bdbc86009cb4a6f2 | refs/heads/master | 2020-04-23T22:28:28.310797 | 2019-02-19T16:49:11 | 2019-02-19T16:49:11 | 171,503,087 | 0 | 0 | MIT | 2019-02-19T16:49:13 | 2019-02-19T15:53:18 | Java | UTF-8 | Java | false | false | 27,555 | java | /*
* -----------------------------------------------------------------------
* Copyright © 2013-2015 Meno Hochschild, <http://www.menodata.de/>
* -----------------------------------------------------------------------
* This file (UnitPatterns.java) is part of project Time4J.
*
* Time4J is free software: You can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 2.1 of the License, or
* (at your option) any later version.
*
* Time4J is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Time4J. If not, see <http://www.gnu.org/licenses/>.
* -----------------------------------------------------------------------
*/
package com.henninghall.date_picker;
import net.time4j.CalendarUnit;
import net.time4j.ClockUnit;
import net.time4j.IsoUnit;
import net.time4j.base.ResourceLoader;
import net.time4j.format.PluralCategory;
import net.time4j.format.RelativeTimeProvider;
import net.time4j.format.TextWidth;
import net.time4j.format.UnitPatternProvider;
import java.util.Collections;
import java.util.EnumMap;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import java.util.MissingResourceException;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
/**
* <p>Offers localized time unit patterns for formatting of durations. </p>
*
* @author Meno Hochschild
* @since 3.0
* @see UnitPatternProvider
*/
public final class UnitPatterns {
//~ Statische Felder/Initialisierungen --------------------------------
private static final int MIN_LIST_INDEX = 2;
private static final int MAX_LIST_INDEX = 7;
private static final ConcurrentMap<Locale, UnitPatterns> CACHE =
new ConcurrentHashMap<Locale, UnitPatterns>();
private static final IsoUnit[] UNIT_IDS = {
CalendarUnit.YEARS,
CalendarUnit.MONTHS,
CalendarUnit.WEEKS,
CalendarUnit.DAYS,
ClockUnit.HOURS,
ClockUnit.MINUTES,
ClockUnit.SECONDS,
ClockUnit.MILLIS,
ClockUnit.MICROS,
ClockUnit.NANOS
};
private static final UnitPatternProvider PROVIDER;
private static final UnitPatternProvider FALLBACK;
static {
FALLBACK = new FallbackProvider();
UnitPatternProvider p = null;
for (UnitPatternProvider tmp : ResourceLoader.getInstance().services(UnitPatternProvider.class)) {
p = tmp;
break;
}
if (p == null) {
p = FALLBACK;
}
PROVIDER = p;
}
//~ Instanzvariablen --------------------------------------------------
private final Locale locale;
private final Map<IsoUnit, Map<TextWidth, Map<PluralCategory, String>>> patterns;
private final Map<IsoUnit, Map<PluralCategory, String>> past;
private final Map<IsoUnit, Map<PluralCategory, String>> future;
private final Map<IsoUnit, Map<PluralCategory, String>> shortPast;
private final Map<IsoUnit, Map<PluralCategory, String>> shortFuture;
private final Map<Integer, Map<TextWidth, String>> list;
private final String now;
private final String yesterday;
private final String today;
private final String tomorrow;
//~ Konstruktoren -----------------------------------------------------
private UnitPatterns(Locale language) {
super();
this.locale = language;
Map<IsoUnit, Map<TextWidth, Map<PluralCategory, String>>> map =
new HashMap<IsoUnit, Map<TextWidth, Map<PluralCategory, String>>>(10);
Map<IsoUnit, Map<PluralCategory, String>> mapPast =
new HashMap<IsoUnit, Map<PluralCategory, String>>(10);
Map<IsoUnit, Map<PluralCategory, String>> mapFuture =
new HashMap<IsoUnit, Map<PluralCategory, String>>(10);
Map<IsoUnit, Map<PluralCategory, String>> mapShortPast =
new HashMap<IsoUnit, Map<PluralCategory, String>>(10);
Map<IsoUnit, Map<PluralCategory, String>> mapShortFuture =
new HashMap<IsoUnit, Map<PluralCategory, String>>(10);
Map<Integer, Map<TextWidth, String>> mapList =
new HashMap<Integer, Map<TextWidth, String>>(10);
for (IsoUnit unit : UNIT_IDS) {
// Standard-Muster
Map<TextWidth, Map<PluralCategory, String>> tmp1 =
new EnumMap<TextWidth, Map<PluralCategory, String>>(TextWidth.class);
for (TextWidth width : TextWidth.values()) {
Map<PluralCategory, String> tmp2 =
new EnumMap<PluralCategory, String>(PluralCategory.class);
for (PluralCategory cat : PluralCategory.values()) {
tmp2.put(cat, lookup(language, unit, width, cat));
}
tmp1.put(width, Collections.unmodifiableMap(tmp2));
}
map.put(
unit,
Collections.unmodifiableMap(tmp1));
if (!Character.isDigit(unit.getSymbol())) { // no subseconds
// Vergangenheit
Map<PluralCategory, String> tmp3 =
new EnumMap<PluralCategory, String>(PluralCategory.class);
for (PluralCategory cat : PluralCategory.values()) {
tmp3.put(cat, lookup(language, unit, false, false, cat));
}
mapPast.put(
unit,
Collections.unmodifiableMap(tmp3));
Map<PluralCategory, String> tmp3a =
new EnumMap<PluralCategory, String>(PluralCategory.class);
for (PluralCategory cat : PluralCategory.values()) {
tmp3a.put(cat, lookup(language, unit, false, true, cat));
}
mapShortPast.put(
unit,
Collections.unmodifiableMap(tmp3a));
// Zukunft
Map<PluralCategory, String> tmp4 =
new EnumMap<PluralCategory, String>(PluralCategory.class);
for (PluralCategory cat : PluralCategory.values()) {
tmp4.put(cat, lookup(language, unit, true, false, cat));
}
mapFuture.put(
unit,
Collections.unmodifiableMap(tmp4));
Map<PluralCategory, String> tmp4a =
new EnumMap<PluralCategory, String>(PluralCategory.class);
for (PluralCategory cat : PluralCategory.values()) {
tmp4a.put(cat, lookup(language, unit, true, true, cat));
}
mapShortFuture.put(
unit,
Collections.unmodifiableMap(tmp4a));
}
}
// Liste
for (int i = MIN_LIST_INDEX; i <= MAX_LIST_INDEX; i++) {
Integer index = Integer.valueOf(i);
Map<TextWidth, String> tmp5 =
new EnumMap<TextWidth, String>(TextWidth.class);
for (TextWidth width : TextWidth.values()) {
tmp5.put(width, lookup(language, width, index));
}
mapList.put(
index,
Collections.unmodifiableMap(tmp5));
}
this.patterns = Collections.unmodifiableMap(map);
this.past = Collections.unmodifiableMap(mapPast);
this.future = Collections.unmodifiableMap(mapFuture);
this.shortPast = Collections.unmodifiableMap(mapShortPast);
this.shortFuture = Collections.unmodifiableMap(mapShortFuture);
this.list = Collections.unmodifiableMap(mapList);
String n;
String y = "";
String t1 = "";
String t2 = "";
try {
n = PROVIDER.getNowWord(language);
if (PROVIDER instanceof RelativeTimeProvider) {
RelativeTimeProvider rp = RelativeTimeProvider.class.cast(PROVIDER);
y = rp.getYesterdayWord(language);
t1 = rp.getTodayWord(language);
t2 = rp.getTomorrowWord(language);
}
} catch (MissingResourceException mre) {
n = FALLBACK.getNowWord(language); // should not happen
}
this.now = n;
this.yesterday = y;
this.today = t1;
this.tomorrow = t2;
}
//~ Methoden ----------------------------------------------------------
/**
* <p>Factory method as constructor replacement. </p>
*
* @param lang language setting
* @return chached instance
*/
public static UnitPatterns of(Locale lang) {
if (lang == null) {
throw new NullPointerException("Missing language.");
}
UnitPatterns p = CACHE.get(lang);
if (p == null) {
p = new UnitPatterns(lang);
UnitPatterns old = CACHE.putIfAbsent(lang, p);
if (old != null) {
p = old;
}
}
return p;
}
/**
* <p>Yields a unit pattern which optionally contains a placeholder
* of the form "{0}" standing for the count of units. </p>
*
* @param width text width (ABBREVIATED as synonym for SHORT)
* @param category plural category
* @param unit associated iso unit
* @return unit pattern
*/
String getPattern(
TextWidth width,
PluralCategory category,
IsoUnit unit
) {
checkNull(width, category);
return this.patterns.get(unit).get(width).get(category);
}
/**
* <p>Yields a unit pattern which optionally contains a placeholder
* of the form "{0}" standing for the count of units in the
* past. </p>
*
* @param category plural category
* @param abbreviated using short form or not
* @param unit associated iso unit
* @return unit pattern in the past
* @since 3.6/4.4
*/
String getPatternInPast(
PluralCategory category,
boolean abbreviated,
IsoUnit unit
) {
checkNull(category);
if (abbreviated) {
return this.shortPast.get(unit).get(category);
} else {
return this.past.get(unit).get(category);
}
}
/**
* <p>Yields a unit pattern which optionally contains a placeholder
* of the form "{0}" standing for the count of units in the
* future. </p>
*
* @param category plural category
* @param abbreviated using short form or not
* @param unit associated iso unit
* @return unit pattern in the future
* @since 3.6/4.4
*/
String getPatternInFuture(
PluralCategory category,
boolean abbreviated,
IsoUnit unit
) {
checkNull(category);
if (abbreviated) {
return this.shortFuture.get(unit).get(category);
} else {
return this.future.get(unit).get(category);
}
}
/**
* <p>Yields the localized word for the current time ("now"). </p>
*
* @return String
*/
String getNowWord() {
return this.now;
}
/**
* <p>Yields the localized word for "yesterday". </p>
*
* @return String (maybe empty)
* @since 3.6/4.4
*/
String getYesterdayWord() {
return this.yesterday;
}
/**
* <p>Yields the localized word for "today". </p>
*
* @return String (maybe empty)
* @since 3.6/4.4
*/
public String getTodayWord() {
return this.today;
}
/**
* <p>Yields the localized word for "tomorrow". </p>
*
* @return String (maybe empty)
* @since 3.6/4.4
*/
String getTomorrowWord() {
return this.tomorrow;
}
/**
* <p>Constructs a localized list pattern suitable for the use in
* {@link java.text.MessageFormat#format(String, Object[])}. </p>
*
* @param width text width (ABBREVIATED as synonym for SHORT)
* @param size count of list items
* @return message format pattern with placeholders {0}, {1}, ..., {x}, ...
* @throws IllegalArgumentException if size is smaller than 2
*/
String getListPattern(
TextWidth width,
int size
) {
if (width == null) {
throw new NullPointerException("Missing width.");
}
if (
(size >= MIN_LIST_INDEX)
&& (size <= MAX_LIST_INDEX)
) {
return this.list.get(Integer.valueOf(size)).get(width);
}
return lookup(this.locale, width, size);
}
private static void checkNull(PluralCategory category) {
if (category == null) {
throw new NullPointerException("Missing plural category.");
}
}
private static void checkNull(
TextWidth width,
PluralCategory category
) {
if (width == null) {
throw new NullPointerException("Missing text width.");
}
checkNull(category);
}
private static char getID(IsoUnit unit) {
char unitID = unit.getSymbol();
if (unit == ClockUnit.MINUTES) {
return 'N';
}
return unitID;
}
private static String lookup(
Locale language,
IsoUnit unit,
TextWidth width,
PluralCategory category
) {
try {
return lookup(PROVIDER, language, getID(unit), width, category);
} catch (MissingResourceException mre) { // should not happen
return lookup(FALLBACK, language, getID(unit), width, category);
}
}
private static String lookup(
UnitPatternProvider p,
Locale language,
char unitID,
TextWidth width,
PluralCategory category
) {
switch (unitID) {
case 'Y':
return p.getYearPattern(language, width, category);
case 'M':
return p.getMonthPattern(language, width, category);
case 'W':
return p.getWeekPattern(language, width, category);
case 'D':
return p.getDayPattern(language, width, category);
case 'H':
return p.getHourPattern(language, width, category);
case 'N':
return p.getMinutePattern(language, width, category);
case 'S':
return p.getSecondPattern(language, width, category);
case '3':
return p.getMilliPattern(language, width, category);
case '6':
return p.getMicroPattern(language, width, category);
case '9':
return p.getNanoPattern(language, width, category);
default:
throw new UnsupportedOperationException("Unit-ID: " + unitID);
}
}
private static String lookup(
Locale language,
IsoUnit unit,
boolean future,
boolean abbreviated,
PluralCategory category
) {
try {
return lookup(PROVIDER, language, getID(unit), future, abbreviated, category);
} catch (MissingResourceException mre) { // should not happen
return lookup(FALLBACK, language, getID(unit), future, abbreviated, category);
}
}
private static String lookup(
UnitPatternProvider p,
Locale language,
char unitID,
boolean future,
boolean abbreviated,
PluralCategory category
) {
if (abbreviated && (p instanceof RelativeTimeProvider)) {
RelativeTimeProvider rp = RelativeTimeProvider.class.cast(p);
switch (unitID) {
case 'Y':
return rp.getShortYearPattern(language, future, category);
case 'M':
return rp.getShortMonthPattern(language, future, category);
case 'W':
return rp.getShortWeekPattern(language, future, category);
case 'D':
return rp.getShortDayPattern(language, future, category);
case 'H':
return rp.getShortHourPattern(language, future, category);
case 'N':
return rp.getShortMinutePattern(language, future, category);
case 'S':
return rp.getShortSecondPattern(language, future, category);
default:
throw new UnsupportedOperationException("Unit-ID: " + unitID);
}
}
switch (unitID) {
case 'Y':
return p.getYearPattern(language, future, category);
case 'M':
return p.getMonthPattern(language, future, category);
case 'W':
return p.getWeekPattern(language, future, category);
case 'D':
return p.getDayPattern(language, future, category);
case 'H':
return p.getHourPattern(language, future, category);
case 'N':
return p.getMinutePattern(language, future, category);
case 'S':
return p.getSecondPattern(language, future, category);
default:
throw new UnsupportedOperationException("Unit-ID: " + unitID);
}
}
private static String lookup(
Locale language,
TextWidth width,
int size
) {
try {
return PROVIDER.getListPattern(language, width, size);
} catch (MissingResourceException mre) { // should not happen
return FALLBACK.getListPattern(language, width, size);
}
}
//~ Innere Klassen ----------------------------------------------------
private static class FallbackProvider
implements UnitPatternProvider {
//~ Methoden ------------------------------------------------------
@Override
public String getYearPattern(
Locale lang,
TextWidth width,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getEnglishPattern("year", "yr", "y", width, category);
}
return getUnitPattern("y");
}
@Override
public String getMonthPattern(
Locale lang,
TextWidth width,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getEnglishPattern("month", "mth", "m", width, category);
}
return getUnitPattern("m");
}
@Override
public String getWeekPattern(
Locale lang,
TextWidth width,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getEnglishPattern("week", "wk", "w", width, category);
}
return getUnitPattern("w");
}
@Override
public String getDayPattern(
Locale lang,
TextWidth width,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getEnglishPattern("day", "day", "d", width, category);
}
return getUnitPattern("d");
}
@Override
public String getHourPattern(
Locale lang,
TextWidth width,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getEnglishPattern("hour", "hr", "h", width, category);
}
return getUnitPattern("h");
}
@Override
public String getMinutePattern(
Locale lang,
TextWidth width,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getEnglishPattern("minute", "min", "m", width, category);
}
return getUnitPattern("min");
}
@Override
public String getSecondPattern(
Locale lang,
TextWidth width,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getEnglishPattern("second", "sec", "s", width, category);
}
return getUnitPattern("s");
}
@Override
public String getYearPattern(
Locale lang,
boolean future,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getRelativeEnglishPattern("year", future, category);
}
return getRelativePattern("y", future);
}
@Override
public String getMonthPattern(
Locale lang,
boolean future,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getRelativeEnglishPattern("month", future, category);
}
return getRelativePattern("m", future);
}
@Override
public String getWeekPattern(
Locale lang,
boolean future,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getRelativeEnglishPattern("week", future, category);
}
return getRelativePattern("w", future);
}
@Override
public String getDayPattern(
Locale lang,
boolean future,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getRelativeEnglishPattern("day", future, category);
}
return getRelativePattern("d", future);
}
@Override
public String getHourPattern(
Locale lang,
boolean future,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getRelativeEnglishPattern("hour", future, category);
}
return getRelativePattern("h", future);
}
@Override
public String getMinutePattern(
Locale lang,
boolean future,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getRelativeEnglishPattern("minute", future, category);
}
return getRelativePattern("min", future);
}
@Override
public String getSecondPattern(
Locale lang,
boolean future,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getRelativeEnglishPattern("second", future, category);
}
return getRelativePattern("s", future);
}
@Override
public String getNowWord(Locale lang) {
return "now";
}
private static String getEnglishPattern(
String wide,
String abbr,
String narrow,
TextWidth width,
PluralCategory category
) {
switch (width) {
case WIDE:
return getPluralPattern(wide, category);
case ABBREVIATED:
case SHORT:
return getPluralPattern(abbr, category);
case NARROW:
return "{0}" + narrow;
default:
throw new UnsupportedOperationException(width.name());
}
}
private static String getPluralPattern(
String unit,
PluralCategory category
) {
String plural = (category == PluralCategory.ONE ? "" : "s");
return "{0} " + unit + plural;
}
private static String getUnitPattern(String unit) {
return "{0} " + unit;
}
private static String getRelativeEnglishPattern(
String unit,
boolean future,
PluralCategory category
) {
String plural = (category == PluralCategory.ONE ? "" : "s");
if (future) {
return "in {0} " + unit + plural;
} else {
return "{0} " + unit + plural + " ago";
}
}
private static String getRelativePattern(
String unit,
boolean future
) {
return ((future ? "+" : "-") + "{0} " + unit);
}
@Override
public String getListPattern(
Locale lang,
TextWidth width,
int size
) {
if (size < 2) {
throw new IllegalArgumentException(
"Size must be greater than 1.");
}
StringBuilder sb = new StringBuilder(size * 5);
for (int i = 0; i < size; i++) {
sb.append('{');
sb.append(i);
sb.append('}');
if (i < size - 1) {
sb.append(", ");
}
}
return sb.toString();
}
@Override
public String getMilliPattern(
Locale lang,
TextWidth width,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getEnglishPattern(
"millisecond", "msec", "ms", width, category);
}
return getUnitPattern("ms");
}
@Override
public String getMicroPattern(
Locale lang,
TextWidth width,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getEnglishPattern(
"microsecond", "µsec", "µs", width, category);
}
return getUnitPattern("µs");
}
@Override
public String getNanoPattern(
Locale lang,
TextWidth width,
PluralCategory category
) {
if (lang.getLanguage().equals("en")) {
return getEnglishPattern(
"nanosecond", "nsec", "ns", width, category);
}
return getUnitPattern("ns");
}
}
}
| [
"[email protected]"
] | |
091d67489e0995accadd6e7d450ffacff536bc82 | 62b200deded45b2ed178dc5fdb5538301e1a6706 | /src/main/java/anton/nagptrackingsystem/entity/Batch.java | 36df7fd7a8dd531a10592fdc287ea49fe0a26261 | [] | no_license | honey2156/nagp-tracking-system | 77d4d5c252387377a2935c1a9214b90b9f450fad | b71e0e832fdcf4b8011add26990e1939906ddc05 | refs/heads/master | 2020-05-18T09:21:01.205648 | 2019-04-30T19:51:26 | 2019-04-30T19:51:26 | 184,321,521 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,253 | java | package anton.nagptrackingsystem.entity;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
import com.fasterxml.jackson.annotation.JsonFormat;
import anton.nagptrackingsystem.constant.BatchTechnology;
@Entity
@Table(name = "batch")
public class Batch {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "batch_id")
public int batchId;
@Column(name = "technology")
@Enumerated(EnumType.STRING)
public BatchTechnology batchTechnology;
@Column(name = "year")
public int year;
@Column(name = "description")
public String description;
@Temporal(value = TemporalType.DATE)
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "dd-MM-yyyy")
@Column(name = "start_date")
public Date startDate;
@Column(name = "batch_name", insertable = false, updatable = false)
public String batchName;
public Batch() {
}
public Batch(BatchTechnology batchTechnology, int year, String description, Date startDate) {
this.batchTechnology = batchTechnology;
this.year = year;
this.description = description;
this.startDate = startDate;
}
public int getBatchId() {
return batchId;
}
public void setBatchId(int batchId) {
this.batchId = batchId;
}
public BatchTechnology getBatchTechnology() {
return batchTechnology;
}
public void setBatchTechnology(BatchTechnology batchTechnology) {
this.batchTechnology = batchTechnology;
}
public int getYear() {
return year;
}
public void setYear(int year) {
this.year = year;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Date getStartDate() {
return startDate;
}
public void setStartDate(Date startDate) {
this.startDate = startDate;
}
public String getBatchName() {
return batchName;
}
}
| [
"[email protected]"
] | |
bcf9746c2b3f939dc1525e94366aab5120fd543d | ad0ec8c7a03142be23604cb7f916c41dee3626f8 | /src/exceptions/AlquilerNoEntregadoException.java | c30e8d803eb79acc15f88529f0c5f89e2ea5152a | [] | no_license | WeidmannCamila/DIEDGuia05-Weidmann | 3b15780828f4ce5d7b2a2abb9d4ce517a56282fd | fbbcf2f71de5c339c4b32002ced839dd44871ca4 | refs/heads/master | 2023-04-21T03:47:19.078645 | 2021-04-30T20:29:39 | 2021-04-30T20:29:39 | 361,154,418 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 172 | java | package exceptions;
public class AlquilerNoEntregadoException extends Exception {
public AlquilerNoEntregadoException() {
super("No puede alquilar");
}
}
| [
"[email protected]"
] | |
ffa377650bf54ce6625faa376b1ad55081f86f74 | 70b5b41d1a5f6f17cd909e338caa2917ae9eb0a2 | /src/main/java/br/com/fiap/fiaproupas/controller/ProductController.java | 301ebdd3f4b63474ddc7ab85dec4f118d113558a | [
"MIT"
] | permissive | CarlosHenckes/fiaproupas | fe977fe453657183bd9c7ee5ac282f140110796c | 9759526c08e0893152dbf091b8a40932ef414792 | refs/heads/master | 2020-03-27T17:45:42.647603 | 2018-08-31T18:24:51 | 2018-08-31T18:24:51 | 146,872,643 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 601 | java | package br.com.fiap.fiaproupas.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import br.com.fiap.fiaproupas.entity.Product;
import br.com.fiap.fiaproupas.moker.ProductDataMoker;
import br.com.fiap.fiaproupas.service.ProductService;
@Controller
public class ProductController {
@Autowired
ProductService productService;
@GetMapping(path="/mokeproduct")
public void insertProduct(Product product) {
ProductDataMoker.populateProduct(productService);
}
}
| [
"[email protected]"
] | |
2a54834af07d85ade9c5aa562d5be18270478166 | 811260ce2120522f1528fa55830374e3ba15ce4c | /AutomationPractice/src/test/java/com/library/JavaPropertiesManager.java | e671ce71872b9cb38c9b840ac9207e6f4e6220d9 | [] | no_license | Saver912/Git_Automation | f9a07ea8e024b412a28b4c541e4d3f1443e7e2c2 | 99afc8cea742f97e3a26139f12f30176885fd58f | refs/heads/master | 2022-08-13T00:38:29.157334 | 2019-10-10T03:37:24 | 2019-10-10T03:37:24 | 171,042,716 | 0 | 0 | null | 2022-06-29T17:41:50 | 2019-02-16T19:25:25 | Java | UTF-8 | Java | false | false | 2,229 | java | package com.library;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Properties;
import org.apache.log4j.Logger;
public class JavaPropertiesManager {
final static Logger logger = Logger.getLogger(JavaPropertiesManager.class);
private String propertiesFile;
private Properties prop;
private OutputStream output;
private InputStream input;
public JavaPropertiesManager(String propertiesFilePath) {
propertiesFile = propertiesFilePath;
prop = new Properties();
}
public String readProperty(String key) {
String value = null;
try {
input = new FileInputStream(propertiesFile);
prop.load(input);
value = prop.getProperty(key);
} catch (Exception e) {
logger.error("Error: ", e);
} finally {
if (input != null) {
try {
input.close();
} catch (Exception e) {
logger.error("Error: ", e);
}
}
}
return value;
}
public void setProperty(String key, String value){
try{
output = new FileOutputStream(propertiesFile);
prop.setProperty(key, value);
prop.store(output, null);
}catch (Exception e)
{
logger.error("Error: ", e);
} finally {
if (output != null) {
try {
output.close();
} catch (Exception e) {
logger.error("Error: ", e);
}
}
}
}
/*public static void main(String[] args) {
//Testing reading property key
JavaPropertiesManager javaManager = new JavaPropertiesManager("src/test/resources/config.properties");
String value = javaManager.readProperty("browserType");
logger.info("property value is: " + value);
// Testing existing property file
//JavaPropertiesManager javaProperty = new JavaPropertiesManager("src/test/resources/config.properties");
//javaProperty.setProperty("name", "Frank");
// Testing new property file
//JavaPropertiesManager javaProperty = new JavaPropertiesManager("src/test/resources/session.properties");
//javaProperty.setProperty("car", "BMW");
}*/
}
| [
"saver@DESKTOP-VQCK5T1"
] | saver@DESKTOP-VQCK5T1 |
862513bfbaa1cb6f7cab30756ba2f4cc466da0a2 | 7b5adff68f08f095d91d30281b7b934e277a453d | /java-with-automation/selenium-refresher/simple-page-object-model-example/src/main/java/com/revature/app/Main.java | 35311fbbd47bb46ac8eeb496b738543f6221b84e | [] | no_license | 210712jwa/training | 831ff08baff9717b7e4f543a677c84330937797a | bf43e7680e61f19ed26c2cd70cd19133a8ec4cb3 | refs/heads/main | 2023-08-02T18:10:10.802512 | 2021-09-27T20:49:17 | 2021-09-27T20:49:17 | 384,465,068 | 2 | 3 | null | 2021-08-20T16:18:57 | 2021-07-09T14:39:31 | Java | UTF-8 | Java | false | false | 938 | java | package com.revature.app;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import com.revature.page.FacebookLoginPage;
public class Main {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "C:/webdrivers/chromedriver.exe");
ChromeOptions options = new ChromeOptions();
// options.addArguments("--incognito", "--headless");
options.addArguments("--incognito");
WebDriver driver = new ChromeDriver(options);
driver.get("http://facebook.com");
FacebookLoginPage loginPage = new FacebookLoginPage(driver);
System.out.println(loginPage.h2Header().getText());
loginPage.username().sendKeys("[email protected]");
loginPage.password().sendKeys("asdfsdfsdfdsf");
loginPage.loginButton().click();
System.out.println(loginPage.incorrectPassword().getText());
driver.quit();
}
}
| [
"[email protected]"
] | |
73f086fb34cccbdd79eac1ade3aad36f9cc4d0cf | ebdcaff90c72bf9bb7871574b25602ec22e45c35 | /modules/adwords_appengine/src/main/java/com/google/api/ads/adwords/jaxws/v201802/cm/MediaErrorReason.java | e118a27b4095c6bde38ad47fb9f9205e6fe5b67d | [
"Apache-2.0"
] | permissive | ColleenKeegan/googleads-java-lib | 3c25ea93740b3abceb52bb0534aff66388d8abd1 | 3d38daadf66e5d9c3db220559f099fd5c5b19e70 | refs/heads/master | 2023-04-06T16:16:51.690975 | 2018-11-15T20:50:26 | 2018-11-15T20:50:26 | 158,986,306 | 1 | 0 | Apache-2.0 | 2023-04-04T01:42:56 | 2018-11-25T00:56:39 | Java | UTF-8 | Java | false | false | 6,343 | java | // Copyright 2018 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.api.ads.adwords.jaxws.v201802.cm;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for MediaError.Reason.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* <simpleType name="MediaError.Reason">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CANNOT_ADD_STANDARD_ICON"/>
* <enumeration value="CANNOT_SELECT_STANDARD_ICON_WITH_OTHER_TYPES"/>
* <enumeration value="CANNOT_SPECIFY_MEDIA_ID_AND_DATA"/>
* <enumeration value="DUPLICATE_MEDIA"/>
* <enumeration value="EMPTY_FIELD"/>
* <enumeration value="ENTITY_REFERENCED_IN_MULTIPLE_OPS"/>
* <enumeration value="FIELD_NOT_SUPPORTED_FOR_MEDIA_SUB_TYPE"/>
* <enumeration value="INVALID_MEDIA_ID"/>
* <enumeration value="INVALID_MEDIA_SUB_TYPE"/>
* <enumeration value="INVALID_MEDIA_TYPE"/>
* <enumeration value="INVALID_MIME_TYPE"/>
* <enumeration value="INVALID_REFERENCE_ID"/>
* <enumeration value="INVALID_YOU_TUBE_ID"/>
* <enumeration value="MEDIA_FAILED_TRANSCODING"/>
* <enumeration value="MEDIA_NOT_TRANSCODED"/>
* <enumeration value="MEDIA_TYPE_DOES_NOT_MATCH_OBJECT_TYPE"/>
* <enumeration value="NO_FIELDS_SPECIFIED"/>
* <enumeration value="NULL_REFERENCE_ID_AND_MEDIA_ID"/>
* <enumeration value="TOO_LONG"/>
* <enumeration value="UNSUPPORTED_OPERATION"/>
* <enumeration value="UNSUPPORTED_TYPE"/>
* <enumeration value="YOU_TUBE_SERVICE_UNAVAILABLE"/>
* <enumeration value="YOU_TUBE_VIDEO_HAS_NON_POSITIVE_DURATION"/>
* <enumeration value="YOU_TUBE_VIDEO_NOT_FOUND"/>
* </restriction>
* </simpleType>
* </pre>
*
*/
@XmlType(name = "MediaError.Reason")
@XmlEnum
public enum MediaErrorReason {
/**
*
* Cannot add a standard icon type
*
*
*/
CANNOT_ADD_STANDARD_ICON,
/**
*
* May only select Standard Icons alone
*
*
*/
CANNOT_SELECT_STANDARD_ICON_WITH_OTHER_TYPES,
/**
*
* Image contains both a media ID and media data.
*
*
*/
CANNOT_SPECIFY_MEDIA_ID_AND_DATA,
/**
*
* A media with given type and reference id already exists
*
*
*/
DUPLICATE_MEDIA,
/**
*
* A required field was not specified or is an empty string.
*
*
*/
EMPTY_FIELD,
/**
*
* A media may only be modified once per call
*
*
*/
ENTITY_REFERENCED_IN_MULTIPLE_OPS,
/**
*
* Field is not supported for the media sub type.
*
*
*/
FIELD_NOT_SUPPORTED_FOR_MEDIA_SUB_TYPE,
/**
*
* The media id is invalid
*
*
*/
INVALID_MEDIA_ID,
/**
*
* The media subtype is invalid
*
*
*/
INVALID_MEDIA_SUB_TYPE,
/**
*
* The media type is invalid
*
*
*/
INVALID_MEDIA_TYPE,
/**
*
* The mimetype is invalid
*
*
*/
INVALID_MIME_TYPE,
/**
*
* The media reference id is invalid
*
*
*/
INVALID_REFERENCE_ID,
/**
*
* The YouTube video id is invalid
*
*
*/
INVALID_YOU_TUBE_ID,
/**
*
* Media has failed transcoding
*
*
*/
MEDIA_FAILED_TRANSCODING,
/**
*
* Media has not been transcoded
*
*
*/
MEDIA_NOT_TRANSCODED,
/**
*
* The MediaType does not match the actual media object's type
*
*
*/
MEDIA_TYPE_DOES_NOT_MATCH_OBJECT_TYPE,
/**
*
* None of the fields have been specified.
*
*
*/
NO_FIELDS_SPECIFIED,
/**
*
* One of reference Id or media Id must be specified
*
*
*/
NULL_REFERENCE_ID_AND_MEDIA_ID,
/**
*
* The string has too many characters.
*
*
*/
TOO_LONG,
/**
*
* The specified operation is not supported. Only ADD, SET, and REMOVE
* are supported
*
*
*/
UNSUPPORTED_OPERATION,
/**
*
* The specified type is not supported.
*
*
*/
UNSUPPORTED_TYPE,
/**
*
* YouTube is unavailable for requesting video data.
*
*
*/
YOU_TUBE_SERVICE_UNAVAILABLE,
/**
*
* The YouTube video has a non positive duration.
*
*
*/
YOU_TUBE_VIDEO_HAS_NON_POSITIVE_DURATION,
/**
*
* The YouTube video id is syntactically valid but the video was not found.
*
*
*/
YOU_TUBE_VIDEO_NOT_FOUND;
public String value() {
return name();
}
public static MediaErrorReason fromValue(String v) {
return valueOf(v);
}
}
| [
"[email protected]"
] | |
e161502d0398995b33b69ea5cab50eef80926b90 | 4f9c8387b04b1abc5312ad5bce02a61e6807f4e6 | /B1E3 - Contagem De Votos/src/com/company/Main.java | 1527a541ea9a482ab4e126c016edd88cff2f1922 | [] | no_license | MeiFagundes/LP1 | e06ae511610abe1afdf950b244fcecc2eb87335b | 1a27065eac7c7aca0c867b522ed6c3fa5e187e69 | refs/heads/master | 2022-04-29T13:22:08.637929 | 2022-03-21T21:06:18 | 2022-03-21T21:06:18 | 131,548,633 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,185 | java | package com.company;
import javax.swing.JOptionPane;
import javax.swing.JTextArea;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Candidato candidatos[] = new Candidato[6];
//JTextArea CaixaSaida = new JTextArea( 11, 20);
candidatos[0] = new Candidato("Lulalelé");
candidatos[0].setVotos(13);
candidatos[1] = new Candidato("Cirogrude");
candidatos[1].setVotos(35);
candidatos[2] = new Candidato("Criancinha");
candidatos[2].setVotos(2);
candidatos[3] = new Candidato("Roseaçaí");
candidatos[3].setVotos(49);
candidatos[4] = new Candidato("Nulo");
candidatos[4].setVotos(200);
candidatos[5] = new Candidato("Branco");
candidatos[5].setVotos(500);
Contagem(candidatos);
}
// Método para calcular a contagem de votos
public static void Contagem(Candidato[] candidatos) {
int maisVotadoIndice = 0, segMaisVotadoIndice = 0;
float totalResto = 0;
// Calculando candidato mais votado
for(int i = 0 ; i < candidatos.length - 3; i++){
if(candidatos[i + 1].getVotos() > candidatos[i].getVotos() && candidatos[i + 1].getVotos() > candidatos[maisVotadoIndice].getVotos()) {
maisVotadoIndice = i + 1;
}
}
// Checando se o candidato mais votado têm uma quantidade de votos maior ou igual ao resto dos cadidatos
for(int i = 0 ; i < candidatos.length; i++){
totalResto += candidatos[i].getVotos();
}
totalResto = totalResto - candidatos[maisVotadoIndice].getVotos();
if(candidatos[maisVotadoIndice].getVotos() >= totalResto){
JOptionPane.showMessageDialog(null, "Nome: " + candidatos[maisVotadoIndice].getNome() + "\n" + "Votos: " + candidatos[maisVotadoIndice].getVotos() + "\n");
}
// Calculando candidatos do segundo turno (caso necessário)
else {
// Calculando segundo mais votado
for(int i = 0 ; i < candidatos.length - 3; i++){
if(candidatos[i + 1].getVotos() > candidatos[i].getVotos() && candidatos[i + 1].getVotos() > candidatos[segMaisVotadoIndice].getVotos() && i + 1 != maisVotadoIndice) {
segMaisVotadoIndice = i + 1;
}
else if(i + 1 == maisVotadoIndice && i < 2) {
if(candidatos[i + 2].getVotos() > candidatos[i].getVotos() && candidatos[i + 2].getVotos() > candidatos[segMaisVotadoIndice].getVotos()){
segMaisVotadoIndice = i + 2;
System.out.println("AAAAA");
}
}
}
JOptionPane.showMessageDialog(null, "Candidatos que irâo para o segundo turno: " + "\n" + "Nome: " + candidatos[maisVotadoIndice].getNome() + "\n" + "Votos: " + candidatos[maisVotadoIndice].getVotos() + "\n" + "\n" + "Nome: " + candidatos[segMaisVotadoIndice].getNome() + "\n" + "Votos: " + candidatos[segMaisVotadoIndice].getVotos() + "\n");
}
}
}
| [
"[email protected]"
] | |
d870cf1c1e796c4148e66676ef1307205c53b963 | 0383075e2c7e3214256bd63d45906a14c9e1d072 | /ttdmmo-backend/src/main/java/cz/brno/candg/ttdmmo/backend/dao/VehicleDao.java | eac94c0ee3d4fa0d3bd809bf8a0b5858ea8309ac | [] | no_license | CandG/TTDMMO | 39b2ee4fbc89f14a519f2acae7d6295978b39274 | 53c9c6e191833a3f8edf0b0dc36dc389dc5d02f8 | refs/heads/master | 2016-09-05T09:34:28.894276 | 2014-05-12T21:50:43 | 2014-05-12T21:50:43 | 14,276,305 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 358 | java | package cz.brno.candg.ttdmmo.backend.dao;
import cz.brno.candg.ttdmmo.model.Vehicle;
/**
* DAO interface for vehicles
*
* @author lastuvka
*/
public interface VehicleDao extends Dao<Vehicle> {
/**
* Change color for vehicles of user with ID
*
* @param id
* @param color
*/
void changeColor(String id, String color);
}
| [
"[email protected]"
] | |
8290cf9b4d6e1a143b759836e1928440710919bd | d65157a165ba4f59c023148a6009915c7d03fae4 | /com/com/android/internal/telephony/cdma/sms/BearerData.java | 58c6e55c561381638a9780ce50f7ae3a4c4d27df | [] | no_license | kishimotoindb/analysis-for-source-code-of-Android | b9235168eb12001440927dade5f241de12b459ca | 6dff2d504f41e4dcac5f1ebef93d240a40817c89 | refs/heads/master | 2023-02-03T02:45:29.878149 | 2023-01-22T08:57:10 | 2023-01-22T08:57:10 | 75,272,054 | 14 | 3 | null | 2022-09-01T22:56:16 | 2016-12-01T08:33:18 | Java | UTF-8 | Java | false | false | 86,438 | java | /*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.internal.telephony.cdma.sms;
import android.content.res.Resources;
import android.telephony.SmsCbCmasInfo;
import android.telephony.cdma.CdmaSmsCbProgramData;
import android.telephony.cdma.CdmaSmsCbProgramResults;
import android.text.format.Time;
import android.telephony.Rlog;
import com.android.internal.telephony.GsmAlphabet;
import com.android.internal.telephony.GsmAlphabet.TextEncodingDetails;
import com.android.internal.telephony.SmsConstants;
import com.android.internal.telephony.SmsHeader;
import com.android.internal.telephony.SmsMessageBase;
import com.android.internal.telephony.uicc.IccUtils;
import com.android.internal.util.BitwiseInputStream;
import com.android.internal.util.BitwiseOutputStream;
import java.util.ArrayList;
import java.util.TimeZone;
/**
* An object to encode and decode CDMA SMS bearer data.
*/
public final class BearerData {
private final static String LOG_TAG = "BearerData";
/**
* Bearer Data Subparameter Identifiers
* (See 3GPP2 C.S0015-B, v2.0, table 4.5-1)
* NOTE: Commented subparameter types are not implemented.
*/
private final static byte SUBPARAM_MESSAGE_IDENTIFIER = 0x00;
private final static byte SUBPARAM_USER_DATA = 0x01;
private final static byte SUBPARAM_USER_RESPONSE_CODE = 0x02;
private final static byte SUBPARAM_MESSAGE_CENTER_TIME_STAMP = 0x03;
private final static byte SUBPARAM_VALIDITY_PERIOD_ABSOLUTE = 0x04;
private final static byte SUBPARAM_VALIDITY_PERIOD_RELATIVE = 0x05;
private final static byte SUBPARAM_DEFERRED_DELIVERY_TIME_ABSOLUTE = 0x06;
private final static byte SUBPARAM_DEFERRED_DELIVERY_TIME_RELATIVE = 0x07;
private final static byte SUBPARAM_PRIORITY_INDICATOR = 0x08;
private final static byte SUBPARAM_PRIVACY_INDICATOR = 0x09;
private final static byte SUBPARAM_REPLY_OPTION = 0x0A;
private final static byte SUBPARAM_NUMBER_OF_MESSAGES = 0x0B;
private final static byte SUBPARAM_ALERT_ON_MESSAGE_DELIVERY = 0x0C;
private final static byte SUBPARAM_LANGUAGE_INDICATOR = 0x0D;
private final static byte SUBPARAM_CALLBACK_NUMBER = 0x0E;
private final static byte SUBPARAM_MESSAGE_DISPLAY_MODE = 0x0F;
//private final static byte SUBPARAM_MULTIPLE_ENCODING_USER_DATA = 0x10;
private final static byte SUBPARAM_MESSAGE_DEPOSIT_INDEX = 0x11;
private final static byte SUBPARAM_SERVICE_CATEGORY_PROGRAM_DATA = 0x12;
private final static byte SUBPARAM_SERVICE_CATEGORY_PROGRAM_RESULTS = 0x13;
private final static byte SUBPARAM_MESSAGE_STATUS = 0x14;
//private final static byte SUBPARAM_TP_FAILURE_CAUSE = 0x15;
//private final static byte SUBPARAM_ENHANCED_VMN = 0x16;
//private final static byte SUBPARAM_ENHANCED_VMN_ACK = 0x17;
// All other values after this are reserved.
private final static byte SUBPARAM_ID_LAST_DEFINED = 0x17;
/**
* Supported message types for CDMA SMS messages
* (See 3GPP2 C.S0015-B, v2.0, table 4.5.1-1)
*/
public static final int MESSAGE_TYPE_DELIVER = 0x01;
public static final int MESSAGE_TYPE_SUBMIT = 0x02;
public static final int MESSAGE_TYPE_CANCELLATION = 0x03;
public static final int MESSAGE_TYPE_DELIVERY_ACK = 0x04;
public static final int MESSAGE_TYPE_USER_ACK = 0x05;
public static final int MESSAGE_TYPE_READ_ACK = 0x06;
public static final int MESSAGE_TYPE_DELIVER_REPORT = 0x07;
public static final int MESSAGE_TYPE_SUBMIT_REPORT = 0x08;
public int messageType;
/**
* 16-bit value indicating the message ID, which increments modulo 65536.
* (Special rules apply for WAP-messages.)
* (See 3GPP2 C.S0015-B, v2, 4.5.1)
*/
public int messageId;
/**
* Supported priority modes for CDMA SMS messages
* (See 3GPP2 C.S0015-B, v2.0, table 4.5.9-1)
*/
public static final int PRIORITY_NORMAL = 0x0;
public static final int PRIORITY_INTERACTIVE = 0x1;
public static final int PRIORITY_URGENT = 0x2;
public static final int PRIORITY_EMERGENCY = 0x3;
public boolean priorityIndicatorSet = false;
public int priority = PRIORITY_NORMAL;
/**
* Supported privacy modes for CDMA SMS messages
* (See 3GPP2 C.S0015-B, v2.0, table 4.5.10-1)
*/
public static final int PRIVACY_NOT_RESTRICTED = 0x0;
public static final int PRIVACY_RESTRICTED = 0x1;
public static final int PRIVACY_CONFIDENTIAL = 0x2;
public static final int PRIVACY_SECRET = 0x3;
public boolean privacyIndicatorSet = false;
public int privacy = PRIVACY_NOT_RESTRICTED;
/**
* Supported alert priority modes for CDMA SMS messages
* (See 3GPP2 C.S0015-B, v2.0, table 4.5.13-1)
*/
public static final int ALERT_DEFAULT = 0x0;
public static final int ALERT_LOW_PRIO = 0x1;
public static final int ALERT_MEDIUM_PRIO = 0x2;
public static final int ALERT_HIGH_PRIO = 0x3;
public boolean alertIndicatorSet = false;
public int alert = ALERT_DEFAULT;
/**
* Supported display modes for CDMA SMS messages. Display mode is
* a 2-bit value used to indicate to the mobile station when to
* display the received message. (See 3GPP2 C.S0015-B, v2,
* 4.5.16)
*/
public static final int DISPLAY_MODE_IMMEDIATE = 0x0;
public static final int DISPLAY_MODE_DEFAULT = 0x1;
public static final int DISPLAY_MODE_USER = 0x2;
public boolean displayModeSet = false;
public int displayMode = DISPLAY_MODE_DEFAULT;
/**
* Language Indicator values. NOTE: the spec (3GPP2 C.S0015-B,
* v2, 4.5.14) is ambiguous as to the meaning of this field, as it
* refers to C.R1001-D but that reference has been crossed out.
* It would seem reasonable to assume the values from C.R1001-F
* (table 9.2-1) are to be used instead.
*/
public static final int LANGUAGE_UNKNOWN = 0x00;
public static final int LANGUAGE_ENGLISH = 0x01;
public static final int LANGUAGE_FRENCH = 0x02;
public static final int LANGUAGE_SPANISH = 0x03;
public static final int LANGUAGE_JAPANESE = 0x04;
public static final int LANGUAGE_KOREAN = 0x05;
public static final int LANGUAGE_CHINESE = 0x06;
public static final int LANGUAGE_HEBREW = 0x07;
public boolean languageIndicatorSet = false;
public int language = LANGUAGE_UNKNOWN;
/**
* SMS Message Status Codes. The first component of the Message
* status indicates if an error has occurred and whether the error
* is considered permanent or temporary. The second component of
* the Message status indicates the cause of the error (if any).
* (See 3GPP2 C.S0015-B, v2.0, 4.5.21)
*/
/* no-error codes */
public static final int ERROR_NONE = 0x00;
public static final int STATUS_ACCEPTED = 0x00;
public static final int STATUS_DEPOSITED_TO_INTERNET = 0x01;
public static final int STATUS_DELIVERED = 0x02;
public static final int STATUS_CANCELLED = 0x03;
/* temporary-error and permanent-error codes */
public static final int ERROR_TEMPORARY = 0x02;
public static final int STATUS_NETWORK_CONGESTION = 0x04;
public static final int STATUS_NETWORK_ERROR = 0x05;
public static final int STATUS_UNKNOWN_ERROR = 0x1F;
/* permanent-error codes */
public static final int ERROR_PERMANENT = 0x03;
public static final int STATUS_CANCEL_FAILED = 0x06;
public static final int STATUS_BLOCKED_DESTINATION = 0x07;
public static final int STATUS_TEXT_TOO_LONG = 0x08;
public static final int STATUS_DUPLICATE_MESSAGE = 0x09;
public static final int STATUS_INVALID_DESTINATION = 0x0A;
public static final int STATUS_MESSAGE_EXPIRED = 0x0D;
/* undefined-status codes */
public static final int ERROR_UNDEFINED = 0xFF;
public static final int STATUS_UNDEFINED = 0xFF;
public boolean messageStatusSet = false;
public int errorClass = ERROR_UNDEFINED;
public int messageStatus = STATUS_UNDEFINED;
/**
* 1-bit value that indicates whether a User Data Header (UDH) is present.
* (See 3GPP2 C.S0015-B, v2, 4.5.1)
*
* NOTE: during encoding, this value will be set based on the
* presence of a UDH in the structured data, any existing setting
* will be overwritten.
*/
public boolean hasUserDataHeader;
/**
* provides the information for the user data
* (e.g. padding bits, user data, user data header, etc)
* (See 3GPP2 C.S.0015-B, v2, 4.5.2)
*/
public UserData userData;
/**
* The User Response Code subparameter is used in the SMS User
* Acknowledgment Message to respond to previously received short
* messages. This message center-specific element carries the
* identifier of a predefined response. (See 3GPP2 C.S.0015-B, v2,
* 4.5.3)
*/
public boolean userResponseCodeSet = false;
public int userResponseCode;
/**
* 6-byte-field, see 3GPP2 C.S0015-B, v2, 4.5.4
*/
public static class TimeStamp extends Time {
public TimeStamp() {
super(TimeZone.getDefault().getID()); // 3GPP2 timestamps use the local timezone
}
public static TimeStamp fromByteArray(byte[] data) {
TimeStamp ts = new TimeStamp();
// C.S0015-B v2.0, 4.5.4: range is 1996-2095
int year = IccUtils.cdmaBcdByteToInt(data[0]);
if (year > 99 || year < 0) return null;
ts.year = year >= 96 ? year + 1900 : year + 2000;
int month = IccUtils.cdmaBcdByteToInt(data[1]);
if (month < 1 || month > 12) return null;
ts.month = month - 1;
int day = IccUtils.cdmaBcdByteToInt(data[2]);
if (day < 1 || day > 31) return null;
ts.monthDay = day;
int hour = IccUtils.cdmaBcdByteToInt(data[3]);
if (hour < 0 || hour > 23) return null;
ts.hour = hour;
int minute = IccUtils.cdmaBcdByteToInt(data[4]);
if (minute < 0 || minute > 59) return null;
ts.minute = minute;
int second = IccUtils.cdmaBcdByteToInt(data[5]);
if (second < 0 || second > 59) return null;
ts.second = second;
return ts;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("TimeStamp ");
builder.append("{ year=" + year);
builder.append(", month=" + month);
builder.append(", day=" + monthDay);
builder.append(", hour=" + hour);
builder.append(", minute=" + minute);
builder.append(", second=" + second);
builder.append(" }");
return builder.toString();
}
}
public TimeStamp msgCenterTimeStamp;
public TimeStamp validityPeriodAbsolute;
public TimeStamp deferredDeliveryTimeAbsolute;
/**
* Relative time is specified as one byte, the value of which
* falls into a series of ranges, as specified below. The idea is
* that shorter time intervals allow greater precision -- the
* value means minutes from zero until the MINS_LIMIT (inclusive),
* upon which it means hours until the HOURS_LIMIT, and so
* forth. (See 3GPP2 C.S0015-B, v2, 4.5.6-1)
*/
public static final int RELATIVE_TIME_MINS_LIMIT = 143;
public static final int RELATIVE_TIME_HOURS_LIMIT = 167;
public static final int RELATIVE_TIME_DAYS_LIMIT = 196;
public static final int RELATIVE_TIME_WEEKS_LIMIT = 244;
public static final int RELATIVE_TIME_INDEFINITE = 245;
public static final int RELATIVE_TIME_NOW = 246;
public static final int RELATIVE_TIME_MOBILE_INACTIVE = 247;
public static final int RELATIVE_TIME_RESERVED = 248;
public boolean validityPeriodRelativeSet;
public int validityPeriodRelative;
public boolean deferredDeliveryTimeRelativeSet;
public int deferredDeliveryTimeRelative;
/**
* The Reply Option subparameter contains 1-bit values which
* indicate whether SMS acknowledgment is requested or not. (See
* 3GPP2 C.S0015-B, v2, 4.5.11)
*/
public boolean userAckReq;
public boolean deliveryAckReq;
public boolean readAckReq;
public boolean reportReq;
/**
* The Number of Messages subparameter (8-bit value) is a decimal
* number in the 0 to 99 range representing the number of messages
* stored at the Voice Mail System. This element is used by the
* Voice Mail Notification service. (See 3GPP2 C.S0015-B, v2,
* 4.5.12)
*/
public int numberOfMessages;
/**
* The Message Deposit Index subparameter is assigned by the
* message center as a unique index to the contents of the User
* Data subparameter in each message sent to a particular mobile
* station. The mobile station, when replying to a previously
* received short message which included a Message Deposit Index
* subparameter, may include the Message Deposit Index of the
* received message to indicate to the message center that the
* original contents of the message are to be included in the
* reply. (See 3GPP2 C.S0015-B, v2, 4.5.18)
*/
public int depositIndex;
/**
* 4-bit or 8-bit value that indicates the number to be dialed in reply to a
* received SMS message.
* (See 3GPP2 C.S0015-B, v2, 4.5.15)
*/
public CdmaSmsAddress callbackNumber;
/**
* CMAS warning notification information.
* @see #decodeCmasUserData(BearerData, int)
*/
public SmsCbCmasInfo cmasWarningInfo;
/**
* The Service Category Program Data subparameter is used to enable and disable
* SMS broadcast service categories to display. If this subparameter is present,
* this field will contain a list of one or more
* {@link android.telephony.cdma.CdmaSmsCbProgramData} objects containing the
* operation(s) to perform.
*/
public ArrayList<CdmaSmsCbProgramData> serviceCategoryProgramData;
/**
* The Service Category Program Results subparameter informs the message center
* of the results of a Service Category Program Data request.
*/
public ArrayList<CdmaSmsCbProgramResults> serviceCategoryProgramResults;
private static class CodingException extends Exception {
public CodingException(String s) {
super(s);
}
}
/**
* Returns the language indicator as a two-character ISO 639 string.
* @return a two character ISO 639 language code
*/
public String getLanguage() {
return getLanguageCodeForValue(language);
}
/**
* Converts a CDMA language indicator value to an ISO 639 two character language code.
* @param languageValue the CDMA language value to convert
* @return the two character ISO 639 language code for the specified value, or null if unknown
*/
private static String getLanguageCodeForValue(int languageValue) {
switch (languageValue) {
case LANGUAGE_ENGLISH:
return "en";
case LANGUAGE_FRENCH:
return "fr";
case LANGUAGE_SPANISH:
return "es";
case LANGUAGE_JAPANESE:
return "ja";
case LANGUAGE_KOREAN:
return "ko";
case LANGUAGE_CHINESE:
return "zh";
case LANGUAGE_HEBREW:
return "he";
default:
return null;
}
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append("BearerData ");
builder.append("{ messageType=" + messageType);
builder.append(", messageId=" + messageId);
builder.append(", priority=" + (priorityIndicatorSet ? priority : "unset"));
builder.append(", privacy=" + (privacyIndicatorSet ? privacy : "unset"));
builder.append(", alert=" + (alertIndicatorSet ? alert : "unset"));
builder.append(", displayMode=" + (displayModeSet ? displayMode : "unset"));
builder.append(", language=" + (languageIndicatorSet ? language : "unset"));
builder.append(", errorClass=" + (messageStatusSet ? errorClass : "unset"));
builder.append(", msgStatus=" + (messageStatusSet ? messageStatus : "unset"));
builder.append(", msgCenterTimeStamp=" +
((msgCenterTimeStamp != null) ? msgCenterTimeStamp : "unset"));
builder.append(", validityPeriodAbsolute=" +
((validityPeriodAbsolute != null) ? validityPeriodAbsolute : "unset"));
builder.append(", validityPeriodRelative=" +
((validityPeriodRelativeSet) ? validityPeriodRelative : "unset"));
builder.append(", deferredDeliveryTimeAbsolute=" +
((deferredDeliveryTimeAbsolute != null) ? deferredDeliveryTimeAbsolute : "unset"));
builder.append(", deferredDeliveryTimeRelative=" +
((deferredDeliveryTimeRelativeSet) ? deferredDeliveryTimeRelative : "unset"));
builder.append(", userAckReq=" + userAckReq);
builder.append(", deliveryAckReq=" + deliveryAckReq);
builder.append(", readAckReq=" + readAckReq);
builder.append(", reportReq=" + reportReq);
builder.append(", numberOfMessages=" + numberOfMessages);
builder.append(", callbackNumber=" + callbackNumber);
builder.append(", depositIndex=" + depositIndex);
builder.append(", hasUserDataHeader=" + hasUserDataHeader);
builder.append(", userData=" + userData);
builder.append(" }");
return builder.toString();
}
private static void encodeMessageId(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
outStream.write(8, 3);
outStream.write(4, bData.messageType);
outStream.write(8, bData.messageId >> 8);
outStream.write(8, bData.messageId);
outStream.write(1, bData.hasUserDataHeader ? 1 : 0);
outStream.skip(3);
}
private static int countAsciiSeptets(CharSequence msg, boolean force) {
int msgLen = msg.length();
if (force) return msgLen;
for (int i = 0; i < msgLen; i++) {
if (UserData.charToAscii.get(msg.charAt(i), -1) == -1) {
return -1;
}
}
return msgLen;
}
/**
* Calculate the message text encoding length, fragmentation, and other details.
*
* @param msg message text
* @param force7BitEncoding ignore (but still count) illegal characters if true
* @param isEntireMsg indicates if this is entire msg or a segment in multipart msg
* @return septet count, or -1 on failure
*/
public static TextEncodingDetails calcTextEncodingDetails(CharSequence msg,
boolean force7BitEncoding, boolean isEntireMsg) {
TextEncodingDetails ted;
int septets = countAsciiSeptets(msg, force7BitEncoding);
if (septets != -1 && septets <= SmsConstants.MAX_USER_DATA_SEPTETS) {
ted = new TextEncodingDetails();
ted.msgCount = 1;
ted.codeUnitCount = septets;
ted.codeUnitsRemaining = SmsConstants.MAX_USER_DATA_SEPTETS - septets;
ted.codeUnitSize = SmsConstants.ENCODING_7BIT;
} else {
ted = com.android.internal.telephony.gsm.SmsMessage.calculateLength(
msg, force7BitEncoding);
if (ted.msgCount == 1 && ted.codeUnitSize == SmsConstants.ENCODING_7BIT &&
isEntireMsg) {
// We don't support single-segment EMS, so calculate for 16-bit
// TODO: Consider supporting single-segment EMS
return SmsMessageBase.calcUnicodeEncodingDetails(msg);
}
}
return ted;
}
private static byte[] encode7bitAscii(String msg, boolean force)
throws CodingException
{
try {
BitwiseOutputStream outStream = new BitwiseOutputStream(msg.length());
int msgLen = msg.length();
for (int i = 0; i < msgLen; i++) {
int charCode = UserData.charToAscii.get(msg.charAt(i), -1);
if (charCode == -1) {
if (force) {
outStream.write(7, UserData.UNENCODABLE_7_BIT_CHAR);
} else {
throw new CodingException("cannot ASCII encode (" + msg.charAt(i) + ")");
}
} else {
outStream.write(7, charCode);
}
}
return outStream.toByteArray();
} catch (BitwiseOutputStream.AccessException ex) {
throw new CodingException("7bit ASCII encode failed: " + ex);
}
}
private static byte[] encodeUtf16(String msg)
throws CodingException
{
try {
return msg.getBytes("utf-16be");
} catch (java.io.UnsupportedEncodingException ex) {
throw new CodingException("UTF-16 encode failed: " + ex);
}
}
private static class Gsm7bitCodingResult {
int septets;
byte[] data;
}
private static Gsm7bitCodingResult encode7bitGsm(String msg, int septetOffset, boolean force)
throws CodingException
{
try {
/*
* TODO(cleanup): It would be nice if GsmAlphabet provided
* an option to produce just the data without prepending
* the septet count, as this function is really just a
* wrapper to strip that off. Not to mention that the
* septet count is generally known prior to invocation of
* the encoder. Note that it cannot be derived from the
* resulting array length, since that cannot distinguish
* if the last contains either 1 or 8 valid bits.
*
* TODO(cleanup): The BitwiseXStreams could also be
* extended with byte-wise reversed endianness read/write
* routines to allow a corresponding implementation of
* stringToGsm7BitPacked, and potentially directly support
* access to the main bitwise stream from encode/decode.
*/
byte[] fullData = GsmAlphabet.stringToGsm7BitPacked(msg, septetOffset, !force, 0, 0);
Gsm7bitCodingResult result = new Gsm7bitCodingResult();
result.data = new byte[fullData.length - 1];
System.arraycopy(fullData, 1, result.data, 0, fullData.length - 1);
result.septets = fullData[0] & 0x00FF;
return result;
} catch (com.android.internal.telephony.EncodeException ex) {
throw new CodingException("7bit GSM encode failed: " + ex);
}
}
private static void encode7bitEms(UserData uData, byte[] udhData, boolean force)
throws CodingException
{
int udhBytes = udhData.length + 1; // Add length octet.
int udhSeptets = ((udhBytes * 8) + 6) / 7;
Gsm7bitCodingResult gcr = encode7bitGsm(uData.payloadStr, udhSeptets, force);
uData.msgEncoding = UserData.ENCODING_GSM_7BIT_ALPHABET;
uData.msgEncodingSet = true;
uData.numFields = gcr.septets;
uData.payload = gcr.data;
uData.payload[0] = (byte)udhData.length;
System.arraycopy(udhData, 0, uData.payload, 1, udhData.length);
}
private static void encode16bitEms(UserData uData, byte[] udhData)
throws CodingException
{
byte[] payload = encodeUtf16(uData.payloadStr);
int udhBytes = udhData.length + 1; // Add length octet.
int udhCodeUnits = (udhBytes + 1) / 2;
int payloadCodeUnits = payload.length / 2;
uData.msgEncoding = UserData.ENCODING_UNICODE_16;
uData.msgEncodingSet = true;
uData.numFields = udhCodeUnits + payloadCodeUnits;
uData.payload = new byte[uData.numFields * 2];
uData.payload[0] = (byte)udhData.length;
System.arraycopy(udhData, 0, uData.payload, 1, udhData.length);
System.arraycopy(payload, 0, uData.payload, udhBytes, payload.length);
}
private static void encodeEmsUserDataPayload(UserData uData)
throws CodingException
{
byte[] headerData = SmsHeader.toByteArray(uData.userDataHeader);
if (uData.msgEncodingSet) {
if (uData.msgEncoding == UserData.ENCODING_GSM_7BIT_ALPHABET) {
encode7bitEms(uData, headerData, true);
} else if (uData.msgEncoding == UserData.ENCODING_UNICODE_16) {
encode16bitEms(uData, headerData);
} else {
throw new CodingException("unsupported EMS user data encoding (" +
uData.msgEncoding + ")");
}
} else {
try {
encode7bitEms(uData, headerData, false);
} catch (CodingException ex) {
encode16bitEms(uData, headerData);
}
}
}
private static byte[] encodeShiftJis(String msg) throws CodingException {
try {
return msg.getBytes("Shift_JIS");
} catch (java.io.UnsupportedEncodingException ex) {
throw new CodingException("Shift-JIS encode failed: " + ex);
}
}
private static void encodeUserDataPayload(UserData uData)
throws CodingException
{
if ((uData.payloadStr == null) && (uData.msgEncoding != UserData.ENCODING_OCTET)) {
Rlog.e(LOG_TAG, "user data with null payloadStr");
uData.payloadStr = "";
}
if (uData.userDataHeader != null) {
encodeEmsUserDataPayload(uData);
return;
}
if (uData.msgEncodingSet) {
if (uData.msgEncoding == UserData.ENCODING_OCTET) {
if (uData.payload == null) {
Rlog.e(LOG_TAG, "user data with octet encoding but null payload");
uData.payload = new byte[0];
uData.numFields = 0;
} else {
uData.numFields = uData.payload.length;
}
} else {
if (uData.payloadStr == null) {
Rlog.e(LOG_TAG, "non-octet user data with null payloadStr");
uData.payloadStr = "";
}
if (uData.msgEncoding == UserData.ENCODING_GSM_7BIT_ALPHABET) {
Gsm7bitCodingResult gcr = encode7bitGsm(uData.payloadStr, 0, true);
uData.payload = gcr.data;
uData.numFields = gcr.septets;
} else if (uData.msgEncoding == UserData.ENCODING_7BIT_ASCII) {
uData.payload = encode7bitAscii(uData.payloadStr, true);
uData.numFields = uData.payloadStr.length();
} else if (uData.msgEncoding == UserData.ENCODING_UNICODE_16) {
uData.payload = encodeUtf16(uData.payloadStr);
uData.numFields = uData.payloadStr.length();
} else if (uData.msgEncoding == UserData.ENCODING_SHIFT_JIS) {
uData.payload = encodeShiftJis(uData.payloadStr);
uData.numFields = uData.payload.length;
} else {
throw new CodingException("unsupported user data encoding (" +
uData.msgEncoding + ")");
}
}
} else {
try {
uData.payload = encode7bitAscii(uData.payloadStr, false);
uData.msgEncoding = UserData.ENCODING_7BIT_ASCII;
} catch (CodingException ex) {
uData.payload = encodeUtf16(uData.payloadStr);
uData.msgEncoding = UserData.ENCODING_UNICODE_16;
}
uData.numFields = uData.payloadStr.length();
uData.msgEncodingSet = true;
}
}
private static void encodeUserData(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException, CodingException
{
/*
* TODO(cleanup): Do we really need to set userData.payload as
* a side effect of encoding? If not, we could avoid data
* copies by passing outStream directly.
*/
encodeUserDataPayload(bData.userData);
bData.hasUserDataHeader = bData.userData.userDataHeader != null;
if (bData.userData.payload.length > SmsConstants.MAX_USER_DATA_BYTES) {
throw new CodingException("encoded user data too large (" +
bData.userData.payload.length +
" > " + SmsConstants.MAX_USER_DATA_BYTES + " bytes)");
}
/*
* TODO(cleanup): figure out what the right answer is WRT paddingBits field
*
* userData.paddingBits = (userData.payload.length * 8) - (userData.numFields * 7);
* userData.paddingBits = 0; // XXX this seems better, but why?
*
*/
int dataBits = (bData.userData.payload.length * 8) - bData.userData.paddingBits;
int paramBits = dataBits + 13;
if ((bData.userData.msgEncoding == UserData.ENCODING_IS91_EXTENDED_PROTOCOL) ||
(bData.userData.msgEncoding == UserData.ENCODING_GSM_DCS)) {
paramBits += 8;
}
int paramBytes = (paramBits / 8) + ((paramBits % 8) > 0 ? 1 : 0);
int paddingBits = (paramBytes * 8) - paramBits;
outStream.write(8, paramBytes);
outStream.write(5, bData.userData.msgEncoding);
if ((bData.userData.msgEncoding == UserData.ENCODING_IS91_EXTENDED_PROTOCOL) ||
(bData.userData.msgEncoding == UserData.ENCODING_GSM_DCS)) {
outStream.write(8, bData.userData.msgType);
}
outStream.write(8, bData.userData.numFields);
outStream.writeByteArray(dataBits, bData.userData.payload);
if (paddingBits > 0) outStream.write(paddingBits, 0);
}
private static void encodeReplyOption(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
outStream.write(8, 1);
outStream.write(1, bData.userAckReq ? 1 : 0);
outStream.write(1, bData.deliveryAckReq ? 1 : 0);
outStream.write(1, bData.readAckReq ? 1 : 0);
outStream.write(1, bData.reportReq ? 1 : 0);
outStream.write(4, 0);
}
private static byte[] encodeDtmfSmsAddress(String address) {
int digits = address.length();
int dataBits = digits * 4;
int dataBytes = (dataBits / 8);
dataBytes += (dataBits % 8) > 0 ? 1 : 0;
byte[] rawData = new byte[dataBytes];
for (int i = 0; i < digits; i++) {
char c = address.charAt(i);
int val = 0;
if ((c >= '1') && (c <= '9')) val = c - '0';
else if (c == '0') val = 10;
else if (c == '*') val = 11;
else if (c == '#') val = 12;
else return null;
rawData[i / 2] |= val << (4 - ((i % 2) * 4));
}
return rawData;
}
/*
* TODO(cleanup): CdmaSmsAddress encoding should make use of
* CdmaSmsAddress.parse provided that DTMF encoding is unified,
* and the difference in 4-bit vs. 8-bit is resolved.
*/
private static void encodeCdmaSmsAddress(CdmaSmsAddress addr) throws CodingException {
if (addr.digitMode == CdmaSmsAddress.DIGIT_MODE_8BIT_CHAR) {
try {
addr.origBytes = addr.address.getBytes("US-ASCII");
} catch (java.io.UnsupportedEncodingException ex) {
throw new CodingException("invalid SMS address, cannot convert to ASCII");
}
} else {
addr.origBytes = encodeDtmfSmsAddress(addr.address);
}
}
private static void encodeCallbackNumber(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException, CodingException
{
CdmaSmsAddress addr = bData.callbackNumber;
encodeCdmaSmsAddress(addr);
int paramBits = 9;
int dataBits = 0;
if (addr.digitMode == CdmaSmsAddress.DIGIT_MODE_8BIT_CHAR) {
paramBits += 7;
dataBits = addr.numberOfDigits * 8;
} else {
dataBits = addr.numberOfDigits * 4;
}
paramBits += dataBits;
int paramBytes = (paramBits / 8) + ((paramBits % 8) > 0 ? 1 : 0);
int paddingBits = (paramBytes * 8) - paramBits;
outStream.write(8, paramBytes);
outStream.write(1, addr.digitMode);
if (addr.digitMode == CdmaSmsAddress.DIGIT_MODE_8BIT_CHAR) {
outStream.write(3, addr.ton);
outStream.write(4, addr.numberPlan);
}
outStream.write(8, addr.numberOfDigits);
outStream.writeByteArray(dataBits, addr.origBytes);
if (paddingBits > 0) outStream.write(paddingBits, 0);
}
private static void encodeMsgStatus(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
outStream.write(8, 1);
outStream.write(2, bData.errorClass);
outStream.write(6, bData.messageStatus);
}
private static void encodeMsgCount(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
outStream.write(8, 1);
outStream.write(8, bData.numberOfMessages);
}
private static void encodeValidityPeriodRel(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
outStream.write(8, 1);
outStream.write(8, bData.validityPeriodRelative);
}
private static void encodePrivacyIndicator(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
outStream.write(8, 1);
outStream.write(2, bData.privacy);
outStream.skip(6);
}
private static void encodeLanguageIndicator(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
outStream.write(8, 1);
outStream.write(8, bData.language);
}
private static void encodeDisplayMode(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
outStream.write(8, 1);
outStream.write(2, bData.displayMode);
outStream.skip(6);
}
private static void encodePriorityIndicator(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
outStream.write(8, 1);
outStream.write(2, bData.priority);
outStream.skip(6);
}
private static void encodeMsgDeliveryAlert(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
outStream.write(8, 1);
outStream.write(2, bData.alert);
outStream.skip(6);
}
private static void encodeScpResults(BearerData bData, BitwiseOutputStream outStream)
throws BitwiseOutputStream.AccessException
{
ArrayList<CdmaSmsCbProgramResults> results = bData.serviceCategoryProgramResults;
outStream.write(8, (results.size() * 4)); // 4 octets per program result
for (CdmaSmsCbProgramResults result : results) {
int category = result.getCategory();
outStream.write(8, category >> 8);
outStream.write(8, category);
outStream.write(8, result.getLanguage());
outStream.write(4, result.getCategoryResult());
outStream.skip(4);
}
}
/**
* Create serialized representation for BearerData object.
* (See 3GPP2 C.R1001-F, v1.0, section 4.5 for layout details)
*
* @param bData an instance of BearerData.
*
* @return byte array of raw encoded SMS bearer data.
*/
public static byte[] encode(BearerData bData) {
bData.hasUserDataHeader = ((bData.userData != null) &&
(bData.userData.userDataHeader != null));
try {
BitwiseOutputStream outStream = new BitwiseOutputStream(200);
outStream.write(8, SUBPARAM_MESSAGE_IDENTIFIER);
encodeMessageId(bData, outStream);
if (bData.userData != null) {
outStream.write(8, SUBPARAM_USER_DATA);
encodeUserData(bData, outStream);
}
if (bData.callbackNumber != null) {
outStream.write(8, SUBPARAM_CALLBACK_NUMBER);
encodeCallbackNumber(bData, outStream);
}
if (bData.userAckReq || bData.deliveryAckReq || bData.readAckReq || bData.reportReq) {
outStream.write(8, SUBPARAM_REPLY_OPTION);
encodeReplyOption(bData, outStream);
}
if (bData.numberOfMessages != 0) {
outStream.write(8, SUBPARAM_NUMBER_OF_MESSAGES);
encodeMsgCount(bData, outStream);
}
if (bData.validityPeriodRelativeSet) {
outStream.write(8, SUBPARAM_VALIDITY_PERIOD_RELATIVE);
encodeValidityPeriodRel(bData, outStream);
}
if (bData.privacyIndicatorSet) {
outStream.write(8, SUBPARAM_PRIVACY_INDICATOR);
encodePrivacyIndicator(bData, outStream);
}
if (bData.languageIndicatorSet) {
outStream.write(8, SUBPARAM_LANGUAGE_INDICATOR);
encodeLanguageIndicator(bData, outStream);
}
if (bData.displayModeSet) {
outStream.write(8, SUBPARAM_MESSAGE_DISPLAY_MODE);
encodeDisplayMode(bData, outStream);
}
if (bData.priorityIndicatorSet) {
outStream.write(8, SUBPARAM_PRIORITY_INDICATOR);
encodePriorityIndicator(bData, outStream);
}
if (bData.alertIndicatorSet) {
outStream.write(8, SUBPARAM_ALERT_ON_MESSAGE_DELIVERY);
encodeMsgDeliveryAlert(bData, outStream);
}
if (bData.messageStatusSet) {
outStream.write(8, SUBPARAM_MESSAGE_STATUS);
encodeMsgStatus(bData, outStream);
}
if (bData.serviceCategoryProgramResults != null) {
outStream.write(8, SUBPARAM_SERVICE_CATEGORY_PROGRAM_RESULTS);
encodeScpResults(bData, outStream);
}
return outStream.toByteArray();
} catch (BitwiseOutputStream.AccessException ex) {
Rlog.e(LOG_TAG, "BearerData encode failed: " + ex);
} catch (CodingException ex) {
Rlog.e(LOG_TAG, "BearerData encode failed: " + ex);
}
return null;
}
private static boolean decodeMessageId(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 3 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.messageType = inStream.read(4);
bData.messageId = inStream.read(8) << 8;
bData.messageId |= inStream.read(8);
bData.hasUserDataHeader = (inStream.read(1) == 1);
inStream.skip(3);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "MESSAGE_IDENTIFIER decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
return decodeSuccess;
}
private static boolean decodeReserved(
BearerData bData, BitwiseInputStream inStream, int subparamId)
throws BitwiseInputStream.AccessException, CodingException
{
boolean decodeSuccess = false;
int subparamLen = inStream.read(8); // SUBPARAM_LEN
int paramBits = subparamLen * 8;
if (paramBits <= inStream.available()) {
decodeSuccess = true;
inStream.skip(paramBits);
}
Rlog.d(LOG_TAG, "RESERVED bearer data subparameter " + subparamId + " decode "
+ (decodeSuccess ? "succeeded" : "failed") + " (param bits = " + paramBits + ")");
if (!decodeSuccess) {
throw new CodingException("RESERVED bearer data subparameter " + subparamId
+ " had invalid SUBPARAM_LEN " + subparamLen);
}
return decodeSuccess;
}
private static boolean decodeUserData(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException
{
int paramBits = inStream.read(8) * 8;
bData.userData = new UserData();
bData.userData.msgEncoding = inStream.read(5);
bData.userData.msgEncodingSet = true;
bData.userData.msgType = 0;
int consumedBits = 5;
if ((bData.userData.msgEncoding == UserData.ENCODING_IS91_EXTENDED_PROTOCOL) ||
(bData.userData.msgEncoding == UserData.ENCODING_GSM_DCS)) {
bData.userData.msgType = inStream.read(8);
consumedBits += 8;
}
bData.userData.numFields = inStream.read(8);
consumedBits += 8;
int dataBits = paramBits - consumedBits;
bData.userData.payload = inStream.readByteArray(dataBits);
return true;
}
private static String decodeUtf8(byte[] data, int offset, int numFields)
throws CodingException
{
return decodeCharset(data, offset, numFields, 1, "UTF-8");
}
private static String decodeUtf16(byte[] data, int offset, int numFields)
throws CodingException
{
// Subtract header and possible padding byte (at end) from num fields.
int padding = offset % 2;
numFields -= (offset + padding) / 2;
return decodeCharset(data, offset, numFields, 2, "utf-16be");
}
private static String decodeCharset(byte[] data, int offset, int numFields, int width,
String charset) throws CodingException
{
if (numFields < 0 || (numFields * width + offset) > data.length) {
// Try to decode the max number of characters in payload
int padding = offset % width;
int maxNumFields = (data.length - offset - padding) / width;
if (maxNumFields < 0) {
throw new CodingException(charset + " decode failed: offset out of range");
}
Rlog.e(LOG_TAG, charset + " decode error: offset = " + offset + " numFields = "
+ numFields + " data.length = " + data.length + " maxNumFields = "
+ maxNumFields);
numFields = maxNumFields;
}
try {
return new String(data, offset, numFields * width, charset);
} catch (java.io.UnsupportedEncodingException ex) {
throw new CodingException(charset + " decode failed: " + ex);
}
}
private static String decode7bitAscii(byte[] data, int offset, int numFields)
throws CodingException
{
try {
offset *= 8;
StringBuffer strBuf = new StringBuffer(numFields);
BitwiseInputStream inStream = new BitwiseInputStream(data);
int wantedBits = (offset * 8) + (numFields * 7);
if (inStream.available() < wantedBits) {
throw new CodingException("insufficient data (wanted " + wantedBits +
" bits, but only have " + inStream.available() + ")");
}
inStream.skip(offset);
for (int i = 0; i < numFields; i++) {
int charCode = inStream.read(7);
if ((charCode >= UserData.ASCII_MAP_BASE_INDEX) &&
(charCode <= UserData.ASCII_MAP_MAX_INDEX)) {
strBuf.append(UserData.ASCII_MAP[charCode - UserData.ASCII_MAP_BASE_INDEX]);
} else if (charCode == UserData.ASCII_NL_INDEX) {
strBuf.append('\n');
} else if (charCode == UserData.ASCII_CR_INDEX) {
strBuf.append('\r');
} else {
/* For other charCodes, they are unprintable, and so simply use SPACE. */
strBuf.append(' ');
}
}
return strBuf.toString();
} catch (BitwiseInputStream.AccessException ex) {
throw new CodingException("7bit ASCII decode failed: " + ex);
}
}
private static String decode7bitGsm(byte[] data, int offset, int numFields)
throws CodingException
{
// Start reading from the next 7-bit aligned boundary after offset.
int offsetBits = offset * 8;
int offsetSeptets = (offsetBits + 6) / 7;
numFields -= offsetSeptets;
int paddingBits = (offsetSeptets * 7) - offsetBits;
String result = GsmAlphabet.gsm7BitPackedToString(data, offset, numFields, paddingBits,
0, 0);
if (result == null) {
throw new CodingException("7bit GSM decoding failed");
}
return result;
}
private static String decodeLatin(byte[] data, int offset, int numFields)
throws CodingException
{
return decodeCharset(data, offset, numFields, 1, "ISO-8859-1");
}
private static String decodeShiftJis(byte[] data, int offset, int numFields)
throws CodingException
{
return decodeCharset(data, offset, numFields, 1, "Shift_JIS");
}
private static void decodeUserDataPayload(UserData userData, boolean hasUserDataHeader)
throws CodingException
{
int offset = 0;
if (hasUserDataHeader) {
int udhLen = userData.payload[0] & 0x00FF;
offset += udhLen + 1;
byte[] headerData = new byte[udhLen];
System.arraycopy(userData.payload, 1, headerData, 0, udhLen);
userData.userDataHeader = SmsHeader.fromByteArray(headerData);
}
switch (userData.msgEncoding) {
case UserData.ENCODING_OCTET:
/*
* Octet decoding depends on the carrier service.
*/
boolean decodingtypeUTF8 = Resources.getSystem()
.getBoolean(com.android.internal.R.bool.config_sms_utf8_support);
// Strip off any padding bytes, meaning any differences between the length of the
// array and the target length specified by numFields. This is to avoid any
// confusion by code elsewhere that only considers the payload array length.
byte[] payload = new byte[userData.numFields];
int copyLen = userData.numFields < userData.payload.length
? userData.numFields : userData.payload.length;
System.arraycopy(userData.payload, 0, payload, 0, copyLen);
userData.payload = payload;
if (!decodingtypeUTF8) {
// There are many devices in the market that send 8bit text sms (latin encoded) as
// octet encoded.
userData.payloadStr = decodeLatin(userData.payload, offset, userData.numFields);
} else {
userData.payloadStr = decodeUtf8(userData.payload, offset, userData.numFields);
}
break;
case UserData.ENCODING_IA5:
case UserData.ENCODING_7BIT_ASCII:
userData.payloadStr = decode7bitAscii(userData.payload, offset, userData.numFields);
break;
case UserData.ENCODING_UNICODE_16:
userData.payloadStr = decodeUtf16(userData.payload, offset, userData.numFields);
break;
case UserData.ENCODING_GSM_7BIT_ALPHABET:
userData.payloadStr = decode7bitGsm(userData.payload, offset, userData.numFields);
break;
case UserData.ENCODING_LATIN:
userData.payloadStr = decodeLatin(userData.payload, offset, userData.numFields);
break;
case UserData.ENCODING_SHIFT_JIS:
userData.payloadStr = decodeShiftJis(userData.payload, offset, userData.numFields);
break;
default:
throw new CodingException("unsupported user data encoding ("
+ userData.msgEncoding + ")");
}
}
/**
* IS-91 Voice Mail message decoding
* (See 3GPP2 C.S0015-A, Table 4.3.1.4.1-1)
* (For character encodings, see TIA/EIA/IS-91, Annex B)
*
* Protocol Summary: The user data payload may contain 3-14
* characters. The first two characters are parsed as a number
* and indicate the number of voicemails. The third character is
* either a SPACE or '!' to indicate normal or urgent priority,
* respectively. Any following characters are treated as normal
* text user data payload.
*
* Note that the characters encoding is 6-bit packed.
*/
private static void decodeIs91VoicemailStatus(BearerData bData)
throws BitwiseInputStream.AccessException, CodingException
{
BitwiseInputStream inStream = new BitwiseInputStream(bData.userData.payload);
int dataLen = inStream.available() / 6; // 6-bit packed character encoding.
int numFields = bData.userData.numFields;
if ((dataLen > 14) || (dataLen < 3) || (dataLen < numFields)) {
throw new CodingException("IS-91 voicemail status decoding failed");
}
try {
StringBuffer strbuf = new StringBuffer(dataLen);
while (inStream.available() >= 6) {
strbuf.append(UserData.ASCII_MAP[inStream.read(6)]);
}
String data = strbuf.toString();
bData.numberOfMessages = Integer.parseInt(data.substring(0, 2));
char prioCode = data.charAt(2);
if (prioCode == ' ') {
bData.priority = PRIORITY_NORMAL;
} else if (prioCode == '!') {
bData.priority = PRIORITY_URGENT;
} else {
throw new CodingException("IS-91 voicemail status decoding failed: " +
"illegal priority setting (" + prioCode + ")");
}
bData.priorityIndicatorSet = true;
bData.userData.payloadStr = data.substring(3, numFields - 3);
} catch (java.lang.NumberFormatException ex) {
throw new CodingException("IS-91 voicemail status decoding failed: " + ex);
} catch (java.lang.IndexOutOfBoundsException ex) {
throw new CodingException("IS-91 voicemail status decoding failed: " + ex);
}
}
/**
* IS-91 Short Message decoding
* (See 3GPP2 C.S0015-A, Table 4.3.1.4.1-1)
* (For character encodings, see TIA/EIA/IS-91, Annex B)
*
* Protocol Summary: The user data payload may contain 1-14
* characters, which are treated as normal text user data payload.
* Note that the characters encoding is 6-bit packed.
*/
private static void decodeIs91ShortMessage(BearerData bData)
throws BitwiseInputStream.AccessException, CodingException
{
BitwiseInputStream inStream = new BitwiseInputStream(bData.userData.payload);
int dataLen = inStream.available() / 6; // 6-bit packed character encoding.
int numFields = bData.userData.numFields;
// dataLen may be > 14 characters due to octet padding
if ((numFields > 14) || (dataLen < numFields)) {
throw new CodingException("IS-91 short message decoding failed");
}
StringBuffer strbuf = new StringBuffer(dataLen);
for (int i = 0; i < numFields; i++) {
strbuf.append(UserData.ASCII_MAP[inStream.read(6)]);
}
bData.userData.payloadStr = strbuf.toString();
}
/**
* IS-91 CLI message (callback number) decoding
* (See 3GPP2 C.S0015-A, Table 4.3.1.4.1-1)
*
* Protocol Summary: The data payload may contain 1-32 digits,
* encoded using standard 4-bit DTMF, which are treated as a
* callback number.
*/
private static void decodeIs91Cli(BearerData bData) throws CodingException {
BitwiseInputStream inStream = new BitwiseInputStream(bData.userData.payload);
int dataLen = inStream.available() / 4; // 4-bit packed DTMF digit encoding.
int numFields = bData.userData.numFields;
if ((dataLen > 14) || (dataLen < 3) || (dataLen < numFields)) {
throw new CodingException("IS-91 voicemail status decoding failed");
}
CdmaSmsAddress addr = new CdmaSmsAddress();
addr.digitMode = CdmaSmsAddress.DIGIT_MODE_4BIT_DTMF;
addr.origBytes = bData.userData.payload;
addr.numberOfDigits = (byte)numFields;
decodeSmsAddress(addr);
bData.callbackNumber = addr;
}
private static void decodeIs91(BearerData bData)
throws BitwiseInputStream.AccessException, CodingException
{
switch (bData.userData.msgType) {
case UserData.IS91_MSG_TYPE_VOICEMAIL_STATUS:
decodeIs91VoicemailStatus(bData);
break;
case UserData.IS91_MSG_TYPE_CLI:
decodeIs91Cli(bData);
break;
case UserData.IS91_MSG_TYPE_SHORT_MESSAGE_FULL:
case UserData.IS91_MSG_TYPE_SHORT_MESSAGE:
decodeIs91ShortMessage(bData);
break;
default:
throw new CodingException("unsupported IS-91 message type (" +
bData.userData.msgType + ")");
}
}
private static boolean decodeReplyOption(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.userAckReq = (inStream.read(1) == 1);
bData.deliveryAckReq = (inStream.read(1) == 1);
bData.readAckReq = (inStream.read(1) == 1);
bData.reportReq = (inStream.read(1) == 1);
inStream.skip(4);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "REPLY_OPTION decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
return decodeSuccess;
}
private static boolean decodeMsgCount(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.numberOfMessages = IccUtils.cdmaBcdByteToInt((byte)inStream.read(8));
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "NUMBER_OF_MESSAGES decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
return decodeSuccess;
}
private static boolean decodeDepositIndex(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 2 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.depositIndex = (inStream.read(8) << 8) | inStream.read(8);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "MESSAGE_DEPOSIT_INDEX decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
return decodeSuccess;
}
private static String decodeDtmfSmsAddress(byte[] rawData, int numFields)
throws CodingException
{
/* DTMF 4-bit digit encoding, defined in at
* 3GPP2 C.S005-D, v2.0, table 2.7.1.3.2.4-4 */
StringBuffer strBuf = new StringBuffer(numFields);
for (int i = 0; i < numFields; i++) {
int val = 0x0F & (rawData[i / 2] >>> (4 - ((i % 2) * 4)));
if ((val >= 1) && (val <= 9)) strBuf.append(Integer.toString(val, 10));
else if (val == 10) strBuf.append('0');
else if (val == 11) strBuf.append('*');
else if (val == 12) strBuf.append('#');
else throw new CodingException("invalid SMS address DTMF code (" + val + ")");
}
return strBuf.toString();
}
private static void decodeSmsAddress(CdmaSmsAddress addr) throws CodingException {
if (addr.digitMode == CdmaSmsAddress.DIGIT_MODE_8BIT_CHAR) {
try {
/* As specified in 3GPP2 C.S0015-B, v2, 4.5.15 -- actually
* just 7-bit ASCII encoding, with the MSB being zero. */
addr.address = new String(addr.origBytes, 0, addr.origBytes.length, "US-ASCII");
} catch (java.io.UnsupportedEncodingException ex) {
throw new CodingException("invalid SMS address ASCII code");
}
} else {
addr.address = decodeDtmfSmsAddress(addr.origBytes, addr.numberOfDigits);
}
}
private static boolean decodeCallbackNumber(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException, CodingException
{
final int EXPECTED_PARAM_SIZE = 1 * 8; //at least
int paramBits = inStream.read(8) * 8;
if (paramBits < EXPECTED_PARAM_SIZE) {
inStream.skip(paramBits);
return false;
}
CdmaSmsAddress addr = new CdmaSmsAddress();
addr.digitMode = inStream.read(1);
byte fieldBits = 4;
byte consumedBits = 1;
if (addr.digitMode == CdmaSmsAddress.DIGIT_MODE_8BIT_CHAR) {
addr.ton = inStream.read(3);
addr.numberPlan = inStream.read(4);
fieldBits = 8;
consumedBits += 7;
}
addr.numberOfDigits = inStream.read(8);
consumedBits += 8;
int remainingBits = paramBits - consumedBits;
int dataBits = addr.numberOfDigits * fieldBits;
int paddingBits = remainingBits - dataBits;
if (remainingBits < dataBits) {
throw new CodingException("CALLBACK_NUMBER subparam encoding size error (" +
"remainingBits + " + remainingBits + ", dataBits + " +
dataBits + ", paddingBits + " + paddingBits + ")");
}
addr.origBytes = inStream.readByteArray(dataBits);
inStream.skip(paddingBits);
decodeSmsAddress(addr);
bData.callbackNumber = addr;
return true;
}
private static boolean decodeMsgStatus(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.errorClass = inStream.read(2);
bData.messageStatus = inStream.read(6);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "MESSAGE_STATUS decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
bData.messageStatusSet = decodeSuccess;
return decodeSuccess;
}
private static boolean decodeMsgCenterTimeStamp(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 6 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.msgCenterTimeStamp = TimeStamp.fromByteArray(inStream.readByteArray(6 * 8));
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "MESSAGE_CENTER_TIME_STAMP decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
return decodeSuccess;
}
private static boolean decodeValidityAbs(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 6 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.validityPeriodAbsolute = TimeStamp.fromByteArray(inStream.readByteArray(6 * 8));
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "VALIDITY_PERIOD_ABSOLUTE decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
return decodeSuccess;
}
private static boolean decodeDeferredDeliveryAbs(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 6 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.deferredDeliveryTimeAbsolute = TimeStamp.fromByteArray(
inStream.readByteArray(6 * 8));
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "DEFERRED_DELIVERY_TIME_ABSOLUTE decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
return decodeSuccess;
}
private static boolean decodeValidityRel(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.deferredDeliveryTimeRelative = inStream.read(8);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "VALIDITY_PERIOD_RELATIVE decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
bData.deferredDeliveryTimeRelativeSet = decodeSuccess;
return decodeSuccess;
}
private static boolean decodeDeferredDeliveryRel(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.validityPeriodRelative = inStream.read(8);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "DEFERRED_DELIVERY_TIME_RELATIVE decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
bData.validityPeriodRelativeSet = decodeSuccess;
return decodeSuccess;
}
private static boolean decodePrivacyIndicator(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.privacy = inStream.read(2);
inStream.skip(6);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "PRIVACY_INDICATOR decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
bData.privacyIndicatorSet = decodeSuccess;
return decodeSuccess;
}
private static boolean decodeLanguageIndicator(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.language = inStream.read(8);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "LANGUAGE_INDICATOR decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
bData.languageIndicatorSet = decodeSuccess;
return decodeSuccess;
}
private static boolean decodeDisplayMode(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.displayMode = inStream.read(2);
inStream.skip(6);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "DISPLAY_MODE decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
bData.displayModeSet = decodeSuccess;
return decodeSuccess;
}
private static boolean decodePriorityIndicator(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.priority = inStream.read(2);
inStream.skip(6);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "PRIORITY_INDICATOR decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
bData.priorityIndicatorSet = decodeSuccess;
return decodeSuccess;
}
private static boolean decodeMsgDeliveryAlert(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.alert = inStream.read(2);
inStream.skip(6);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "ALERT_ON_MESSAGE_DELIVERY decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
bData.alertIndicatorSet = decodeSuccess;
return decodeSuccess;
}
private static boolean decodeUserResponseCode(BearerData bData, BitwiseInputStream inStream)
throws BitwiseInputStream.AccessException {
final int EXPECTED_PARAM_SIZE = 1 * 8;
boolean decodeSuccess = false;
int paramBits = inStream.read(8) * 8;
if (paramBits >= EXPECTED_PARAM_SIZE) {
paramBits -= EXPECTED_PARAM_SIZE;
decodeSuccess = true;
bData.userResponseCode = inStream.read(8);
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "USER_RESPONSE_CODE decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ")");
}
inStream.skip(paramBits);
bData.userResponseCodeSet = decodeSuccess;
return decodeSuccess;
}
private static boolean decodeServiceCategoryProgramData(BearerData bData,
BitwiseInputStream inStream) throws BitwiseInputStream.AccessException, CodingException
{
if (inStream.available() < 13) {
throw new CodingException("SERVICE_CATEGORY_PROGRAM_DATA decode failed: only "
+ inStream.available() + " bits available");
}
int paramBits = inStream.read(8) * 8;
int msgEncoding = inStream.read(5);
paramBits -= 5;
if (inStream.available() < paramBits) {
throw new CodingException("SERVICE_CATEGORY_PROGRAM_DATA decode failed: only "
+ inStream.available() + " bits available (" + paramBits + " bits expected)");
}
ArrayList<CdmaSmsCbProgramData> programDataList = new ArrayList<CdmaSmsCbProgramData>();
final int CATEGORY_FIELD_MIN_SIZE = 6 * 8;
boolean decodeSuccess = false;
while (paramBits >= CATEGORY_FIELD_MIN_SIZE) {
int operation = inStream.read(4);
int category = (inStream.read(8) << 8) | inStream.read(8);
int language = inStream.read(8);
int maxMessages = inStream.read(8);
int alertOption = inStream.read(4);
int numFields = inStream.read(8);
paramBits -= CATEGORY_FIELD_MIN_SIZE;
int textBits = getBitsForNumFields(msgEncoding, numFields);
if (paramBits < textBits) {
throw new CodingException("category name is " + textBits + " bits in length,"
+ " but there are only " + paramBits + " bits available");
}
UserData userData = new UserData();
userData.msgEncoding = msgEncoding;
userData.msgEncodingSet = true;
userData.numFields = numFields;
userData.payload = inStream.readByteArray(textBits);
paramBits -= textBits;
decodeUserDataPayload(userData, false);
String categoryName = userData.payloadStr;
CdmaSmsCbProgramData programData = new CdmaSmsCbProgramData(operation, category,
language, maxMessages, alertOption, categoryName);
programDataList.add(programData);
decodeSuccess = true;
}
if ((! decodeSuccess) || (paramBits > 0)) {
Rlog.d(LOG_TAG, "SERVICE_CATEGORY_PROGRAM_DATA decode " +
(decodeSuccess ? "succeeded" : "failed") +
" (extra bits = " + paramBits + ')');
}
inStream.skip(paramBits);
bData.serviceCategoryProgramData = programDataList;
return decodeSuccess;
}
private static int serviceCategoryToCmasMessageClass(int serviceCategory) {
switch (serviceCategory) {
case SmsEnvelope.SERVICE_CATEGORY_CMAS_PRESIDENTIAL_LEVEL_ALERT:
return SmsCbCmasInfo.CMAS_CLASS_PRESIDENTIAL_LEVEL_ALERT;
case SmsEnvelope.SERVICE_CATEGORY_CMAS_EXTREME_THREAT:
return SmsCbCmasInfo.CMAS_CLASS_EXTREME_THREAT;
case SmsEnvelope.SERVICE_CATEGORY_CMAS_SEVERE_THREAT:
return SmsCbCmasInfo.CMAS_CLASS_SEVERE_THREAT;
case SmsEnvelope.SERVICE_CATEGORY_CMAS_CHILD_ABDUCTION_EMERGENCY:
return SmsCbCmasInfo.CMAS_CLASS_CHILD_ABDUCTION_EMERGENCY;
case SmsEnvelope.SERVICE_CATEGORY_CMAS_TEST_MESSAGE:
return SmsCbCmasInfo.CMAS_CLASS_REQUIRED_MONTHLY_TEST;
default:
return SmsCbCmasInfo.CMAS_CLASS_UNKNOWN;
}
}
/**
* Calculates the number of bits to read for the specified number of encoded characters.
* @param msgEncoding the message encoding to use
* @param numFields the number of characters to read. For Shift-JIS and Korean encodings,
* this is the number of bytes to read.
* @return the number of bits to read from the stream
* @throws CodingException if the specified encoding is not supported
*/
private static int getBitsForNumFields(int msgEncoding, int numFields)
throws CodingException {
switch (msgEncoding) {
case UserData.ENCODING_OCTET:
case UserData.ENCODING_SHIFT_JIS:
case UserData.ENCODING_KOREAN:
case UserData.ENCODING_LATIN:
case UserData.ENCODING_LATIN_HEBREW:
return numFields * 8;
case UserData.ENCODING_IA5:
case UserData.ENCODING_7BIT_ASCII:
case UserData.ENCODING_GSM_7BIT_ALPHABET:
return numFields * 7;
case UserData.ENCODING_UNICODE_16:
return numFields * 16;
default:
throw new CodingException("unsupported message encoding (" + msgEncoding + ')');
}
}
/**
* CMAS message decoding.
* (See TIA-1149-0-1, CMAS over CDMA)
*
* @param serviceCategory is the service category from the SMS envelope
*/
private static void decodeCmasUserData(BearerData bData, int serviceCategory)
throws BitwiseInputStream.AccessException, CodingException {
BitwiseInputStream inStream = new BitwiseInputStream(bData.userData.payload);
if (inStream.available() < 8) {
throw new CodingException("emergency CB with no CMAE_protocol_version");
}
int protocolVersion = inStream.read(8);
if (protocolVersion != 0) {
throw new CodingException("unsupported CMAE_protocol_version " + protocolVersion);
}
int messageClass = serviceCategoryToCmasMessageClass(serviceCategory);
int category = SmsCbCmasInfo.CMAS_CATEGORY_UNKNOWN;
int responseType = SmsCbCmasInfo.CMAS_RESPONSE_TYPE_UNKNOWN;
int severity = SmsCbCmasInfo.CMAS_SEVERITY_UNKNOWN;
int urgency = SmsCbCmasInfo.CMAS_URGENCY_UNKNOWN;
int certainty = SmsCbCmasInfo.CMAS_CERTAINTY_UNKNOWN;
while (inStream.available() >= 16) {
int recordType = inStream.read(8);
int recordLen = inStream.read(8);
switch (recordType) {
case 0: // Type 0 elements (Alert text)
UserData alertUserData = new UserData();
alertUserData.msgEncoding = inStream.read(5);
alertUserData.msgEncodingSet = true;
alertUserData.msgType = 0;
int numFields; // number of chars to decode
switch (alertUserData.msgEncoding) {
case UserData.ENCODING_OCTET:
case UserData.ENCODING_LATIN:
numFields = recordLen - 1; // subtract 1 byte for encoding
break;
case UserData.ENCODING_IA5:
case UserData.ENCODING_7BIT_ASCII:
case UserData.ENCODING_GSM_7BIT_ALPHABET:
numFields = ((recordLen * 8) - 5) / 7; // subtract 5 bits for encoding
break;
case UserData.ENCODING_UNICODE_16:
numFields = (recordLen - 1) / 2;
break;
default:
numFields = 0; // unsupported encoding
}
alertUserData.numFields = numFields;
alertUserData.payload = inStream.readByteArray(recordLen * 8 - 5);
decodeUserDataPayload(alertUserData, false);
bData.userData = alertUserData;
break;
case 1: // Type 1 elements
category = inStream.read(8);
responseType = inStream.read(8);
severity = inStream.read(4);
urgency = inStream.read(4);
certainty = inStream.read(4);
inStream.skip(recordLen * 8 - 28);
break;
default:
Rlog.w(LOG_TAG, "skipping unsupported CMAS record type " + recordType);
inStream.skip(recordLen * 8);
break;
}
}
bData.cmasWarningInfo = new SmsCbCmasInfo(messageClass, category, responseType, severity,
urgency, certainty);
}
/**
* Create BearerData object from serialized representation.
* (See 3GPP2 C.R1001-F, v1.0, section 4.5 for layout details)
*
* @param smsData byte array of raw encoded SMS bearer data.
* @return an instance of BearerData.
*/
public static BearerData decode(byte[] smsData) {
return decode(smsData, 0);
}
private static boolean isCmasAlertCategory(int category) {
return category >= SmsEnvelope.SERVICE_CATEGORY_CMAS_PRESIDENTIAL_LEVEL_ALERT
&& category <= SmsEnvelope.SERVICE_CATEGORY_CMAS_LAST_RESERVED_VALUE;
}
/**
* Create BearerData object from serialized representation.
* (See 3GPP2 C.R1001-F, v1.0, section 4.5 for layout details)
*
* @param smsData byte array of raw encoded SMS bearer data.
* @param serviceCategory the envelope service category (for CMAS alert handling)
* @return an instance of BearerData.
*/
public static BearerData decode(byte[] smsData, int serviceCategory) {
try {
BitwiseInputStream inStream = new BitwiseInputStream(smsData);
BearerData bData = new BearerData();
int foundSubparamMask = 0;
while (inStream.available() > 0) {
int subparamId = inStream.read(8);
int subparamIdBit = 1 << subparamId;
// int is 4 bytes. This duplicate check has a limit to Id number up to 32 (4*8)
// as 32th bit is the max bit in int.
// Per 3GPP2 C.S0015-B Table 4.5-1 Bearer Data Subparameter Identifiers:
// last defined subparam ID is 23 (00010111 = 0x17 = 23).
// Only do duplicate subparam ID check if subparam is within defined value as
// reserved subparams are just skipped.
if ((foundSubparamMask & subparamIdBit) != 0 &&
(subparamId >= SUBPARAM_MESSAGE_IDENTIFIER &&
subparamId <= SUBPARAM_ID_LAST_DEFINED)) {
throw new CodingException("illegal duplicate subparameter (" +
subparamId + ")");
}
boolean decodeSuccess;
switch (subparamId) {
case SUBPARAM_MESSAGE_IDENTIFIER:
decodeSuccess = decodeMessageId(bData, inStream);
break;
case SUBPARAM_USER_DATA:
decodeSuccess = decodeUserData(bData, inStream);
break;
case SUBPARAM_USER_RESPONSE_CODE:
decodeSuccess = decodeUserResponseCode(bData, inStream);
break;
case SUBPARAM_REPLY_OPTION:
decodeSuccess = decodeReplyOption(bData, inStream);
break;
case SUBPARAM_NUMBER_OF_MESSAGES:
decodeSuccess = decodeMsgCount(bData, inStream);
break;
case SUBPARAM_CALLBACK_NUMBER:
decodeSuccess = decodeCallbackNumber(bData, inStream);
break;
case SUBPARAM_MESSAGE_STATUS:
decodeSuccess = decodeMsgStatus(bData, inStream);
break;
case SUBPARAM_MESSAGE_CENTER_TIME_STAMP:
decodeSuccess = decodeMsgCenterTimeStamp(bData, inStream);
break;
case SUBPARAM_VALIDITY_PERIOD_ABSOLUTE:
decodeSuccess = decodeValidityAbs(bData, inStream);
break;
case SUBPARAM_VALIDITY_PERIOD_RELATIVE:
decodeSuccess = decodeValidityRel(bData, inStream);
break;
case SUBPARAM_DEFERRED_DELIVERY_TIME_ABSOLUTE:
decodeSuccess = decodeDeferredDeliveryAbs(bData, inStream);
break;
case SUBPARAM_DEFERRED_DELIVERY_TIME_RELATIVE:
decodeSuccess = decodeDeferredDeliveryRel(bData, inStream);
break;
case SUBPARAM_PRIVACY_INDICATOR:
decodeSuccess = decodePrivacyIndicator(bData, inStream);
break;
case SUBPARAM_LANGUAGE_INDICATOR:
decodeSuccess = decodeLanguageIndicator(bData, inStream);
break;
case SUBPARAM_MESSAGE_DISPLAY_MODE:
decodeSuccess = decodeDisplayMode(bData, inStream);
break;
case SUBPARAM_PRIORITY_INDICATOR:
decodeSuccess = decodePriorityIndicator(bData, inStream);
break;
case SUBPARAM_ALERT_ON_MESSAGE_DELIVERY:
decodeSuccess = decodeMsgDeliveryAlert(bData, inStream);
break;
case SUBPARAM_MESSAGE_DEPOSIT_INDEX:
decodeSuccess = decodeDepositIndex(bData, inStream);
break;
case SUBPARAM_SERVICE_CATEGORY_PROGRAM_DATA:
decodeSuccess = decodeServiceCategoryProgramData(bData, inStream);
break;
default:
decodeSuccess = decodeReserved(bData, inStream, subparamId);
}
if (decodeSuccess &&
(subparamId >= SUBPARAM_MESSAGE_IDENTIFIER &&
subparamId <= SUBPARAM_ID_LAST_DEFINED)) {
foundSubparamMask |= subparamIdBit;
}
}
if ((foundSubparamMask & (1 << SUBPARAM_MESSAGE_IDENTIFIER)) == 0) {
throw new CodingException("missing MESSAGE_IDENTIFIER subparam");
}
if (bData.userData != null) {
if (isCmasAlertCategory(serviceCategory)) {
decodeCmasUserData(bData, serviceCategory);
} else if (bData.userData.msgEncoding == UserData.ENCODING_IS91_EXTENDED_PROTOCOL) {
if ((foundSubparamMask ^
(1 << SUBPARAM_MESSAGE_IDENTIFIER) ^
(1 << SUBPARAM_USER_DATA))
!= 0) {
Rlog.e(LOG_TAG, "IS-91 must occur without extra subparams (" +
foundSubparamMask + ")");
}
decodeIs91(bData);
} else {
decodeUserDataPayload(bData.userData, bData.hasUserDataHeader);
}
}
return bData;
} catch (BitwiseInputStream.AccessException ex) {
Rlog.e(LOG_TAG, "BearerData decode failed: " + ex);
} catch (CodingException ex) {
Rlog.e(LOG_TAG, "BearerData decode failed: " + ex);
}
return null;
}
}
| [
"[email protected]"
] | |
63b0483b2cc269ffd19a298f52bda89e2a2ed68d | 41649b2c06ddaedb64d861844721bca754f9c7d0 | /src/main/java/library/zeroone/test/Entities/Book.java | a9028b836043a5104b1613b4bdede2143eb2f3cb | [] | no_license | IhsanGokalp/Test-of-Final-Project-Of-ZeroOne | 6e7b1756319274499827a9d72c81375dc5e09e0c | 38ee1ce3a1c03c789f8f8f1c605013c3616eea91 | refs/heads/master | 2020-12-27T16:34:00.512503 | 2020-02-19T13:23:55 | 2020-02-19T13:23:55 | 237,972,761 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 540 | java | package library.zeroone.test.Entities;
import library.zeroone.test.Enums.Category;
import lombok.Getter;
import lombok.Setter;
import javax.persistence.*;
@Getter
@Setter
@Entity
@Table(name = "tblbooks")
public class Book extends BaseEntity {
@Column(name = "name")
private String name;
@ManyToOne
@JoinColumn(name = "author_id")
private Author author;
@Enumerated(EnumType.STRING)
@Column(name = "category")
private Category category;
@Column(name = "quantity")
private Integer quantity;
}
| [
"[email protected]"
] | |
ea5265e5000aacfe9874edbb6e0f113311570497 | 3ed851b7c907e0d75fcdc7b1df0d689e47163f59 | /src/main/java/com/rettiwt/rettiwt/controller/SignUpController.java | 1c083c93d2df622683a5a77c107d8559504145c7 | [] | no_license | MarcusVLMA/rettiwt | 5f646a02a96f17bf4e687dc17b606632938ded37 | 0c9d9eac7fa0c068b9da5b432f56d4f4b0a28695 | refs/heads/master | 2021-05-20T13:13:13.291030 | 2020-04-16T00:01:06 | 2020-04-16T00:01:06 | 252,312,149 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,383 | java | package com.rettiwt.rettiwt.controller;
import org.ocpsoft.rewrite.annotation.Join;
import org.ocpsoft.rewrite.el.ELBeanName;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import java.util.Optional;
import javax.faces.application.FacesMessage;
import javax.faces.context.FacesContext;
import com.rettiwt.rettiwt.model.User;
import com.rettiwt.rettiwt.service.UserService;
@Scope
@ELBeanName(value = "signUpController")
@Component(value = "signUpController")
@Join(path = "/signup", to = "/signup-form.jsf")
public class SignUpController {
@Autowired
private UserService userService;
private User user = new User();
public String save() {
Optional<User> userExists = userService.findByUsername(user.getUsername());
FacesContext context = FacesContext.getCurrentInstance();
if(userExists.isPresent()) {
context.addMessage("growl", new FacesMessage(FacesMessage.SEVERITY_ERROR, "Ops!","Username already exists"));
return "/signup-form.xhtml?username-exists=true";
}
userService.save(user);
context.addMessage("growl", new FacesMessage("Successful", "Succesfully signed up"));
context.getExternalContext().getFlash().setKeepMessages(true);
return "/login.xhtml";
}
public User getUser() {
return user;
}
}
| [
"[email protected]"
] | |
7d1f4773278d810d401ab192cc7d59f0a2804d0c | b1403e7346d93b973d7c7d75a2955b380f40537d | /src/Input.java | 44448780b22c39423cce5d00a109894211fd24b8 | [] | no_license | 280404419/ceshi | 5bb9e8cc35726de5db098d04728f8fe41cded85e | 64d0752fa45dc99c24d2d244ec1e060fc72046b7 | refs/heads/master | 2021-07-04T05:19:39.734494 | 2017-09-26T04:23:03 | 2017-09-26T04:23:03 | 103,126,416 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,343 | java | import sun.org.mozilla.javascript.internal.ast.ScriptNode;
import javax.swing.plaf.SliderUI;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
/**
* Created by i-liuxiaofeng on 2017/9/4.
*/
public class Input {
/**
* 回车换行输入n个变量
* 输入:
* 1
* 2
* 3
* 返回:
* int[] arr = {1,2,3}
* @return 返回长度为n的int数组
*/
public static int[] input1(){
Scanner sc = new Scanner(System.in);
int n = 3; //个数固定的情况
int[] arr = new int[n]; //n个整数
//String[] arr = new String[n]; //n个字符串
for(int i = 0; i < n; i++){
arr[i] = Integer.parseInt(sc.nextLine().trim()); //n个整数
//arr[i] = Integer.parseInt(sc.nextLine().trim());
//arr[i] = sc.nextLine(); //n个字符串
}
sc.close();
return arr;
}
/**
* 首先输入一个整数n,然后再回车换行输入n个变量
* 输入:
* 3
* 1
* 2
* 3
* 返回:
* int[] arr = {1,2,3}
* @return 返回长度为n的int数组
*/
public static int[] input2(){
Scanner sc = new Scanner(System.in);
int n = Integer.parseInt(sc.nextLine().trim()); //先输入个数
int[] arr = new int[n]; //n个整数
//String[] arr = new String[n]; //n个字符串
for(int i = 0; i < n; i++){
arr[i] = Integer.parseInt(sc.nextLine().trim()); //n个整数
//arr[i] = sc.nextLine(); //n个字符串
}
sc.close();
return arr;
}
/**
* 以空格或者\t分隔输入n个整数
* 输入:
* 1 2 3
* 返回:
* int[] arr = {1,2,3}
* @return 返回长度为n的int数组
*/
public static int[] input3(){
/*Scanner sc = new Scanner(System.in);
String[] arr1 = sc.nextLine().split(" ");
int[] arr2 = new int [arr1.length];
//String[] arr = sc.nextLine().split("\t");
for (int i = 0; i < arr1.length; i++) {
arr2[i] = Integer.parseInt(arr1[i]);
}
sc.close();
return arr2;*/
Scanner sc = new Scanner(System.in);
String[] arr1 = sc.nextLine().split(" "); //都把他输入成字符串了
int[] arr2 = new int[arr1.length];
for (int i = 0;i<arr1.length;i++){
arr2[i] = Integer.parseInt(arr1[i]);
}
sc.close();
return arr2;
}
/**
* 首先输入一个整数n,然后回车换行输入n组整数,每组数用空格或者\t分隔
* 输入:
* 3
* 1 2
* 3 4
* 5 6
* 返回:
* 集合{{1,2},{3,4},{5,6}}
* @return 返回长度为n的List
*/
public static List<List<Integer>> input4(){
/* Scanner sc = new Scanner(System.in);
int n = Integer.parseInt(sc.nextLine().trim());
List<List<Integer>> list1 = new ArrayList<>();
for (int i = 0; i < n; i++) {
List<Integer> list2 = new ArrayList<>();
String[] arr = sc.nextLine().split(" ");
for (int j = 0; j < arr.length; j++) {
list2.add(Integer.parseInt(arr[j]));
}
list1.add(list2);
}
sc.close();
return list1;*/
Scanner sc = new Scanner(System.in);
int n = Integer.parseInt(sc.nextLine().trim());
List<List<Integer>> list1 = new ArrayList<>();
for(int i=0;i<n;i++){
List<Integer> list2 = new ArrayList<>();
String[] arr = sc.nextLine().split(" ");
for(int j = 0;j<arr.length;j++){
list2.add(Integer.parseInt(arr[j]));
}
list1.add(list2);
}
sc.close();
return list1;
}
/**
* 输入指定范围内的整数,带输入提示和检测
* @return 返回整数n
*/
public static int input5() {
/* Scanner sc = new Scanner(System.in);
System.out.println("请输入整数n,范围为1-10:");
while(true){
String line = sc.nextLine();
int n = 0;
try {
n = Integer.parseInt(line);
} catch (NumberFormatException e) {
System.out.println("输入错误!请重新输入:");
continue;
}
if(n >= 1 && n <= 10){
sc.close();
return n;
} else {
System.out.println("输入错误!请重新输入:");
}
}*/
Scanner sc = new Scanner(System.in);
System.out.println("请输入指定范围内的整数1-10:");
while(true){
String line = sc.nextLine();
int n = 0;
try {
n = Integer.parseInt(line);
}catch (NumberFormatException e){
System.out.println("输入错误,请重新输入:");
continue;
}
if(n>=1&&n<=10){
sc.close();
return n;
}else {
System.out.println("输入错误,请重新输入:");
}
}
}
//一直输入
public static void input6(){
Scanner sc = new Scanner(System.in);
while (sc.hasNext()){
String s = sc.nextLine();
System.out.println(s);
}
}
public static void main(String[] args) {
/*int a = input5();
System.out.println(a);*/
// input6();
/* Scanner sc = new Scanner(System.in);
int[] a = new int[4];
for (int i = 0 ; i<4;i++){
a[i] = sc.nextInt();
}
for (int i = 0 ; i<4;i++){
System.out.println(a[i]);
}*/
Scanner scanner = new Scanner(System.in);
while (scanner.hasNext()) {
int n = scanner.nextInt();
int[] nums = new int[n];
for(int i=0; i<n; i++)
nums[i] = scanner.nextInt();
Arrays.sort(nums);
long num = 1;
while (true) {
long sum = 0;
for(int i=n-1; i>=0 && sum!=num; i--) {
if(nums[i] + sum <= num)
sum += nums[i];
}
if (sum != num) {
System.out.println(num);
break;
}
num++;
}
}
}
}
| [
"liuxf280404419!!!"
] | liuxf280404419!!! |
6dab02d572ea100b7b01a64b05c6fc7ae1eb5dbb | 7eb80974c13af51d24c5b2987a39c86361891298 | /SpringConfiguration-master/src-springAnnotations/com/aneesh/annotationsDemo/GolfJavaConfigDemo.java | 44aa7b038ff62d1ff06391d8d37aba3b738efca6 | [] | no_license | 4neesh/IntroToSpring | 64d13791da5391fc795a6e1a124f6cd617893e2b | c3173d1c5762d688bd85c963bf3d0b1da558118b | refs/heads/master | 2022-12-23T08:26:53.748225 | 2020-06-10T06:34:36 | 2020-06-10T06:34:36 | 271,194,884 | 0 | 0 | null | 2022-12-16T15:38:53 | 2020-06-10T06:16:56 | Java | UTF-8 | Java | false | false | 793 | java | package com.aneesh.annotationsDemo;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class GolfJavaConfigDemo {
public static void main(String[] args) {
//read spring config file
AnnotationConfigApplicationContext context =
new AnnotationConfigApplicationContext(GolfConfig.class);
//get the bean from container
GolfCoach theCoach = context.getBean("golfCoach", GolfCoach.class);
//call method on bean
theCoach.getDailyWorkout();
System.out.println(theCoach.getDailyFortune());
theCoach.getDailyFortune();
theCoach.getName();
theCoach.getEmail();
//close the container
context.close();
}
}
| [
"[email protected]"
] | |
2a64f9c6afe05ea2d18c04d65cef767e8a5db65e | 3b4fb7bb1b158c618ee7d29cd99ddd1a4d6b1188 | /MobileCodeInfo/src/com/dreamlacus/mobilecodeinfo/DBOpenHelper.java | b6308dc50ee3c40babc6e09fbb533c2bcbf4980b | [] | no_license | tk103331/MobileCodeInfo | 3aa654a465f1375c18f615c49aff75c28e80fcbf | fa66939f58c85212f1baaa432cae9481c5ddf370 | refs/heads/master | 2021-01-20T21:52:36.737340 | 2014-07-09T11:54:38 | 2014-07-09T11:54:38 | 21,650,377 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,021 | java | package com.dreamlacus.mobilecodeinfo;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;
import android.os.Environment;
import android.util.Log;
public class DBOpenHelper extends SQLiteOpenHelper {
private SQLiteDatabase mDB=null;
public DBOpenHelper(Context context,String dbname,CursorFactory factory,int version) {
super(context, dbname, factory, version);
}
public DBOpenHelper(Context context) {
this(context,Environment.getExternalStorageDirectory()+"/dreamlacus/mobilecodeinfo.db", null, 1);
//this(context,"/data/data/com.dreamlacus.mobilecodeinfo/databases/mobilecodeinfo.db", null, 1);
mDB=this.getWritableDatabase();
}
@Override
public void onCreate(SQLiteDatabase db) {
//db.execSQL("CREATE TABLE codeinfo(id integer primary key,num text,code text,city text,cardtype text)");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}
public CodeInfo queryCodeInfo(String num) {
Cursor cur=mDB.rawQuery("SELECT * FROM codeinfo where num=?", new String[]{num});
if(cur.moveToFirst()){
CodeInfo ci=new CodeInfo();
ci.setId(cur.getInt(0));
ci.setNum(cur.getString(1));
ci.setCode(cur.getString(2));
ci.setCity(cur.getString(3));
ci.setCardtype(cur.getString(4));
cur.close();
cur=null;
return ci;
}else{
cur.close();
cur=null;
return null;
}
}
public int insertCodeInfo(CodeInfo ci) {
int result=0;
String num=ci.getNum();
String code=ci.getCode();
String city=ci.getCity();
String cardtype=ci.getCardtype();
try{
mDB.execSQL("insert into codeinfo(num,code,city,cardtype)values(?,?,?,?)",
new Object[]{num,code,city,cardtype});}
catch(Exception e){
e.printStackTrace();
Log.i("errrr", e.toString());
}
return result;
}
}
| [
"[email protected]"
] | |
c71932fa9dee7124fe72fb05d2b83a84bc4cf403 | 3457b742dc3331276bdcff2dfa067e1d233116a2 | /CHARE_System/obj/Debug/android/src/com/google/android/gms/maps/R.java | ffa12eabe2dc211683b876017eb783a2a5331ca6 | [] | no_license | kouziakm/CHARE | 4c04271905e5a5c31de88cfb164a1a11f867765d | 8eb579fc6768634b596d1818af4ea41d5182a9d5 | refs/heads/master | 2020-04-15T12:06:02.943048 | 2017-09-24T07:50:55 | 2017-09-24T07:50:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 612,004 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.google.android.gms.maps;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f040000;
public static final int abc_fade_out=0x7f040001;
public static final int abc_grow_fade_in_from_bottom=0x7f040002;
public static final int abc_popup_enter=0x7f040003;
public static final int abc_popup_exit=0x7f040004;
public static final int abc_shrink_fade_out_from_bottom=0x7f040005;
public static final int abc_slide_in_bottom=0x7f040006;
public static final int abc_slide_in_top=0x7f040007;
public static final int abc_slide_out_bottom=0x7f040008;
public static final int abc_slide_out_top=0x7f040009;
}
public static final class array {
public static final int car_color_array=0x7f0c0000;
public static final int signup_account_type=0x7f0c0002;
public static final int signup_gender=0x7f0c0001;
public static final int trip_available_seat=0x7f0c0003;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f010064;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f010065;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarPopupTheme=0x7f01005e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int actionBarSize=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f01005f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f01005a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f010059;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f01005b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f01007f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f01007b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionLayout=0x7f0100d1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f010066;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f01006d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f01005c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f01005d;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionProviderClass=0x7f0100d3;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int actionViewClass=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f010087;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f0100ac;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alertDialogCenterButtons=0x7f0100ad;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f0100ab;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f0100ae;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int allowStacking=0x7f0100c1;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int alpha=0x7f0100c2;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ambientEnabled=0x7f010010;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowHeadLength=0x7f0100c9;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int arrowShaftLength=0x7f0100ca;
/**
The state (true for on, or false for off) that causes dependents to be disabled. By default,
dependents will be disabled when this is unchecked, so the value of this preference is false.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int asb_disableDependentsState=0x7f010125;
/**
The summary for the Preference in a PreferenceActivity screen when the
SwitchPreference is unchecked. If separate on/off summaries are not
needed, the summary attribute can be used instead.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_summaryOff=0x7f010122;
/**
The summary for the Preference in a PreferenceActivity screen when the
SwitchPreference is checked. If separate on/off summaries are not
needed, the summary attribute can be used instead.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_summaryOn=0x7f010121;
/** Minimum width for the switch component
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int asb_switchMinWidth=0x7f01011d;
/** Minimum space between the switch and caption text
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int asb_switchPadding=0x7f01011e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_switchPreferenceStyle=0x7f010120;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_switchStyle=0x7f01011f;
/** TextAppearance style for text displayed on the switch thumb.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_switchTextAppearance=0x7f01011c;
/**
The text used on the switch itself when in the "off" state.
This should be a very SHORT string, as it appears in a small space.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_switchTextOff=0x7f010124;
/**
The text used on the switch itself when in the "on" state.
This should be a very SHORT string, as it appears in a small space.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_switchTextOn=0x7f010123;
/** Text to use when the switch is in the unchecked/"off" state.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_textOff=0x7f01011a;
/** Text to use when the switch is in the checked/"on" state.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_textOn=0x7f010119;
/** Drawable to use as the "thumb" that switches back and forth.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_thumb=0x7f010117;
/** Amount of padding on either side of text within the switch thumb.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int asb_thumbTextPadding=0x7f01011b;
/** Drawable to use as the "track" that the switch thumb slides within.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int asb_track=0x7f010118;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f0100b3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int background=0x7f01002d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f01002f;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f01002e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int backgroundTint=0x7f010106;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int backgroundTintMode=0x7f010107;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int barLength=0x7f0100cb;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int biv_drawCircularShadow=0x7f01010a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int biv_maskDrawable=0x7f010109;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int biv_selectorOnPress=0x7f01010b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f010084;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f010081;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f0100b1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f0100b0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f010080;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static final int buttonGravity=0x7f0100fb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f010042;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>standard</code></td><td>0</td><td></td></tr>
<tr><td><code>wide</code></td><td>1</td><td></td></tr>
<tr><td><code>icon_only</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int buttonSize=0x7f01001a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f0100b5;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int buttonTint=0x7f0100c3;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int buttonTintMode=0x7f0100c4;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cameraBearing=0x7f010001;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cameraMaxZoomPreference=0x7f010012;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cameraMinZoomPreference=0x7f010011;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cameraTargetLat=0x7f010002;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cameraTargetLng=0x7f010003;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cameraTilt=0x7f010004;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int cameraZoom=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f0100b6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f0100b7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int circleCrop=0x7f010019;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeIcon=0x7f0100de;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f01003f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int collapseContentDescription=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int collapseIcon=0x7f0100fc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int color=0x7f0100c5;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorAccent=0x7f0100a3;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorBackgroundFloating=0x7f0100aa;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorButtonNormal=0x7f0100a7;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlActivated=0x7f0100a5;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f0100a6;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlNormal=0x7f0100a4;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimary=0x7f0100a1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimaryDark=0x7f0100a2;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>dark</code></td><td>0</td><td></td></tr>
<tr><td><code>light</code></td><td>1</td><td></td></tr>
<tr><td><code>auto</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int colorScheme=0x7f01001b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorSwitchThumbNormal=0x7f0100a8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int commitIcon=0x7f0100e3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEnd=0x7f010038;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetEndWithActions=0x7f01003c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetLeft=0x7f010039;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetRight=0x7f01003a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStart=0x7f010037;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentInsetStartWithNavigation=0x7f01003b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int controlBackground=0x7f0100a9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f010030;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int defaultQueryHint=0x7f0100dd;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dialogPreferredPadding=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dialogTheme=0x7f010078;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static final int displayOptions=0x7f010026;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int divider=0x7f01002c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f010086;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dividerPadding=0x7f0100cf;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerVertical=0x7f010085;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int drawableSize=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f010021;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f010098;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextBackground=0x7f01008d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int editTextColor=0x7f01008c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int editTextStyle=0x7f0100b8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int elevation=0x7f01003d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f010041;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int gapBetweenBars=0x7f0100c8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f0100df;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int height=0x7f010022;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hideOnContentScroll=0x7f010036;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeLayout=0x7f010031;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int ico_background_color=0x7f01012e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int ico_color=0x7f010127;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int ico_contour_color=0x7f01012c;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
*/
public static final int ico_contour_width=0x7f01012d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
*/
public static final int ico_corner_radius=0x7f01012f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int ico_icon=0x7f010126;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
*/
public static final int ico_offset_x=0x7f010129;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
*/
public static final int ico_offset_y=0x7f01012a;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
*/
public static final int ico_padding=0x7f01012b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
*/
public static final int ico_size=0x7f010128;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int icon=0x7f01002a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iconifiedByDefault=0x7f0100db;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int iiv_background_color=0x7f010136;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int iiv_color=0x7f010131;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int iiv_contour_color=0x7f010134;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
*/
public static final int iiv_contour_width=0x7f010135;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
*/
public static final int iiv_corner_radius=0x7f010137;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int iiv_icon=0x7f010130;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
*/
public static final int iiv_padding=0x7f010133;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
*/
public static final int iiv_size=0x7f010132;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int imageAspectRatio=0x7f010018;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>adjust_width</code></td><td>1</td><td></td></tr>
<tr><td><code>adjust_height</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int imageAspectRatioAdjust=0x7f010017;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int imageButtonStyle=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f010033;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int initialActivityCount=0x7f010040;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int isLightTheme=0x7f010023;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemPadding=0x7f010035;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int latLngBoundsNorthEastLatitude=0x7f010015;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int latLngBoundsNorthEastLongitude=0x7f010016;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int latLngBoundsSouthWestLatitude=0x7f010013;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int latLngBoundsSouthWestLongitude=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f0100da;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layoutManager=0x7f01001d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f0100a0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listItemLayout=0x7f010046;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listLayout=0x7f010043;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listMenuViewStyle=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f010099;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x7f010093;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f010095;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x7f010094;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f010096;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x7f010097;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int liteMode=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f01002b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int logoDescription=0x7f010100;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>normal</code></td><td>1</td><td></td></tr>
<tr><td><code>satellite</code></td><td>2</td><td></td></tr>
<tr><td><code>terrain</code></td><td>3</td><td></td></tr>
<tr><td><code>hybrid</code></td><td>4</td><td></td></tr>
</table>
*/
public static final int mapType=0x7f010000;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_background=0x7f01010d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_divider=0x7f010113;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_header_selection_text=0x7f010116;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_hint_icon=0x7f010112;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_hint_text=0x7f010111;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_primary_icon=0x7f01010f;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_primary_text=0x7f01010e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_secondary_text=0x7f010110;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_selected=0x7f010114;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_selected_text=0x7f010115;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int material_drawer_window_background=0x7f01010c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxButtonHeight=0x7f0100fa;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int measureWithLargestChild=0x7f0100cd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f010044;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int navigationContentDescription=0x7f0100ff;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int navigationIcon=0x7f0100fe;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int navigationMode=0x7f010025;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f0100d6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingBottomNoButtons=0x7f0100d8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingEnd=0x7f010104;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f010103;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingTopNoTitle=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelBackground=0x7f01009d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f01009f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int panelMenuListWidth=0x7f01009e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f01008a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=0x7f01003e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f01008b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int preserveIconSpacing=0x7f0100d4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f010034;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f010032;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int queryBackground=0x7f0100e5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int queryHint=0x7f0100dc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f0100ba;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f0100bc;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int reverseLayout=0x7f01001f;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
*/
public static final int scopeUris=0x7f01001c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f0100e1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchIcon=0x7f0100e0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewStyle=0x7f010092;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f010082;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f010083;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static final int showAsAction=0x7f0100d0;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static final int showDividers=0x7f0100ce;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showText=0x7f0100f1;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showTitle=0x7f010047;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010045;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int siv_insetForeground=0x7f010108;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spanCount=0x7f01001e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int spinBars=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f01007d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f0100be;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int splitTrack=0x7f0100f0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int srcCompat=0x7f010048;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int stackFromEnd=0x7f010020;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_above_anchor=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subMenuArrow=0x7f0100d5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int submitBackground=0x7f0100e6;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitle=0x7f010027;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f0100f3;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int subtitleTextColor=0x7f010102;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f010029;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f0100e4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchMinWidth=0x7f0100ee;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int switchPadding=0x7f0100ef;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchStyle=0x7f0100bf;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f0100ed;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static final int textAllCaps=0x7f01004e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f01009a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSecondary=0x7f01009b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f01009c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f010090;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f01008f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f010076;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f0100af;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorSearchUrl=0x7f010091;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=0x7f010105;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thickness=0x7f0100cc;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTextPadding=0x7f0100ec;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int thumbTint=0x7f0100e7;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int thumbTintMode=0x7f0100e8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tickMark=0x7f01004b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tickMarkTint=0x7f01004c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int tickMarkTintMode=0x7f01004d;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tint=0x7f010049;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int tintMode=0x7f01004a;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int title=0x7f010024;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargin=0x7f0100f4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginBottom=0x7f0100f8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginEnd=0x7f0100f6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginStart=0x7f0100f5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMarginTop=0x7f0100f7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleMargins=0x7f0100f9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0100f2;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleTextColor=0x7f010101;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f010028;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f010088;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int track=0x7f0100e9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int trackTint=0x7f0100ea;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static final int trackTintMode=0x7f0100eb;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int uiCompass=0x7f010007;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int uiMapToolbar=0x7f01000f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int uiRotateGestures=0x7f010008;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int uiScrollGestures=0x7f010009;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int uiTiltGestures=0x7f01000a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int uiZoomControls=0x7f01000b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int uiZoomGestures=0x7f01000c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int useViewLifecycle=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0100e2;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f01004f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBarOverlay=0x7f010051;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionModeOverlay=0x7f010052;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMajor=0x7f010056;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedHeightMinor=0x7f010054;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMajor=0x7f010053;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowFixedWidthMinor=0x7f010055;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMajor=0x7f010057;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowMinWidthMinor=0x7f010058;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowNoTitle=0x7f010050;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int zOrderOnTop=0x7f01000e;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f0b0000;
public static final int abc_allow_stacked_button_bar=0x7f0b0001;
public static final int abc_config_actionMenuItemAllCaps=0x7f0b0002;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f0b0003;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0b0004;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f050187;
public static final int abc_background_cache_hint_selector_material_light=0x7f050188;
public static final int abc_btn_colored_borderless_text_material=0x7f050189;
public static final int abc_btn_colored_text_material=0x7f05018a;
public static final int abc_color_highlight_material=0x7f05018b;
public static final int abc_hint_foreground_material_dark=0x7f05018c;
public static final int abc_hint_foreground_material_light=0x7f05018d;
public static final int abc_input_method_navigation_guard=0x7f05000f;
public static final int abc_primary_text_disable_only_material_dark=0x7f05018e;
public static final int abc_primary_text_disable_only_material_light=0x7f05018f;
public static final int abc_primary_text_material_dark=0x7f050190;
public static final int abc_primary_text_material_light=0x7f050191;
public static final int abc_search_url_text=0x7f050192;
public static final int abc_search_url_text_normal=0x7f050010;
public static final int abc_search_url_text_pressed=0x7f050011;
public static final int abc_search_url_text_selected=0x7f050012;
public static final int abc_secondary_text_material_dark=0x7f050193;
public static final int abc_secondary_text_material_light=0x7f050194;
public static final int abc_tint_btn_checkable=0x7f050195;
public static final int abc_tint_default=0x7f050196;
public static final int abc_tint_edittext=0x7f050197;
public static final int abc_tint_seek_thumb=0x7f050198;
public static final int abc_tint_spinner=0x7f050199;
public static final int abc_tint_switch_thumb=0x7f05019a;
public static final int abc_tint_switch_track=0x7f05019b;
public static final int accent=0x7f050049;
public static final int accent_material_dark=0x7f050013;
public static final int accent_material_light=0x7f050014;
public static final int background_floating_material_dark=0x7f050015;
public static final int background_floating_material_light=0x7f050016;
public static final int background_holo_light=0x7f050182;
public static final int background_material_dark=0x7f050017;
public static final int background_material_light=0x7f050018;
public static final int bright_foreground_disabled_holo_dark=0x7f050183;
public static final int bright_foreground_disabled_material_dark=0x7f050019;
public static final int bright_foreground_disabled_material_light=0x7f05001a;
public static final int bright_foreground_holo_dark=0x7f050184;
public static final int bright_foreground_inverse_material_dark=0x7f05001b;
public static final int bright_foreground_inverse_material_light=0x7f05001c;
public static final int bright_foreground_material_dark=0x7f05001d;
public static final int bright_foreground_material_light=0x7f05001e;
public static final int button_material_dark=0x7f05001f;
public static final int button_material_light=0x7f050020;
public static final int colorAccent=0x7f05004a;
public static final int colorPrimary=0x7f05004b;
public static final int colorPrimaryDark=0x7f05004c;
public static final int colorPrimaryLight=0x7f05004d;
public static final int common_google_signin_btn_text_dark=0x7f05019c;
public static final int common_google_signin_btn_text_dark_default=0x7f050006;
public static final int common_google_signin_btn_text_dark_disabled=0x7f050007;
public static final int common_google_signin_btn_text_dark_focused=0x7f050008;
public static final int common_google_signin_btn_text_dark_pressed=0x7f050009;
public static final int common_google_signin_btn_text_light=0x7f05019d;
public static final int common_google_signin_btn_text_light_default=0x7f05000a;
public static final int common_google_signin_btn_text_light_disabled=0x7f05000b;
public static final int common_google_signin_btn_text_light_focused=0x7f05000c;
public static final int common_google_signin_btn_text_light_pressed=0x7f05000d;
public static final int common_google_signin_btn_tint=0x7f05019e;
public static final int dim_foreground_disabled_holo_dark=0x7f050185;
public static final int dim_foreground_disabled_material_dark=0x7f050021;
public static final int dim_foreground_disabled_material_light=0x7f050022;
public static final int dim_foreground_holo_dark=0x7f050186;
public static final int dim_foreground_material_dark=0x7f050023;
public static final int dim_foreground_material_light=0x7f050024;
public static final int foreground_material_dark=0x7f050025;
public static final int foreground_material_light=0x7f050026;
public static final int highlighted_text_material_dark=0x7f050027;
public static final int highlighted_text_material_light=0x7f050028;
public static final int material_blue_grey_800=0x7f050029;
public static final int material_blue_grey_900=0x7f05002a;
public static final int material_blue_grey_950=0x7f05002b;
public static final int material_deep_teal_200=0x7f05002c;
public static final int material_deep_teal_500=0x7f05002d;
public static final int material_drawer_accent=0x7f05016a;
public static final int material_drawer_background=0x7f05016b;
public static final int material_drawer_dark_background=0x7f05016c;
public static final int material_drawer_dark_divider=0x7f05016d;
public static final int material_drawer_dark_header_selection_text=0x7f05016e;
public static final int material_drawer_dark_hint_icon=0x7f05016f;
public static final int material_drawer_dark_hint_text=0x7f050170;
public static final int material_drawer_dark_primary_icon=0x7f050171;
public static final int material_drawer_dark_primary_text=0x7f050172;
public static final int material_drawer_dark_secondary_text=0x7f050173;
public static final int material_drawer_dark_selected=0x7f050174;
public static final int material_drawer_dark_selected_text=0x7f050175;
public static final int material_drawer_divider=0x7f050176;
public static final int material_drawer_header_selection_text=0x7f050177;
public static final int material_drawer_hint_icon=0x7f050178;
public static final int material_drawer_hint_text=0x7f050179;
public static final int material_drawer_primary=0x7f05017a;
public static final int material_drawer_primary_dark=0x7f05017b;
public static final int material_drawer_primary_icon=0x7f05017c;
public static final int material_drawer_primary_light=0x7f05017d;
public static final int material_drawer_primary_text=0x7f05017e;
public static final int material_drawer_secondary_text=0x7f05017f;
public static final int material_drawer_selected=0x7f050180;
public static final int material_drawer_selected_text=0x7f050181;
public static final int material_grey_100=0x7f05002e;
public static final int material_grey_300=0x7f05002f;
public static final int material_grey_50=0x7f050030;
public static final int material_grey_600=0x7f050031;
public static final int material_grey_800=0x7f050032;
public static final int material_grey_850=0x7f050033;
public static final int material_grey_900=0x7f050034;
public static final int materialize_accent=0x7f05004e;
public static final int materialize_primary=0x7f05004f;
public static final int materialize_primary_dark=0x7f050050;
public static final int materialize_primary_light=0x7f050051;
public static final int md_amber_100=0x7f050052;
public static final int md_amber_200=0x7f050053;
public static final int md_amber_300=0x7f050054;
public static final int md_amber_400=0x7f050055;
public static final int md_amber_50=0x7f050056;
public static final int md_amber_500=0x7f050057;
public static final int md_amber_600=0x7f050058;
public static final int md_amber_700=0x7f050059;
public static final int md_amber_800=0x7f05005a;
public static final int md_amber_900=0x7f05005b;
public static final int md_amber_A100=0x7f05005c;
public static final int md_amber_A200=0x7f05005d;
public static final int md_amber_A400=0x7f05005e;
public static final int md_amber_A700=0x7f05005f;
public static final int md_black_1000=0x7f050060;
public static final int md_blue_100=0x7f050061;
public static final int md_blue_200=0x7f050062;
public static final int md_blue_300=0x7f050063;
public static final int md_blue_400=0x7f050064;
public static final int md_blue_50=0x7f050065;
public static final int md_blue_500=0x7f050066;
public static final int md_blue_600=0x7f050067;
public static final int md_blue_700=0x7f050068;
public static final int md_blue_800=0x7f050069;
public static final int md_blue_900=0x7f05006a;
public static final int md_blue_A100=0x7f05006b;
public static final int md_blue_A200=0x7f05006c;
public static final int md_blue_A400=0x7f05006d;
public static final int md_blue_A700=0x7f05006e;
public static final int md_blue_grey_100=0x7f05006f;
public static final int md_blue_grey_200=0x7f050070;
public static final int md_blue_grey_300=0x7f050071;
public static final int md_blue_grey_400=0x7f050072;
public static final int md_blue_grey_50=0x7f050073;
public static final int md_blue_grey_500=0x7f050074;
public static final int md_blue_grey_600=0x7f050075;
public static final int md_blue_grey_700=0x7f050076;
public static final int md_blue_grey_800=0x7f050077;
public static final int md_blue_grey_900=0x7f050078;
public static final int md_brown_100=0x7f050079;
public static final int md_brown_200=0x7f05007a;
public static final int md_brown_300=0x7f05007b;
public static final int md_brown_400=0x7f05007c;
public static final int md_brown_50=0x7f05007d;
public static final int md_brown_500=0x7f05007e;
public static final int md_brown_600=0x7f05007f;
public static final int md_brown_700=0x7f050080;
public static final int md_brown_800=0x7f050081;
public static final int md_brown_900=0x7f050082;
public static final int md_cyan_100=0x7f050083;
public static final int md_cyan_200=0x7f050084;
public static final int md_cyan_300=0x7f050085;
public static final int md_cyan_400=0x7f050086;
public static final int md_cyan_50=0x7f050087;
public static final int md_cyan_500=0x7f050088;
public static final int md_cyan_600=0x7f050089;
public static final int md_cyan_700=0x7f05008a;
public static final int md_cyan_800=0x7f05008b;
public static final int md_cyan_900=0x7f05008c;
public static final int md_cyan_A100=0x7f05008d;
public static final int md_cyan_A200=0x7f05008e;
public static final int md_cyan_A400=0x7f05008f;
public static final int md_cyan_A700=0x7f050090;
public static final int md_dark_appbar=0x7f050091;
public static final int md_dark_background=0x7f050092;
public static final int md_dark_cards=0x7f050093;
public static final int md_dark_dialogs=0x7f050094;
public static final int md_dark_disabled=0x7f050095;
public static final int md_dark_dividers=0x7f050096;
public static final int md_dark_primary_icon=0x7f050097;
public static final int md_dark_primary_text=0x7f050098;
public static final int md_dark_secondary=0x7f050099;
public static final int md_dark_statusbar=0x7f05009a;
public static final int md_deep_orange_100=0x7f05009b;
public static final int md_deep_orange_200=0x7f05009c;
public static final int md_deep_orange_300=0x7f05009d;
public static final int md_deep_orange_400=0x7f05009e;
public static final int md_deep_orange_50=0x7f05009f;
public static final int md_deep_orange_500=0x7f0500a0;
public static final int md_deep_orange_600=0x7f0500a1;
public static final int md_deep_orange_700=0x7f0500a2;
public static final int md_deep_orange_800=0x7f0500a3;
public static final int md_deep_orange_900=0x7f0500a4;
public static final int md_deep_orange_A100=0x7f0500a5;
public static final int md_deep_orange_A200=0x7f0500a6;
public static final int md_deep_orange_A400=0x7f0500a7;
public static final int md_deep_orange_A700=0x7f0500a8;
public static final int md_deep_purple_100=0x7f0500a9;
public static final int md_deep_purple_200=0x7f0500aa;
public static final int md_deep_purple_300=0x7f0500ab;
public static final int md_deep_purple_400=0x7f0500ac;
public static final int md_deep_purple_50=0x7f0500ad;
public static final int md_deep_purple_500=0x7f0500ae;
public static final int md_deep_purple_600=0x7f0500af;
public static final int md_deep_purple_700=0x7f0500b0;
public static final int md_deep_purple_800=0x7f0500b1;
public static final int md_deep_purple_900=0x7f0500b2;
public static final int md_deep_purple_A100=0x7f0500b3;
public static final int md_deep_purple_A200=0x7f0500b4;
public static final int md_deep_purple_A400=0x7f0500b5;
public static final int md_deep_purple_A700=0x7f0500b6;
public static final int md_green_100=0x7f0500b7;
public static final int md_green_200=0x7f0500b8;
public static final int md_green_300=0x7f0500b9;
public static final int md_green_400=0x7f0500ba;
public static final int md_green_50=0x7f0500bb;
public static final int md_green_500=0x7f0500bc;
public static final int md_green_600=0x7f0500bd;
public static final int md_green_700=0x7f0500be;
public static final int md_green_800=0x7f0500bf;
public static final int md_green_900=0x7f0500c0;
public static final int md_green_A100=0x7f0500c1;
public static final int md_green_A200=0x7f0500c2;
public static final int md_green_A400=0x7f0500c3;
public static final int md_green_A700=0x7f0500c4;
public static final int md_grey_100=0x7f0500c5;
public static final int md_grey_200=0x7f0500c6;
public static final int md_grey_300=0x7f0500c7;
public static final int md_grey_400=0x7f0500c8;
public static final int md_grey_50=0x7f0500c9;
public static final int md_grey_500=0x7f0500ca;
public static final int md_grey_600=0x7f0500cb;
public static final int md_grey_700=0x7f0500cc;
public static final int md_grey_800=0x7f0500cd;
public static final int md_grey_850=0x7f0500ce;
public static final int md_grey_900=0x7f0500cf;
public static final int md_indigo_100=0x7f0500d0;
public static final int md_indigo_200=0x7f0500d1;
public static final int md_indigo_300=0x7f0500d2;
public static final int md_indigo_400=0x7f0500d3;
public static final int md_indigo_50=0x7f0500d4;
public static final int md_indigo_500=0x7f0500d5;
public static final int md_indigo_600=0x7f0500d6;
public static final int md_indigo_700=0x7f0500d7;
public static final int md_indigo_800=0x7f0500d8;
public static final int md_indigo_900=0x7f0500d9;
public static final int md_indigo_A100=0x7f0500da;
public static final int md_indigo_A200=0x7f0500db;
public static final int md_indigo_A400=0x7f0500dc;
public static final int md_indigo_A700=0x7f0500dd;
public static final int md_light_appbar=0x7f0500de;
public static final int md_light_background=0x7f0500df;
public static final int md_light_blue_100=0x7f0500e0;
public static final int md_light_blue_200=0x7f0500e1;
public static final int md_light_blue_300=0x7f0500e2;
public static final int md_light_blue_400=0x7f0500e3;
public static final int md_light_blue_50=0x7f0500e4;
public static final int md_light_blue_500=0x7f0500e5;
public static final int md_light_blue_600=0x7f0500e6;
public static final int md_light_blue_700=0x7f0500e7;
public static final int md_light_blue_800=0x7f0500e8;
public static final int md_light_blue_900=0x7f0500e9;
public static final int md_light_blue_A100=0x7f0500ea;
public static final int md_light_blue_A200=0x7f0500eb;
public static final int md_light_blue_A400=0x7f0500ec;
public static final int md_light_blue_A700=0x7f0500ed;
public static final int md_light_cards=0x7f0500ee;
public static final int md_light_dialogs=0x7f0500ef;
public static final int md_light_disabled=0x7f0500f0;
public static final int md_light_dividers=0x7f0500f1;
public static final int md_light_green_100=0x7f0500f2;
public static final int md_light_green_200=0x7f0500f3;
public static final int md_light_green_300=0x7f0500f4;
public static final int md_light_green_400=0x7f0500f5;
public static final int md_light_green_50=0x7f0500f6;
public static final int md_light_green_500=0x7f0500f7;
public static final int md_light_green_600=0x7f0500f8;
public static final int md_light_green_700=0x7f0500f9;
public static final int md_light_green_800=0x7f0500fa;
public static final int md_light_green_900=0x7f0500fb;
public static final int md_light_green_A100=0x7f0500fc;
public static final int md_light_green_A200=0x7f0500fd;
public static final int md_light_green_A400=0x7f0500fe;
public static final int md_light_green_A700=0x7f0500ff;
public static final int md_light_primary_icon=0x7f050100;
public static final int md_light_primary_text=0x7f050101;
public static final int md_light_secondary=0x7f050102;
public static final int md_light_statusbar=0x7f050103;
public static final int md_lime_100=0x7f050104;
public static final int md_lime_200=0x7f050105;
public static final int md_lime_300=0x7f050106;
public static final int md_lime_400=0x7f050107;
public static final int md_lime_50=0x7f050108;
public static final int md_lime_500=0x7f050109;
public static final int md_lime_600=0x7f05010a;
public static final int md_lime_700=0x7f05010b;
public static final int md_lime_800=0x7f05010c;
public static final int md_lime_900=0x7f05010d;
public static final int md_lime_A100=0x7f05010e;
public static final int md_lime_A200=0x7f05010f;
public static final int md_lime_A400=0x7f050110;
public static final int md_lime_A700=0x7f050111;
public static final int md_orange_100=0x7f050112;
public static final int md_orange_200=0x7f050113;
public static final int md_orange_300=0x7f050114;
public static final int md_orange_400=0x7f050115;
public static final int md_orange_50=0x7f050116;
public static final int md_orange_500=0x7f050117;
public static final int md_orange_600=0x7f050118;
public static final int md_orange_700=0x7f050119;
public static final int md_orange_800=0x7f05011a;
public static final int md_orange_900=0x7f05011b;
public static final int md_orange_A100=0x7f05011c;
public static final int md_orange_A200=0x7f05011d;
public static final int md_orange_A400=0x7f05011e;
public static final int md_orange_A700=0x7f05011f;
public static final int md_pink_100=0x7f050120;
public static final int md_pink_200=0x7f050121;
public static final int md_pink_300=0x7f050122;
public static final int md_pink_400=0x7f050123;
public static final int md_pink_50=0x7f050124;
public static final int md_pink_500=0x7f050125;
public static final int md_pink_600=0x7f050126;
public static final int md_pink_700=0x7f050127;
public static final int md_pink_800=0x7f050128;
public static final int md_pink_900=0x7f050129;
public static final int md_pink_A100=0x7f05012a;
public static final int md_pink_A200=0x7f05012b;
public static final int md_pink_A400=0x7f05012c;
public static final int md_pink_A700=0x7f05012d;
public static final int md_purple_100=0x7f05012e;
public static final int md_purple_200=0x7f05012f;
public static final int md_purple_300=0x7f050130;
public static final int md_purple_400=0x7f050131;
public static final int md_purple_50=0x7f050132;
public static final int md_purple_500=0x7f050133;
public static final int md_purple_600=0x7f050134;
public static final int md_purple_700=0x7f050135;
public static final int md_purple_800=0x7f050136;
public static final int md_purple_900=0x7f050137;
public static final int md_purple_A100=0x7f050138;
public static final int md_purple_A200=0x7f050139;
public static final int md_purple_A400=0x7f05013a;
public static final int md_purple_A700=0x7f05013b;
public static final int md_red_100=0x7f05013c;
public static final int md_red_200=0x7f05013d;
public static final int md_red_300=0x7f05013e;
public static final int md_red_400=0x7f05013f;
public static final int md_red_50=0x7f050140;
public static final int md_red_500=0x7f050141;
public static final int md_red_600=0x7f050142;
public static final int md_red_700=0x7f050143;
public static final int md_red_800=0x7f050144;
public static final int md_red_900=0x7f050145;
public static final int md_red_A100=0x7f050146;
public static final int md_red_A200=0x7f050147;
public static final int md_red_A400=0x7f050148;
public static final int md_red_A700=0x7f050149;
public static final int md_teal_100=0x7f05014a;
public static final int md_teal_200=0x7f05014b;
public static final int md_teal_300=0x7f05014c;
public static final int md_teal_400=0x7f05014d;
public static final int md_teal_50=0x7f05014e;
public static final int md_teal_500=0x7f05014f;
public static final int md_teal_600=0x7f050150;
public static final int md_teal_700=0x7f050151;
public static final int md_teal_800=0x7f050152;
public static final int md_teal_900=0x7f050153;
public static final int md_teal_A100=0x7f050154;
public static final int md_teal_A200=0x7f050155;
public static final int md_teal_A400=0x7f050156;
public static final int md_teal_A700=0x7f050157;
public static final int md_white_1000=0x7f050158;
public static final int md_yellow_100=0x7f050159;
public static final int md_yellow_200=0x7f05015a;
public static final int md_yellow_300=0x7f05015b;
public static final int md_yellow_400=0x7f05015c;
public static final int md_yellow_50=0x7f05015d;
public static final int md_yellow_500=0x7f05015e;
public static final int md_yellow_600=0x7f05015f;
public static final int md_yellow_700=0x7f050160;
public static final int md_yellow_800=0x7f050161;
public static final int md_yellow_900=0x7f050162;
public static final int md_yellow_A100=0x7f050163;
public static final int md_yellow_A200=0x7f050164;
public static final int md_yellow_A400=0x7f050165;
public static final int md_yellow_A700=0x7f050166;
public static final int notification_action_color_filter=0x7f05000e;
public static final int notification_icon_bg_color=0x7f050035;
public static final int notification_material_background_media_default_color=0x7f050036;
public static final int place_autocomplete_prediction_primary_text=0x7f050000;
public static final int place_autocomplete_prediction_primary_text_highlight=0x7f050001;
public static final int place_autocomplete_prediction_secondary_text=0x7f050002;
public static final int place_autocomplete_search_hint=0x7f050003;
public static final int place_autocomplete_search_text=0x7f050004;
public static final int place_autocomplete_separator=0x7f050005;
public static final int primary=0x7f050167;
public static final int primary_dark=0x7f050168;
public static final int primary_dark_material_dark=0x7f050037;
public static final int primary_dark_material_light=0x7f050038;
public static final int primary_light=0x7f050169;
public static final int primary_material_dark=0x7f050039;
public static final int primary_material_light=0x7f05003a;
public static final int primary_text_default_material_dark=0x7f05003b;
public static final int primary_text_default_material_light=0x7f05003c;
public static final int primary_text_disabled_material_dark=0x7f05003d;
public static final int primary_text_disabled_material_light=0x7f05003e;
public static final int primary_text_holo_dark=0x7f05019f;
public static final int ripple_material_dark=0x7f05003f;
public static final int ripple_material_light=0x7f050040;
public static final int secondary_text_default_material_dark=0x7f050041;
public static final int secondary_text_default_material_light=0x7f050042;
public static final int secondary_text_disabled_material_dark=0x7f050043;
public static final int secondary_text_disabled_material_light=0x7f050044;
public static final int secondary_text_holo_dark=0x7f0501a0;
public static final int switch_thumb_disabled_material_dark=0x7f050045;
public static final int switch_thumb_disabled_material_light=0x7f050046;
public static final int switch_thumb_material_dark=0x7f0501a1;
public static final int switch_thumb_material_light=0x7f0501a2;
public static final int switch_thumb_normal_material_dark=0x7f050047;
public static final int switch_thumb_normal_material_light=0x7f050048;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f060019;
public static final int abc_action_bar_content_inset_with_nav=0x7f06001a;
public static final int abc_action_bar_default_height_material=0x7f06000e;
public static final int abc_action_bar_default_padding_end_material=0x7f06001b;
public static final int abc_action_bar_default_padding_start_material=0x7f06001c;
public static final int abc_action_bar_elevation_material=0x7f060022;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f060023;
public static final int abc_action_bar_overflow_padding_end_material=0x7f060024;
public static final int abc_action_bar_overflow_padding_start_material=0x7f060025;
public static final int abc_action_bar_progress_bar_size=0x7f06000f;
public static final int abc_action_bar_stacked_max_height=0x7f060026;
public static final int abc_action_bar_stacked_tab_max_width=0x7f060027;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f060028;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f060029;
public static final int abc_action_button_min_height_material=0x7f06002a;
public static final int abc_action_button_min_width_material=0x7f06002b;
public static final int abc_action_button_min_width_overflow_material=0x7f06002c;
public static final int abc_alert_dialog_button_bar_height=0x7f06000d;
public static final int abc_button_inset_horizontal_material=0x7f06002d;
public static final int abc_button_inset_vertical_material=0x7f06002e;
public static final int abc_button_padding_horizontal_material=0x7f06002f;
public static final int abc_button_padding_vertical_material=0x7f060030;
public static final int abc_cascading_menus_min_smallest_width=0x7f060031;
public static final int abc_config_prefDialogWidth=0x7f060012;
public static final int abc_control_corner_material=0x7f060032;
public static final int abc_control_inset_material=0x7f060033;
public static final int abc_control_padding_material=0x7f060034;
public static final int abc_dialog_fixed_height_major=0x7f060013;
public static final int abc_dialog_fixed_height_minor=0x7f060014;
public static final int abc_dialog_fixed_width_major=0x7f060015;
public static final int abc_dialog_fixed_width_minor=0x7f060016;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f060035;
public static final int abc_dialog_list_padding_top_no_title=0x7f060036;
public static final int abc_dialog_min_width_major=0x7f060017;
public static final int abc_dialog_min_width_minor=0x7f060018;
public static final int abc_dialog_padding_material=0x7f060037;
public static final int abc_dialog_padding_top_material=0x7f060038;
public static final int abc_dialog_title_divider_material=0x7f060039;
public static final int abc_disabled_alpha_material_dark=0x7f06003a;
public static final int abc_disabled_alpha_material_light=0x7f06003b;
public static final int abc_dropdownitem_icon_width=0x7f06003c;
public static final int abc_dropdownitem_text_padding_left=0x7f06003d;
public static final int abc_dropdownitem_text_padding_right=0x7f06003e;
public static final int abc_edit_text_inset_bottom_material=0x7f06003f;
public static final int abc_edit_text_inset_horizontal_material=0x7f060040;
public static final int abc_edit_text_inset_top_material=0x7f060041;
public static final int abc_floating_window_z=0x7f060042;
public static final int abc_list_item_padding_horizontal_material=0x7f060043;
public static final int abc_panel_menu_list_width=0x7f060044;
public static final int abc_progress_bar_height_material=0x7f060045;
public static final int abc_search_view_preferred_height=0x7f060046;
public static final int abc_search_view_preferred_width=0x7f060047;
public static final int abc_seekbar_track_background_height_material=0x7f060048;
public static final int abc_seekbar_track_progress_height_material=0x7f060049;
public static final int abc_select_dialog_padding_start_material=0x7f06004a;
public static final int abc_switch_padding=0x7f06001e;
public static final int abc_text_size_body_1_material=0x7f06004b;
public static final int abc_text_size_body_2_material=0x7f06004c;
public static final int abc_text_size_button_material=0x7f06004d;
public static final int abc_text_size_caption_material=0x7f06004e;
public static final int abc_text_size_display_1_material=0x7f06004f;
public static final int abc_text_size_display_2_material=0x7f060050;
public static final int abc_text_size_display_3_material=0x7f060051;
public static final int abc_text_size_display_4_material=0x7f060052;
public static final int abc_text_size_headline_material=0x7f060053;
public static final int abc_text_size_large_material=0x7f060054;
public static final int abc_text_size_medium_material=0x7f060055;
public static final int abc_text_size_menu_header_material=0x7f060056;
public static final int abc_text_size_menu_material=0x7f060057;
public static final int abc_text_size_small_material=0x7f060058;
public static final int abc_text_size_subhead_material=0x7f060059;
public static final int abc_text_size_subtitle_material_toolbar=0x7f060010;
public static final int abc_text_size_title_material=0x7f06005a;
public static final int abc_text_size_title_material_toolbar=0x7f060011;
public static final int disabled_alpha_material_dark=0x7f06005b;
public static final int disabled_alpha_material_light=0x7f06005c;
public static final int highlight_alpha_material_colored=0x7f06005d;
public static final int highlight_alpha_material_dark=0x7f06005e;
public static final int highlight_alpha_material_light=0x7f06005f;
public static final int hint_alpha_material_dark=0x7f060060;
public static final int hint_alpha_material_light=0x7f060061;
public static final int hint_pressed_alpha_material_dark=0x7f060062;
public static final int hint_pressed_alpha_material_light=0x7f060063;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f06000a;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f06000b;
public static final int item_touch_helper_swipe_escape_velocity=0x7f06000c;
public static final int material_drawer_account_header_compact=0x7f06008e;
public static final int material_drawer_account_header_dropdown=0x7f06008f;
public static final int material_drawer_account_header_dropdown_margin_bottom=0x7f060090;
public static final int material_drawer_account_header_dropdown_padding=0x7f060091;
public static final int material_drawer_account_header_height=0x7f060092;
public static final int material_drawer_account_header_height_compact=0x7f060093;
public static final int material_drawer_account_header_horizontal_bottom=0x7f060094;
public static final int material_drawer_account_header_horizontal_top=0x7f060095;
public static final int material_drawer_account_header_secondary=0x7f060096;
public static final int material_drawer_account_header_selected=0x7f060097;
public static final int material_drawer_account_header_text=0x7f060098;
public static final int material_drawer_item_padding=0x7f060099;
public static final int material_drawer_item_primary=0x7f06009a;
public static final int material_drawer_item_primary_description=0x7f06009b;
public static final int material_drawer_item_primary_icon=0x7f06009c;
public static final int material_drawer_item_primary_icon_padding=0x7f06009d;
public static final int material_drawer_item_primary_icon_padding_right=0x7f06009e;
public static final int material_drawer_item_primary_text=0x7f06009f;
public static final int material_drawer_item_profile=0x7f0600a0;
public static final int material_drawer_item_profile_description=0x7f0600a1;
public static final int material_drawer_item_profile_icon=0x7f0600a2;
public static final int material_drawer_item_profile_icon_padding=0x7f0600a3;
public static final int material_drawer_item_profile_icon_padding_right=0x7f0600a4;
public static final int material_drawer_item_profile_icon_width=0x7f0600a5;
public static final int material_drawer_item_profile_setting_icon_padding=0x7f0600a6;
public static final int material_drawer_item_profile_text=0x7f0600a7;
public static final int material_drawer_item_secondary=0x7f0600a8;
public static final int material_drawer_item_secondary_description=0x7f0600a9;
public static final int material_drawer_item_secondary_extra_text=0x7f0600aa;
public static final int material_drawer_item_secondary_icon=0x7f0600ab;
public static final int material_drawer_item_secondary_icon_padding=0x7f0600ac;
public static final int material_drawer_item_secondary_icon_padding_right=0x7f0600ad;
public static final int material_drawer_item_secondary_text=0x7f0600ae;
public static final int material_drawer_item_section_text=0x7f0600af;
public static final int material_drawer_margin=0x7f0600b0;
public static final int material_drawer_padding=0x7f0600b1;
public static final int material_drawer_vertical_padding=0x7f06008d;
public static final int material_drawer_width=0x7f0600b2;
public static final int material_mini_drawer_item=0x7f0600b3;
public static final int material_mini_drawer_item_badge_text=0x7f0600b4;
public static final int material_mini_drawer_item_icon=0x7f0600b5;
public static final int material_mini_drawer_item_icon_padding=0x7f0600b6;
public static final int material_mini_drawer_item_padding=0x7f0600b7;
public static final int materialize_avatar=0x7f060071;
public static final int materialize_baseline_grid=0x7f060072;
public static final int materialize_baseline_grid_small=0x7f060073;
public static final int materialize_baseline_grid_x10=0x7f060074;
public static final int materialize_baseline_grid_x2=0x7f060075;
public static final int materialize_baseline_grid_x3=0x7f060076;
public static final int materialize_baseline_grid_x4=0x7f060077;
public static final int materialize_baseline_grid_x5=0x7f060078;
public static final int materialize_baseline_grid_x6=0x7f060079;
public static final int materialize_baseline_grid_x7=0x7f06007a;
public static final int materialize_baseline_grid_x8=0x7f06007b;
public static final int materialize_baseline_grid_x9=0x7f06007c;
public static final int materialize_content_margin_with_icon=0x7f06007d;
public static final int materialize_icon=0x7f06007e;
public static final int materialize_listitem=0x7f06007f;
public static final int materialize_right_side_icon_margin=0x7f060080;
public static final int materialize_screen_edge=0x7f06006f;
public static final int materialize_spacing=0x7f060081;
public static final int materialize_statusbar=0x7f060082;
public static final int materialize_subtitle=0x7f060083;
public static final int materialize_toolbar=0x7f060084;
public static final int materialize_touch_target=0x7f060085;
public static final int materialize_typography_body1=0x7f060086;
public static final int materialize_typography_body2=0x7f060087;
public static final int materialize_typography_caption=0x7f060088;
public static final int materialize_typography_display1=0x7f060089;
public static final int materialize_typography_headline=0x7f06008a;
public static final int materialize_typography_subheading=0x7f06008b;
public static final int materialize_typography_title=0x7f06008c;
public static final int notification_action_icon_size=0x7f060064;
public static final int notification_action_text_size=0x7f060065;
public static final int notification_big_circle_margin=0x7f060066;
public static final int notification_content_margin_start=0x7f06001f;
public static final int notification_large_icon_height=0x7f060067;
public static final int notification_large_icon_width=0x7f060068;
public static final int notification_main_column_padding_top=0x7f060020;
public static final int notification_media_narrow_margin=0x7f060021;
public static final int notification_right_icon_size=0x7f060069;
public static final int notification_right_side_padding_top=0x7f06001d;
public static final int notification_small_icon_background_padding=0x7f06006a;
public static final int notification_small_icon_size_as_large=0x7f06006b;
public static final int notification_subtext_size=0x7f06006c;
public static final int notification_top_pad=0x7f06006d;
public static final int notification_top_pad_large_text=0x7f06006e;
public static final int place_autocomplete_button_padding=0x7f060000;
public static final int place_autocomplete_powered_by_google_height=0x7f060001;
public static final int place_autocomplete_powered_by_google_start=0x7f060002;
public static final int place_autocomplete_prediction_height=0x7f060003;
public static final int place_autocomplete_prediction_horizontal_margin=0x7f060004;
public static final int place_autocomplete_prediction_primary_text=0x7f060005;
public static final int place_autocomplete_prediction_secondary_text=0x7f060006;
public static final int place_autocomplete_progress_horizontal_margin=0x7f060007;
public static final int place_autocomplete_progress_size=0x7f060008;
public static final int place_autocomplete_separator_start=0x7f060009;
public static final int preference_icon_minWidth=0x7f0600b8;
public static final int preference_item_padding_inner=0x7f0600b9;
public static final int preference_item_padding_side=0x7f0600ba;
public static final int preference_widget_width=0x7f0600bb;
public static final int tool_bar_top_padding=0x7f060070;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_action_bar_item_background_material=0x7f020001;
public static final int abc_btn_borderless_material=0x7f020002;
public static final int abc_btn_check_material=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static final int abc_btn_colored_material=0x7f020006;
public static final int abc_btn_default_mtrl_shape=0x7f020007;
public static final int abc_btn_radio_material=0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static final int abc_cab_background_internal_bg=0x7f02000d;
public static final int abc_cab_background_top_material=0x7f02000e;
public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static final int abc_control_background_material=0x7f020010;
public static final int abc_dialog_material_background=0x7f020011;
public static final int abc_edit_text_material=0x7f020012;
public static final int abc_ic_ab_back_material=0x7f020013;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static final int abc_ic_clear_material=0x7f020015;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static final int abc_ic_go_search_api_material=0x7f020017;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_overflow_material=0x7f02001a;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static final int abc_ic_search_api_material=0x7f02001e;
public static final int abc_ic_star_black_16dp=0x7f02001f;
public static final int abc_ic_star_black_36dp=0x7f020020;
public static final int abc_ic_star_black_48dp=0x7f020021;
public static final int abc_ic_star_half_black_16dp=0x7f020022;
public static final int abc_ic_star_half_black_36dp=0x7f020023;
public static final int abc_ic_star_half_black_48dp=0x7f020024;
public static final int abc_ic_voice_search_api_material=0x7f020025;
public static final int abc_item_background_holo_dark=0x7f020026;
public static final int abc_item_background_holo_light=0x7f020027;
public static final int abc_list_divider_mtrl_alpha=0x7f020028;
public static final int abc_list_focused_holo=0x7f020029;
public static final int abc_list_longpressed_holo=0x7f02002a;
public static final int abc_list_pressed_holo_dark=0x7f02002b;
public static final int abc_list_pressed_holo_light=0x7f02002c;
public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static final int abc_list_selector_disabled_holo_light=0x7f020030;
public static final int abc_list_selector_holo_dark=0x7f020031;
public static final int abc_list_selector_holo_light=0x7f020032;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static final int abc_popup_background_mtrl_mult=0x7f020034;
public static final int abc_ratingbar_indicator_material=0x7f020035;
public static final int abc_ratingbar_material=0x7f020036;
public static final int abc_ratingbar_small_material=0x7f020037;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static final int abc_seekbar_thumb_material=0x7f02003d;
public static final int abc_seekbar_tick_mark_material=0x7f02003e;
public static final int abc_seekbar_track_material=0x7f02003f;
public static final int abc_spinner_mtrl_am_alpha=0x7f020040;
public static final int abc_spinner_textfield_background_material=0x7f020041;
public static final int abc_switch_thumb_material=0x7f020042;
public static final int abc_switch_track_mtrl_alpha=0x7f020043;
public static final int abc_tab_indicator_material=0x7f020044;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static final int abc_text_cursor_material=0x7f020046;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static final int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static final int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static final int abc_textfield_search_material=0x7f020051;
public static final int abc_vector_test=0x7f020052;
public static final int angle=0x7f020053;
public static final int angle2=0x7f020054;
public static final int background=0x7f020055;
public static final int bag=0x7f020056;
public static final int carpool_logo=0x7f020057;
public static final int circleangle=0x7f020058;
public static final int common_full_open_on_phone=0x7f020059;
public static final int common_google_signin_btn_icon_dark=0x7f02005a;
public static final int common_google_signin_btn_icon_dark_focused=0x7f02005b;
public static final int common_google_signin_btn_icon_dark_normal=0x7f02005c;
public static final int common_google_signin_btn_icon_dark_normal_background=0x7f02005d;
public static final int common_google_signin_btn_icon_disabled=0x7f02005e;
public static final int common_google_signin_btn_icon_light=0x7f02005f;
public static final int common_google_signin_btn_icon_light_focused=0x7f020060;
public static final int common_google_signin_btn_icon_light_normal=0x7f020061;
public static final int common_google_signin_btn_icon_light_normal_background=0x7f020062;
public static final int common_google_signin_btn_text_dark=0x7f020063;
public static final int common_google_signin_btn_text_dark_focused=0x7f020064;
public static final int common_google_signin_btn_text_dark_normal=0x7f020065;
public static final int common_google_signin_btn_text_dark_normal_background=0x7f020066;
public static final int common_google_signin_btn_text_disabled=0x7f020067;
public static final int common_google_signin_btn_text_light=0x7f020068;
public static final int common_google_signin_btn_text_light_focused=0x7f020069;
public static final int common_google_signin_btn_text_light_normal=0x7f02006a;
public static final int common_google_signin_btn_text_light_normal_background=0x7f02006b;
public static final int fri_off=0x7f02006c;
public static final int fri_on=0x7f02006d;
public static final int googleg_disabled_color_18=0x7f02006e;
public static final int googleg_standard_color_18=0x7f02006f;
public static final int ic_delete_black_24dp=0x7f020070;
public static final int ic_exit_to_app_black_24dp=0x7f020071;
public static final int icon=0x7f020072;
public static final int img=0x7f020073;
public static final int immaclogo=0x7f020074;
public static final int left=0x7f020075;
public static final int logo=0x7f020076;
public static final int material_drawer_badge=0x7f020077;
public static final int material_drawer_circle_mask=0x7f020078;
public static final int material_drawer_shadow_bottom=0x7f020079;
public static final int material_drawer_shadow_left=0x7f02007a;
public static final int material_drawer_shadow_right=0x7f02007b;
public static final int material_drawer_shadow_top=0x7f02007c;
public static final int mon_off=0x7f02007d;
public static final int mon_on=0x7f02007e;
public static final int notification_action_background=0x7f02007f;
public static final int notification_bg=0x7f020080;
public static final int notification_bg_low=0x7f020081;
public static final int notification_bg_low_normal=0x7f020082;
public static final int notification_bg_low_pressed=0x7f020083;
public static final int notification_bg_normal=0x7f020084;
public static final int notification_bg_normal_pressed=0x7f020085;
public static final int notification_icon_background=0x7f020086;
public static final int notification_template_icon_bg=0x7f0200b8;
public static final int notification_template_icon_low_bg=0x7f0200b9;
public static final int notification_tile_bg=0x7f020087;
public static final int notify_panel_notification_icon_bg=0x7f020088;
public static final int pasword=0x7f020089;
public static final int person=0x7f02008a;
public static final int places_ic_clear=0x7f02008b;
public static final int places_ic_search=0x7f02008c;
public static final int powered_by_google_dark=0x7f02008d;
public static final int powered_by_google_light=0x7f02008e;
public static final int profilebackground=0x7f02008f;
public static final int right_arrow2=0x7f020090;
public static final int right_arrow_small=0x7f020091;
public static final int sat_off=0x7f020092;
public static final int sat_on=0x7f020093;
public static final int sun_off=0x7f020094;
public static final int sun_on=0x7f020095;
public static final int switch_bg_disabled_holo_dark=0x7f020096;
public static final int switch_bg_disabled_holo_light=0x7f020097;
public static final int switch_bg_focused_holo_dark=0x7f020098;
public static final int switch_bg_focused_holo_light=0x7f020099;
public static final int switch_bg_holo_dark=0x7f02009a;
public static final int switch_bg_holo_light=0x7f02009b;
public static final int switch_inner_holo_dark=0x7f02009c;
public static final int switch_inner_holo_light=0x7f02009d;
public static final int switch_thumb_activated_holo_dark=0x7f02009e;
public static final int switch_thumb_activated_holo_light=0x7f02009f;
public static final int switch_thumb_disabled_holo_dark=0x7f0200a0;
public static final int switch_thumb_disabled_holo_light=0x7f0200a1;
public static final int switch_thumb_holo_dark=0x7f0200a2;
public static final int switch_thumb_holo_light=0x7f0200a3;
public static final int switch_thumb_holo_light_v2=0x7f0200a4;
public static final int switch_thumb_pressed_holo_dark=0x7f0200a5;
public static final int switch_thumb_pressed_holo_light=0x7f0200a6;
public static final int switch_track_holo_dark=0x7f0200a7;
public static final int switch_track_holo_light=0x7f0200a8;
public static final int thu_off=0x7f0200a9;
public static final int thu_on=0x7f0200aa;
public static final int timg=0x7f0200ab;
public static final int toggle_fri=0x7f0200ac;
public static final int toggle_mon=0x7f0200ad;
public static final int toggle_sat=0x7f0200ae;
public static final int toggle_sun=0x7f0200af;
public static final int toggle_thu=0x7f0200b0;
public static final int toggle_tue=0x7f0200b1;
public static final int toggle_wed=0x7f0200b2;
public static final int tue_off=0x7f0200b3;
public static final int tue_on=0x7f0200b4;
public static final int user=0x7f0200b5;
public static final int wed_off=0x7f0200b6;
public static final int wed_on=0x7f0200b7;
}
public static final class id {
public static final int Distance_layout=0x7f090106;
public static final int action0=0x7f0900ba;
public static final int action_bar=0x7f09005b;
public static final int action_bar_activity_content=0x7f090001;
public static final int action_bar_container=0x7f09005a;
public static final int action_bar_root=0x7f090056;
public static final int action_bar_spinner=0x7f090002;
public static final int action_bar_subtitle=0x7f090039;
public static final int action_bar_title=0x7f090038;
public static final int action_container=0x7f0900b7;
public static final int action_context_bar=0x7f09005c;
public static final int action_divider=0x7f0900be;
public static final int action_image=0x7f0900b8;
public static final int action_menu_divider=0x7f090003;
public static final int action_menu_presenter=0x7f090004;
public static final int action_mode_bar=0x7f090058;
public static final int action_mode_bar_stub=0x7f090057;
public static final int action_mode_close_button=0x7f09003a;
public static final int action_text=0x7f0900b9;
public static final int actions=0x7f0900c7;
public static final int activity_chooser_view_content=0x7f09003b;
public static final int add=0x7f09002c;
public static final int adjust_height=0x7f090017;
public static final int adjust_width=0x7f090018;
public static final int alertTitle=0x7f09004f;
public static final int always=0x7f090031;
public static final int arrivetime_layout=0x7f09007f;
public static final int auto=0x7f09001c;
public static final int availableSeat_layout=0x7f090103;
public static final int beginning=0x7f09002e;
public static final int bottom=0x7f090036;
public static final int btn_cancel=0x7f090070;
public static final int btn_submit=0x7f090071;
public static final int btn_tripcon_continue=0x7f09010c;
public static final int btn_tripcon_day_confirm=0x7f090079;
public static final int button=0x7f0900f9;
public static final int buttonPanel=0x7f090042;
public static final int button_accept=0x7f0900e1;
public static final int button_reject=0x7f0900e2;
public static final int button_update=0x7f09008b;
public static final int cancel_action=0x7f0900bb;
public static final int carbrand_layout=0x7f090091;
public static final int carmake=0x7f090086;
public static final int carmodel=0x7f090087;
public static final int carplate=0x7f090092;
public static final int checkbox=0x7f090052;
public static final int chronometer=0x7f0900c3;
public static final int collapseActionView=0x7f090032;
public static final int color=0x7f090088;
public static final int comment=0x7f09006f;
public static final int contentPanel=0x7f090045;
public static final int content_layout=0x7f0900b6;
public static final int cost_layout=0x7f09010a;
public static final int custom=0x7f09004c;
public static final int customPanel=0x7f09004b;
public static final int dark=0x7f09001d;
public static final int day=0x7f0900df;
public static final int day_layout=0x7f090081;
public static final int decor_content_parent=0x7f090059;
public static final int default_activity_button=0x7f09003e;
public static final int delete=0x7f09006b;
public static final int dest_layout=0x7f0900fe;
public static final int destination=0x7f0900de;
public static final int disableHome=0x7f090021;
public static final int driver_listview=0x7f0900ed;
public static final int driver_row_button=0x7f0900ec;
public static final int driver_row_day=0x7f0900e9;
public static final int driver_row_destination=0x7f0900e8;
public static final int driver_row_duration=0x7f0900eb;
public static final int driver_row_female=0x7f0900e3;
public static final int driver_row_name=0x7f0900e4;
public static final int driver_row_origin=0x7f0900e6;
public static final int driver_row_rating=0x7f0900e5;
public static final int driver_row_time=0x7f0900ea;
public static final int driver_row_to=0x7f0900e7;
public static final int duration=0x7f0900e0;
public static final int edit_query=0x7f09005d;
public static final int edittext_carplate=0x7f090089;
public static final int edittext_confirm_password=0x7f090080;
public static final int edittext_password=0x7f09007e;
public static final int edittext_phone=0x7f090082;
public static final int edittext_username=0x7f09007c;
public static final int end=0x7f09002f;
public static final int end_padder=0x7f0900cd;
public static final int et_login_password=0x7f090094;
public static final int et_login_username=0x7f090093;
public static final int expand_activities_button=0x7f09003c;
public static final int expanded_menu=0x7f090051;
public static final int female=0x7f0900db;
public static final int female_layout=0x7f090083;
public static final int gender=0x7f090090;
public static final int gender_layout=0x7f09008f;
public static final int googlemap=0x7f09009a;
public static final int home=0x7f090005;
public static final int homeAsUp=0x7f090022;
public static final int hybrid=0x7f090012;
public static final int icon=0x7f090040;
public static final int icon_group=0x7f0900c8;
public static final int icon_only=0x7f090019;
public static final int iconics_tag_id=0x7f090011;
public static final int ifRoom=0x7f090033;
public static final int image=0x7f09003d;
public static final int info=0x7f0900c4;
public static final int item_touch_helper_previous_elevation=0x7f090000;
public static final int layout_password=0x7f09007d;
public static final int light=0x7f09001e;
public static final int line1=0x7f0900c9;
public static final int line3=0x7f0900cb;
public static final int listMode=0x7f09001f;
public static final int list_item=0x7f09003f;
public static final int listview=0x7f0900da;
public static final int listview_background_shape=0x7f09012b;
public static final int lnlyt_tripcon_continue=0x7f090105;
public static final int loginlink=0x7f0900f5;
public static final int lower_container=0x7f0900fb;
public static final int lowerlayout=0x7f090085;
public static final int lowerlayout_btn=0x7f09008a;
public static final int main_rlayout=0x7f090098;
public static final int mapview=0x7f09009e;
public static final int material_drawer_account_header=0x7f0900a1;
public static final int material_drawer_account_header_background=0x7f0900a0;
public static final int material_drawer_account_header_current=0x7f0900a5;
public static final int material_drawer_account_header_email=0x7f0900a9;
public static final int material_drawer_account_header_name=0x7f0900a8;
public static final int material_drawer_account_header_small_first=0x7f0900a2;
public static final int material_drawer_account_header_small_second=0x7f0900a3;
public static final int material_drawer_account_header_small_third=0x7f0900a4;
public static final int material_drawer_account_header_text_section=0x7f0900a6;
public static final int material_drawer_account_header_text_switcher=0x7f0900a7;
public static final int material_drawer_animation=0x7f09000b;
public static final int material_drawer_badge=0x7f0900ac;
public static final int material_drawer_badge_container=0x7f0900af;
public static final int material_drawer_description=0x7f0900ae;
public static final int material_drawer_divider=0x7f0900aa;
public static final int material_drawer_email=0x7f0900b1;
public static final int material_drawer_icon=0x7f0900ab;
public static final int material_drawer_inner_shadow=0x7f0900b5;
public static final int material_drawer_layout=0x7f09009f;
public static final int material_drawer_menu_default_group=0x7f09000c;
public static final int material_drawer_name=0x7f0900ad;
public static final int material_drawer_profileIcon=0x7f0900b0;
public static final int material_drawer_profile_header=0x7f09000d;
public static final int material_drawer_shadow_top=0x7f0900b4;
public static final int material_drawer_slider_layout=0x7f09000e;
public static final int material_drawer_sticky_footer=0x7f09000f;
public static final int material_drawer_sticky_header=0x7f090010;
public static final int material_drawer_switch=0x7f0900b2;
public static final int material_drawer_toggle=0x7f0900b3;
public static final int materialize_root=0x7f09000a;
public static final int media_actions=0x7f0900bd;
public static final int member_layout=0x7f09007b;
public static final int middle=0x7f090030;
public static final int multiply=0x7f090027;
public static final int name=0x7f0900d8;
public static final int network_notification=0x7f090097;
public static final int never=0x7f090034;
public static final int none=0x7f090013;
public static final int normal=0x7f090014;
public static final int notification_background=0x7f0900c6;
public static final int notification_main_column=0x7f0900c0;
public static final int notification_main_column_container=0x7f0900bf;
public static final int origin=0x7f0900dc;
public static final int origin_layout=0x7f0900fc;
public static final int parentPanel=0x7f090044;
public static final int phone=0x7f09008e;
public static final int phone_layout=0x7f09008d;
public static final int place_autocomplete_clear_button=0x7f0900d0;
public static final int place_autocomplete_destination_fragment=0x7f09009d;
public static final int place_autocomplete_origin_fragment=0x7f09009c;
public static final int place_autocomplete_powered_by_google=0x7f0900d2;
public static final int place_autocomplete_prediction_primary_text=0x7f0900d4;
public static final int place_autocomplete_prediction_secondary_text=0x7f0900d5;
public static final int place_autocomplete_progress=0x7f0900d3;
public static final int place_autocomplete_search_button=0x7f0900ce;
public static final int place_autocomplete_search_input=0x7f0900cf;
public static final int place_autocomplete_separator=0x7f0900d1;
public static final int progress_circular=0x7f090006;
public static final int progress_horizontal=0x7f090007;
public static final int quit=0x7f09006c;
public static final int radio=0x7f090054;
public static final int rating=0x7f0900d9;
public static final int rating_layout=0x7f09006d;
public static final int ratingbar=0x7f09006e;
public static final int right_icon=0x7f0900c5;
public static final int right_side=0x7f0900c1;
public static final int row_layout=0x7f0900d7;
public static final int satellite=0x7f090015;
public static final int screen=0x7f090028;
public static final int scrollIndicatorDown=0x7f09004a;
public static final int scrollIndicatorUp=0x7f090046;
public static final int scrollView=0x7f090047;
public static final int search_badge=0x7f09005f;
public static final int search_bar=0x7f09005e;
public static final int search_button=0x7f090060;
public static final int search_close_btn=0x7f090065;
public static final int search_edit_frame=0x7f090061;
public static final int search_go_btn=0x7f090067;
public static final int search_mag_icon=0x7f090062;
public static final int search_plate=0x7f090063;
public static final int search_src_text=0x7f090064;
public static final int search_voice_btn=0x7f090068;
public static final int select_dialog_listview=0x7f090069;
public static final int shortcut=0x7f090053;
public static final int showCustom=0x7f090023;
public static final int showHome=0x7f090024;
public static final int showTitle=0x7f090025;
public static final int signinbtn=0x7f090095;
public static final int signup_account_type=0x7f0900f3;
public static final int signup_carcolor=0x7f0900f7;
public static final int signup_carmodel=0x7f0900f6;
public static final int signup_con_pswrd=0x7f0900f0;
public static final int signup_gender=0x7f0900f2;
public static final int signup_password=0x7f0900ef;
public static final int signup_phone=0x7f0900f1;
public static final int signup_username=0x7f0900ee;
public static final int signupbtn=0x7f0900f4;
public static final int signupcarbtn=0x7f0900f8;
public static final int signuplink=0x7f090096;
public static final int spacer=0x7f090043;
public static final int spinner_gender=0x7f090084;
public static final int spinner_seat=0x7f090104;
public static final int split_action_bar=0x7f090008;
public static final int src_atop=0x7f090029;
public static final int src_in=0x7f09002a;
public static final int src_over=0x7f09002b;
public static final int standard=0x7f09001a;
public static final int status_bar_latest_event_content=0x7f0900bc;
public static final int submenuarrow=0x7f090055;
public static final int submit_area=0x7f090066;
public static final int switchWidget=0x7f0900d6;
public static final int switch_femaleonly=0x7f090102;
public static final int tabMode=0x7f090020;
public static final int terrain=0x7f090016;
public static final int test_main_content=0x7f09009b;
public static final int text=0x7f0900cc;
public static final int text2=0x7f0900ca;
public static final int textSpacerNoButtons=0x7f090049;
public static final int textSpacerNoTitle=0x7f090048;
public static final int textview_arrivetime=0x7f090100;
public static final int textview_cost=0x7f09010b;
public static final int textview_day=0x7f090101;
public static final int textview_dest=0x7f0900ff;
public static final int textview_distance=0x7f090107;
public static final int textview_member=0x7f090111;
public static final int textview_member_title=0x7f090110;
public static final int textview_name=0x7f09006a;
public static final int textview_origin=0x7f0900fd;
public static final int textview_time=0x7f090109;
public static final int time=0x7f0900c2;
public static final int time_layout=0x7f090108;
public static final int title=0x7f090041;
public static final int titleDividerNoCustom=0x7f090050;
public static final int title_template=0x7f09004e;
public static final int to=0x7f0900dd;
public static final int togglebtn_fri=0x7f090076;
public static final int togglebtn_mon=0x7f090072;
public static final int togglebtn_sat=0x7f090077;
public static final int togglebtn_sun=0x7f090078;
public static final int togglebtn_thu=0x7f090075;
public static final int togglebtn_tue=0x7f090073;
public static final int togglebtn_wed=0x7f090074;
public static final int toolbar=0x7f090099;
public static final int top=0x7f090037;
public static final int topPanel=0x7f09004d;
public static final int tripPassDetailsRow_layout=0x7f09011f;
public static final int trip_driver_listview=0x7f09011e;
public static final int trip_driver_row_button=0x7f09011d;
public static final int trip_driver_row_cost=0x7f09011b;
public static final int trip_driver_row_day=0x7f090117;
public static final int trip_driver_row_destination=0x7f090116;
public static final int trip_driver_row_distance=0x7f090118;
public static final int trip_driver_row_duration=0x7f090119;
public static final int trip_driver_row_female=0x7f090113;
public static final int trip_driver_row_origin=0x7f090114;
public static final int trip_driver_row_seat=0x7f09011c;
public static final int trip_driver_row_time=0x7f09011a;
public static final int trip_driver_row_to=0x7f090115;
public static final int trip_pass_edit_edit_continue=0x7f090112;
public static final int trip_pass_edit_edit_dest_fragment=0x7f09010e;
public static final int trip_pass_edit_edit_origin_fragment=0x7f09010d;
public static final int trip_pass_edit_googlemap=0x7f09010f;
public static final int trip_pass_listview=0x7f09012a;
public static final int trip_row_button=0x7f090129;
public static final int trip_row_cost=0x7f090128;
public static final int trip_row_day=0x7f090124;
public static final int trip_row_destination=0x7f090123;
public static final int trip_row_distance=0x7f090125;
public static final int trip_row_duration=0x7f090126;
public static final int trip_row_female=0x7f090120;
public static final int trip_row_origin=0x7f090121;
public static final int trip_row_time=0x7f090127;
public static final int trip_row_to=0x7f090122;
public static final int up=0x7f090009;
public static final int upper_container=0x7f0900fa;
public static final int upperlayout=0x7f09007a;
public static final int useLogo=0x7f090026;
public static final int username=0x7f09008c;
public static final int wide=0x7f09001b;
public static final int withText=0x7f090035;
public static final int wrap_content=0x7f09002d;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f080001;
public static final int abc_config_activityShortDur=0x7f080002;
public static final int cancel_button_image_alpha=0x7f080003;
public static final int google_play_services_version=0x7f080000;
public static final int status_bar_notification_info_maxnum=0x7f080004;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f030000;
public static final int abc_action_bar_up_container=0x7f030001;
public static final int abc_action_bar_view_list_nav_layout=0x7f030002;
public static final int abc_action_menu_item_layout=0x7f030003;
public static final int abc_action_menu_layout=0x7f030004;
public static final int abc_action_mode_bar=0x7f030005;
public static final int abc_action_mode_close_item_material=0x7f030006;
public static final int abc_activity_chooser_view=0x7f030007;
public static final int abc_activity_chooser_view_list_item=0x7f030008;
public static final int abc_alert_dialog_button_bar_material=0x7f030009;
public static final int abc_alert_dialog_material=0x7f03000a;
public static final int abc_alert_dialog_title_material=0x7f03000b;
public static final int abc_dialog_title_material=0x7f03000c;
public static final int abc_expanded_menu_layout=0x7f03000d;
public static final int abc_list_menu_item_checkbox=0x7f03000e;
public static final int abc_list_menu_item_icon=0x7f03000f;
public static final int abc_list_menu_item_layout=0x7f030010;
public static final int abc_list_menu_item_radio=0x7f030011;
public static final int abc_popup_menu_header_item_layout=0x7f030012;
public static final int abc_popup_menu_item_layout=0x7f030013;
public static final int abc_screen_content_include=0x7f030014;
public static final int abc_screen_simple=0x7f030015;
public static final int abc_screen_simple_overlay_action_mode=0x7f030016;
public static final int abc_screen_toolbar=0x7f030017;
public static final int abc_search_dropdown_item_icons_2line=0x7f030018;
public static final int abc_search_view=0x7f030019;
public static final int abc_select_dialog_material=0x7f03001a;
public static final int custom_dialog_action=0x7f03001b;
public static final int custom_dialog_rating=0x7f03001c;
public static final int custom_spinner_edit_details=0x7f03001d;
public static final int custom_spinner_seat=0x7f03001e;
public static final int custom_spinner_signup=0x7f03001f;
public static final int daypickerdialog=0x7f030020;
public static final int driverdetails_edit=0x7f030021;
public static final int driverprofiledetail=0x7f030022;
public static final int login=0x7f030023;
public static final int main=0x7f030024;
public static final int mapviewfragment=0x7f030025;
public static final int material_drawer=0x7f030026;
public static final int material_drawer_compact_header=0x7f030027;
public static final int material_drawer_header=0x7f030028;
public static final int material_drawer_item_container=0x7f030029;
public static final int material_drawer_item_divider=0x7f03002a;
public static final int material_drawer_item_mini=0x7f03002b;
public static final int material_drawer_item_mini_profile=0x7f03002c;
public static final int material_drawer_item_primary=0x7f03002d;
public static final int material_drawer_item_profile=0x7f03002e;
public static final int material_drawer_item_profile_setting=0x7f03002f;
public static final int material_drawer_item_secondary=0x7f030030;
public static final int material_drawer_item_secondary_switch=0x7f030031;
public static final int material_drawer_item_secondary_toggle=0x7f030032;
public static final int material_drawer_item_section=0x7f030033;
public static final int material_drawer_item_switch=0x7f030034;
public static final int material_drawer_item_toggle=0x7f030035;
public static final int material_drawer_recycler_view=0x7f030036;
public static final int material_drawer_slider=0x7f030037;
public static final int materialize=0x7f030038;
public static final int notification_action=0x7f030039;
public static final int notification_action_tombstone=0x7f03003a;
public static final int notification_media_action=0x7f03003b;
public static final int notification_media_cancel_action=0x7f03003c;
public static final int notification_template_big_media=0x7f03003d;
public static final int notification_template_big_media_custom=0x7f03003e;
public static final int notification_template_big_media_narrow=0x7f03003f;
public static final int notification_template_big_media_narrow_custom=0x7f030040;
public static final int notification_template_custom_big=0x7f030041;
public static final int notification_template_icon_group=0x7f030042;
public static final int notification_template_lines_media=0x7f030043;
public static final int notification_template_media=0x7f030044;
public static final int notification_template_media_custom=0x7f030045;
public static final int notification_template_part_chronometer=0x7f030046;
public static final int notification_template_part_time=0x7f030047;
public static final int passengerdetails_edit=0x7f030048;
public static final int place_autocomplete_fragment=0x7f030049;
public static final int place_autocomplete_item_powered_by_google=0x7f03004a;
public static final int place_autocomplete_item_prediction=0x7f03004b;
public static final int place_autocomplete_progress=0x7f03004c;
public static final int preference=0x7f03004d;
public static final int preference_widget_switch=0x7f03004e;
public static final int ratedetailsrow=0x7f03004f;
public static final int ratelistview=0x7f030050;
public static final int requestdetailsrow=0x7f030051;
public static final int requestlistview=0x7f030052;
public static final int searchdriverdetailsrow=0x7f030053;
public static final int searchdriverlistview=0x7f030054;
public static final int select_dialog_item_material=0x7f030055;
public static final int select_dialog_multichoice_material=0x7f030056;
public static final int select_dialog_singlechoice_material=0x7f030057;
public static final int signup=0x7f030058;
public static final int signup_car=0x7f030059;
public static final int startroute=0x7f03005a;
public static final int support_simple_spinner_dropdown_item=0x7f03005b;
public static final int tool_bar=0x7f03005c;
public static final int tripconfirmation_1=0x7f03005d;
public static final int tripdetailsrow_edit=0x7f03005e;
public static final int tripdriverdetailsrow=0x7f03005f;
public static final int tripdriverlistview=0x7f030060;
public static final int trippassdetailsrow=0x7f030061;
public static final int trippasslistview=0x7f030062;
}
public static final class string {
public static final int ApplicationName=0x7f07005e;
public static final int AzureAPI=0x7f070068;
public static final int Drawer_Item_About=0x7f070065;
public static final int Drawer_Item_Logout=0x7f070066;
public static final int Drawer_Item_Trips=0x7f070064;
public static final int GoogleKey=0x7f070067;
public static final int Hello=0x7f07005d;
public static final int PreferenceFileName=0x7f07005f;
public static final int PreferenceFileNameActivity=0x7f070061;
public static final int PreferenceSavedActivity=0x7f070062;
public static final int PreferenceSavedMember=0x7f070060;
public static final int PreferenceSavedTrip=0x7f070063;
public static final int RestAPIBaseAddress=0x7f070069;
public static final int abc_action_bar_home_description=0x7f070013;
public static final int abc_action_bar_home_description_format=0x7f070014;
public static final int abc_action_bar_home_subtitle_description_format=0x7f070015;
public static final int abc_action_bar_up_description=0x7f070016;
public static final int abc_action_menu_overflow_description=0x7f070017;
public static final int abc_action_mode_done=0x7f070018;
public static final int abc_activity_chooser_view_see_all=0x7f070019;
public static final int abc_activitychooserview_choose_application=0x7f07001a;
public static final int abc_capital_off=0x7f07001b;
public static final int abc_capital_on=0x7f07001c;
public static final int abc_font_family_body_1_material=0x7f070028;
public static final int abc_font_family_body_2_material=0x7f070029;
public static final int abc_font_family_button_material=0x7f07002a;
public static final int abc_font_family_caption_material=0x7f07002b;
public static final int abc_font_family_display_1_material=0x7f07002c;
public static final int abc_font_family_display_2_material=0x7f07002d;
public static final int abc_font_family_display_3_material=0x7f07002e;
public static final int abc_font_family_display_4_material=0x7f07002f;
public static final int abc_font_family_headline_material=0x7f070030;
public static final int abc_font_family_menu_material=0x7f070031;
public static final int abc_font_family_subhead_material=0x7f070032;
public static final int abc_font_family_title_material=0x7f070033;
public static final int abc_search_hint=0x7f07001d;
public static final int abc_searchview_description_clear=0x7f07001e;
public static final int abc_searchview_description_query=0x7f07001f;
public static final int abc_searchview_description_search=0x7f070020;
public static final int abc_searchview_description_submit=0x7f070021;
public static final int abc_searchview_description_voice=0x7f070022;
public static final int abc_shareactionprovider_share_with=0x7f070023;
public static final int abc_shareactionprovider_share_with_application=0x7f070024;
public static final int abc_toolbar_collapse_description=0x7f070025;
public static final int action_settings=0x7f07006a;
/** Buttons strings
*/
public static final int add_geofences=0x7f07006d;
/** Geofencing string
*/
public static final int app_name=0x7f070050;
public static final int common_google_play_services_enable_button=0x7f070002;
public static final int common_google_play_services_enable_text=0x7f070003;
public static final int common_google_play_services_enable_title=0x7f070004;
public static final int common_google_play_services_install_button=0x7f070005;
public static final int common_google_play_services_install_text=0x7f070006;
public static final int common_google_play_services_install_title=0x7f070007;
public static final int common_google_play_services_notification_ticker=0x7f070008;
public static final int common_google_play_services_unknown_issue=0x7f070012;
public static final int common_google_play_services_unsupported_text=0x7f070009;
public static final int common_google_play_services_update_button=0x7f07000a;
public static final int common_google_play_services_update_text=0x7f07000b;
public static final int common_google_play_services_update_title=0x7f07000c;
public static final int common_google_play_services_updating_text=0x7f07000d;
public static final int common_google_play_services_wear_update_text=0x7f07000e;
public static final int common_open_on_phone=0x7f07000f;
public static final int common_signin_button_text=0x7f070010;
public static final int common_signin_button_text_long=0x7f070011;
public static final int define_AndroidIconics=0x7f070051;
public static final int define_materialdrawer=0x7f070040;
public static final int define_materialize=0x7f070034;
public static final int geofence_not_available=0x7f070072;
public static final int geofence_too_many_geofences=0x7f070073;
public static final int geofence_too_many_pending_intents=0x7f070074;
/** Transition type strings
*/
public static final int geofence_transition_entered=0x7f070077;
public static final int geofence_transition_exited=0x7f070078;
public static final int geofence_transition_invalid_type=0x7f070076;
public static final int geofence_transition_notification_text=0x7f07007a;
public static final int geofences_added=0x7f07006f;
public static final int geofences_removed=0x7f070070;
public static final int library_AndroidIconics_author=0x7f070052;
public static final int library_AndroidIconics_authorWebsite=0x7f070053;
public static final int library_AndroidIconics_isOpenSource=0x7f070054;
public static final int library_AndroidIconics_libraryDescription=0x7f070055;
public static final int library_AndroidIconics_libraryName=0x7f070056;
public static final int library_AndroidIconics_libraryVersion=0x7f070057;
public static final int library_AndroidIconics_libraryWebsite=0x7f070058;
public static final int library_AndroidIconics_licenseId=0x7f070059;
public static final int library_AndroidIconics_owner=0x7f07005a;
public static final int library_AndroidIconics_repositoryLink=0x7f07005b;
public static final int library_AndroidIconics_year=0x7f07005c;
public static final int library_materialdrawer_author=0x7f070041;
public static final int library_materialdrawer_authorWebsite=0x7f070042;
public static final int library_materialdrawer_isOpenSource=0x7f070043;
public static final int library_materialdrawer_libraryDescription=0x7f070044;
public static final int library_materialdrawer_libraryName=0x7f070045;
public static final int library_materialdrawer_libraryVersion=0x7f070046;
public static final int library_materialdrawer_libraryWebsite=0x7f070047;
public static final int library_materialdrawer_licenseId=0x7f070048;
public static final int library_materialdrawer_owner=0x7f070049;
public static final int library_materialdrawer_repositoryLink=0x7f07004a;
public static final int library_materialdrawer_year=0x7f07004b;
public static final int library_materialize_author=0x7f070035;
public static final int library_materialize_authorWebsite=0x7f070036;
public static final int library_materialize_isOpenSource=0x7f070037;
public static final int library_materialize_libraryDescription=0x7f070038;
public static final int library_materialize_libraryName=0x7f070039;
public static final int library_materialize_libraryVersion=0x7f07003a;
public static final int library_materialize_libraryWebsite=0x7f07003b;
public static final int library_materialize_licenseId=0x7f07003c;
public static final int library_materialize_owner=0x7f07003d;
public static final int library_materialize_repositoryLink=0x7f07003e;
public static final int library_materialize_year=0x7f07003f;
public static final int material_drawer_close=0x7f07004c;
public static final int material_drawer_open=0x7f07004d;
/** Error strings
*/
public static final int not_connected=0x7f070071;
public static final int place_autocomplete_clear_button=0x7f070000;
public static final int place_autocomplete_search_hint=0x7f070001;
public static final int remove_geofences=0x7f07006e;
public static final int search_menu_title=0x7f070026;
public static final int status_bar_notification_info_overflow=0x7f070027;
public static final int switch_off=0x7f07004e;
public static final int switch_on=0x7f07004f;
public static final int title_activity_main=0x7f07006c;
public static final int title_activity_show_geofence_transitions=0x7f07006b;
public static final int unknown_geofence_error=0x7f070075;
public static final int unknown_geofence_transition=0x7f070079;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0a009f;
public static final int AlertDialog_AppCompat_Light=0x7f0a00a0;
public static final int Animation_AppCompat_Dialog=0x7f0a00a1;
public static final int Animation_AppCompat_DropDownUp=0x7f0a00a2;
public static final int Base_AlertDialog_AppCompat=0x7f0a00a3;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0a00a4;
public static final int Base_Animation_AppCompat_Dialog=0x7f0a00a5;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0a00a6;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0a00a7;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0a00a8;
public static final int Base_TextAppearance_AppCompat=0x7f0a003f;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0a0040;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0a0041;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0a0027;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0a0042;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0a0043;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0a0044;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0a0045;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0a0046;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0a0047;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0a000b;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0a0048;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0a000c;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a0049;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a004a;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0a004b;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0a000d;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0a004c;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0a00a9;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a004d;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0a004e;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0a004f;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0a000e;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0a0050;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0a000f;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0a0051;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0a0010;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a0094;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a0052;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a0053;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a0054;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a0055;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a0056;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a0057;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0a0058;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a009b;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a009c;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a0095;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00aa;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a0059;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a005a;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a005b;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0a005c;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a005d;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00ab;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a005e;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a005f;
public static final int Base_Theme_AppCompat=0x7f0a0060;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0a00ac;
public static final int Base_Theme_AppCompat_Dialog=0x7f0a0011;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0a0012;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0a00ad;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0a0013;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0a0001;
public static final int Base_Theme_AppCompat_Light=0x7f0a0061;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0a00ae;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0a0014;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0a0015;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0a00af;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a0016;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0a0002;
public static final int Base_ThemeOverlay_AppCompat=0x7f0a00b0;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0a00b1;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0a00b2;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a00b3;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0a0017;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a0018;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0a00b4;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0a0019;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0a001a;
public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0a001b;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0a0023;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f0a0024;
public static final int Base_V21_Theme_AppCompat=0x7f0a0062;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0a0063;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0a0064;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0a0065;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0a0066;
public static final int Base_V22_Theme_AppCompat=0x7f0a0092;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0a0093;
public static final int Base_V23_Theme_AppCompat=0x7f0a0096;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0a0097;
public static final int Base_V7_Theme_AppCompat=0x7f0a00b5;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0a00b6;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0a00b7;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0a00b8;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0a00b9;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0a00ba;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0a00bb;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0a00bc;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0a00bd;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0a00be;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0a0067;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0a0068;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0a0069;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0a006a;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0a006b;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0a00bf;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0a00c0;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0a0025;
public static final int Base_Widget_AppCompat_Button=0x7f0a006c;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0a006d;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0a006e;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a00c1;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0a0098;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0a006f;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0a0070;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a00c2;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0a0071;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0a0072;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0a00c3;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0a0000;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0a00c4;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0a0073;
public static final int Base_Widget_AppCompat_EditText=0x7f0a0026;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0a0074;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0a00c5;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0a00c6;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a00c7;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0075;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0076;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0077;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0a0078;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0079;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0a00c8;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0a007a;
public static final int Base_Widget_AppCompat_ListView=0x7f0a007b;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0a007c;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0a007d;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0a007e;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0a007f;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0a00c9;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0a001c;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0a001d;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0a0080;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0a0099;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0a009a;
public static final int Base_Widget_AppCompat_SearchView=0x7f0a00ca;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0a00cb;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0a0081;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0a00cc;
public static final int Base_Widget_AppCompat_Spinner=0x7f0a0082;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0a0003;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0a0083;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0a00cd;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a0084;
public static final int BezelImageView=0x7f0a0178;
public static final int Material_DrawerArrowStyle=0x7f0a0170;
public static final int Material_Light_DrawerArrowStyle=0x7f0a0171;
/** Material specific values
*/
public static final int MaterialBaseBaseTheme=0x7f0a0172;
/** Material specific values
*/
public static final int MaterialBaseBaseTheme_Light=0x7f0a0173;
/** Material specific values
*/
public static final int MaterialBaseBaseTheme_Light_DarkToolbar=0x7f0a0174;
/**
<item name="android:dialogTheme">@style/MaterialBaseTheme.Dialog</item>
<item name="android:alertDialogTheme">@style/MaterialBaseTheme.AlertDialog</item>
*/
public static final int MaterialBaseTheme=0x7f0a015f;
public static final int MaterialBaseTheme_AlertDialog=0x7f0a0160;
public static final int MaterialBaseTheme_Dialog=0x7f0a0161;
/**
<item name="android:dialogTheme">@style/MaterialBaseTheme.Light.Dialog</item>
<item name="android:alertDialogTheme">@style/MaterialBaseTheme.Light.AlertDialog</item>
*/
public static final int MaterialBaseTheme_Light=0x7f0a0162;
public static final int MaterialBaseTheme_Light_AlertDialog=0x7f0a0163;
/**
<item name="android:dialogTheme">@style/MaterialBaseTheme.Light.Dialog</item>
<item name="android:alertDialogTheme">@style/MaterialBaseTheme.Light.AlertDialog</item>
*/
public static final int MaterialBaseTheme_Light_DarkToolbar=0x7f0a0164;
public static final int MaterialBaseTheme_Light_Dialog=0x7f0a0165;
public static final int MaterialDrawer_DrawerArrowStyle=0x7f0a0179;
public static final int MaterialDrawer_Light_DrawerArrowStyle=0x7f0a017a;
public static final int MaterialDrawerTheme=0x7f0a017b;
public static final int MaterialDrawerTheme_ActionBar=0x7f0a017c;
public static final int MaterialDrawerTheme_ActionBar_TranslucentStatus=0x7f0a017d;
public static final int MaterialDrawerTheme_Light=0x7f0a017e;
public static final int MaterialDrawerTheme_Light_ActionBar=0x7f0a017f;
public static final int MaterialDrawerTheme_Light_ActionBar_TranslucentStatus=0x7f0a0180;
public static final int MaterialDrawerTheme_Light_DarkToolbar=0x7f0a0181;
public static final int MaterialDrawerTheme_Light_DarkToolbar_ActionBar=0x7f0a0182;
public static final int MaterialDrawerTheme_Light_DarkToolbar_ActionBar_TranslucentStatus=0x7f0a0183;
public static final int MaterialDrawerTheme_Light_DarkToolbar_TranslucentStatus=0x7f0a0184;
public static final int MaterialDrawerTheme_Light_TranslucentStatus=0x7f0a0185;
public static final int MaterialDrawerTheme_TranslucentStatus=0x7f0a0186;
public static final int MaterialTheme=0x7f0a0175;
public static final int MaterialTheme_ActionBar=0x7f0a0166;
public static final int MaterialTheme_ActionBar_TranslucentStatus=0x7f0a0169;
public static final int MaterialTheme_Light=0x7f0a0176;
public static final int MaterialTheme_Light_ActionBar=0x7f0a0167;
public static final int MaterialTheme_Light_ActionBar_DarkToolbar_TranslucentStatus=0x7f0a016f;
public static final int MaterialTheme_Light_ActionBar_TranslucentStatus=0x7f0a016a;
public static final int MaterialTheme_Light_DarkToolbar=0x7f0a0177;
public static final int MaterialTheme_Light_DarkToolbar_ActionBar=0x7f0a0168;
public static final int MaterialTheme_Light_DarkToolbar_ActionBar_TranslucentStatus=0x7f0a016b;
public static final int MaterialTheme_Light_DarkToolbar_TranslucentStatus=0x7f0a016c;
public static final int MaterialTheme_Light_TranslucentStatus=0x7f0a016d;
public static final int MaterialTheme_TranslucentStatus=0x7f0a016e;
/**
Base application theme for API 21+. This theme replaces
MyTheme from resources/values/styles.xml on API 21+ devices.
*/
public static final int MyTheme=0x7f0a018c;
/** Base theme applied no matter what API
You can also set colorControlNormal, colorControlActivated
colorControlHighlight and colorSwitchThumbNormal.
*/
public static final int MyTheme_Base=0x7f0a018d;
public static final int Platform_AppCompat=0x7f0a001e;
public static final int Platform_AppCompat_Light=0x7f0a001f;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0a0085;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0a0086;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0a0087;
public static final int Platform_V11_AppCompat=0x7f0a0020;
public static final int Platform_V11_AppCompat_Light=0x7f0a0021;
public static final int Platform_V14_AppCompat=0x7f0a0028;
public static final int Platform_V14_AppCompat_Light=0x7f0a0029;
public static final int Platform_V21_AppCompat=0x7f0a0088;
public static final int Platform_V21_AppCompat_Light=0x7f0a0089;
public static final int Platform_V25_AppCompat=0x7f0a009d;
public static final int Platform_V25_AppCompat_Light=0x7f0a009e;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0a0022;
public static final int Preference_SwitchPreference=0x7f0a0187;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0a0031;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0a0032;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0a0033;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0a0034;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0a0035;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0a0036;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0a0037;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0a0038;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0a0039;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0a003a;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0a003b;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0a003c;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0a003d;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0a003e;
public static final int TextAppearance_AppCompat=0x7f0a00ce;
public static final int TextAppearance_AppCompat_Body1=0x7f0a00cf;
public static final int TextAppearance_AppCompat_Body2=0x7f0a00d0;
public static final int TextAppearance_AppCompat_Button=0x7f0a00d1;
public static final int TextAppearance_AppCompat_Caption=0x7f0a00d2;
public static final int TextAppearance_AppCompat_Display1=0x7f0a00d3;
public static final int TextAppearance_AppCompat_Display2=0x7f0a00d4;
public static final int TextAppearance_AppCompat_Display3=0x7f0a00d5;
public static final int TextAppearance_AppCompat_Display4=0x7f0a00d6;
public static final int TextAppearance_AppCompat_Headline=0x7f0a00d7;
public static final int TextAppearance_AppCompat_Inverse=0x7f0a00d8;
public static final int TextAppearance_AppCompat_Large=0x7f0a00d9;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0a00da;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0a00db;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0a00dc;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0a00dd;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0a00de;
public static final int TextAppearance_AppCompat_Medium=0x7f0a00df;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0a00e0;
public static final int TextAppearance_AppCompat_Menu=0x7f0a00e1;
public static final int TextAppearance_AppCompat_Notification=0x7f0a002a;
public static final int TextAppearance_AppCompat_Notification_Info=0x7f0a008a;
public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0a008b;
public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0a00e2;
public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0a00e3;
public static final int TextAppearance_AppCompat_Notification_Media=0x7f0a008c;
public static final int TextAppearance_AppCompat_Notification_Time=0x7f0a008d;
public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0a008e;
public static final int TextAppearance_AppCompat_Notification_Title=0x7f0a002b;
public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0a008f;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0a00e4;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0a00e5;
public static final int TextAppearance_AppCompat_Small=0x7f0a00e6;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0a00e7;
public static final int TextAppearance_AppCompat_Subhead=0x7f0a00e8;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0a00e9;
public static final int TextAppearance_AppCompat_Title=0x7f0a00ea;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0a00eb;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0a00ec;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0a00ed;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0a00ee;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0a00ef;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0a00f0;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0a00f1;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0a00f2;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0a00f3;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0a00f4;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0a00f5;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0a00f6;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0a00f7;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0a00f8;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0a00f9;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0a00fa;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0a00fb;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0a00fc;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0a00fd;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0a00fe;
public static final int TextAppearance_Holo_Light_Widget_Switch=0x7f0a0188;
public static final int TextAppearance_Holo_Widget_Switch=0x7f0a0189;
public static final int TextAppearance_StatusBar_EventContent=0x7f0a002c;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0a002d;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0a002e;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0a002f;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0a0030;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0a00ff;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0a0100;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0a0101;
public static final int Theme_AppCompat=0x7f0a0102;
public static final int Theme_AppCompat_CompactMenu=0x7f0a0103;
public static final int Theme_AppCompat_DayNight=0x7f0a0004;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0a0005;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f0a0006;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0a0007;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0a0008;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0a0009;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0a000a;
public static final int Theme_AppCompat_Dialog=0x7f0a0104;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0a0105;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0a0106;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0a0107;
public static final int Theme_AppCompat_Light=0x7f0a0108;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0a0109;
public static final int Theme_AppCompat_Light_Dialog=0x7f0a010a;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0a010b;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0a010c;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0a010d;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0a010e;
public static final int Theme_AppCompat_NoActionBar=0x7f0a010f;
public static final int ThemeOverlay_AppCompat=0x7f0a0110;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0a0111;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0a0112;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0a0113;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f0a0114;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0a0115;
public static final int ThemeOverlay_AppCompat_Light=0x7f0a0116;
public static final int Widget_AppCompat_ActionBar=0x7f0a0117;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0a0118;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0a0119;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0a011a;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0a011b;
public static final int Widget_AppCompat_ActionButton=0x7f0a011c;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0a011d;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0a011e;
public static final int Widget_AppCompat_ActionMode=0x7f0a011f;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0a0120;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0a0121;
public static final int Widget_AppCompat_Button=0x7f0a0122;
public static final int Widget_AppCompat_Button_Borderless=0x7f0a0123;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0a0124;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0a0125;
public static final int Widget_AppCompat_Button_Colored=0x7f0a0126;
public static final int Widget_AppCompat_Button_Small=0x7f0a0127;
public static final int Widget_AppCompat_ButtonBar=0x7f0a0128;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0a0129;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0a012a;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0a012b;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0a012c;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0a012d;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0a012e;
public static final int Widget_AppCompat_EditText=0x7f0a012f;
public static final int Widget_AppCompat_ImageButton=0x7f0a0130;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0a0131;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0a0132;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0a0133;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0a0134;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0a0135;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0a0136;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0a0137;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0a0138;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0a0139;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0a013a;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0a013b;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0a013c;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0a013d;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0a013e;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0a013f;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0a0140;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0a0141;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0a0142;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0a0143;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0a0144;
public static final int Widget_AppCompat_Light_SearchView=0x7f0a0145;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0a0146;
public static final int Widget_AppCompat_ListMenuView=0x7f0a0147;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0a0148;
public static final int Widget_AppCompat_ListView=0x7f0a0149;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0a014a;
public static final int Widget_AppCompat_ListView_Menu=0x7f0a014b;
public static final int Widget_AppCompat_NotificationActionContainer=0x7f0a0090;
public static final int Widget_AppCompat_NotificationActionText=0x7f0a0091;
public static final int Widget_AppCompat_PopupMenu=0x7f0a014c;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0a014d;
public static final int Widget_AppCompat_PopupWindow=0x7f0a014e;
public static final int Widget_AppCompat_ProgressBar=0x7f0a014f;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0a0150;
public static final int Widget_AppCompat_RatingBar=0x7f0a0151;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0a0152;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0a0153;
public static final int Widget_AppCompat_SearchView=0x7f0a0154;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0a0155;
public static final int Widget_AppCompat_SeekBar=0x7f0a0156;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0a0157;
public static final int Widget_AppCompat_Spinner=0x7f0a0158;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0a0159;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0a015a;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0a015b;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0a015c;
public static final int Widget_AppCompat_Toolbar=0x7f0a015d;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0a015e;
public static final int Widget_Holo_CompoundButton_Switch=0x7f0a018a;
public static final int Widget_Holo_Light_CompoundButton_Switch=0x7f0a018b;
}
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 CHARE_System.CHARE_System:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit CHARE_System.CHARE_System:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked CHARE_System.CHARE_System:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd CHARE_System.CHARE_System:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions CHARE_System.CHARE_System:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft CHARE_System.CHARE_System:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight CHARE_System.CHARE_System:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart CHARE_System.CHARE_System:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation CHARE_System.CHARE_System:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout CHARE_System.CHARE_System:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions CHARE_System.CHARE_System:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider CHARE_System.CHARE_System:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation CHARE_System.CHARE_System:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height CHARE_System.CHARE_System:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll CHARE_System.CHARE_System:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator CHARE_System.CHARE_System:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout CHARE_System.CHARE_System:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon CHARE_System.CHARE_System:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle CHARE_System.CHARE_System:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding CHARE_System.CHARE_System:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo CHARE_System.CHARE_System:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode CHARE_System.CHARE_System:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme CHARE_System.CHARE_System:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding CHARE_System.CHARE_System:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle CHARE_System.CHARE_System:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle CHARE_System.CHARE_System:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle CHARE_System.CHARE_System:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title CHARE_System.CHARE_System:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle CHARE_System.CHARE_System: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 = {
0x7f010022, 0x7f010024, 0x7f010025, 0x7f010026,
0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a,
0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e,
0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032,
0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036,
0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a,
0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e,
0x7f01007e
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity = 0;
/** Attributes that can be used with a ActionMenuItemView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
</table>
@see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView = {
0x0101013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ActionMenuItemView} array.
@attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background CHARE_System.CHARE_System:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit CHARE_System.CHARE_System:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout CHARE_System.CHARE_System:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height CHARE_System.CHARE_System:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle CHARE_System.CHARE_System:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle CHARE_System.CHARE_System: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 = {
0x7f010022, 0x7f010028, 0x7f010029, 0x7f01002d,
0x7f01002f, 0x7f01003f
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable CHARE_System.CHARE_System:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount CHARE_System.CHARE_System:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010040, 0x7f010041
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout CHARE_System.CHARE_System:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout CHARE_System.CHARE_System:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout CHARE_System.CHARE_System:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout CHARE_System.CHARE_System:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle CHARE_System.CHARE_System:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout CHARE_System.CHARE_System: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, 0x7f010042, 0x7f010043, 0x7f010044,
0x7f010045, 0x7f010046, 0x7f010047
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static final int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a Android.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Android_android_textColor android:textColor}</code></td><td> Text color.</td></tr>
<tr><td><code>{@link #Android_android_textColorHighlight android:textColorHighlight}</code></td><td> Color of the text selection highlight.</td></tr>
<tr><td><code>{@link #Android_android_textColorHint android:textColorHint}</code></td><td> Color of the hint text.</td></tr>
<tr><td><code>{@link #Android_android_textColorLink android:textColorLink}</code></td><td> Color of the links.</td></tr>
<tr><td><code>{@link #Android_android_textSize android:textSize}</code></td><td> Size of the text.</td></tr>
<tr><td><code>{@link #Android_android_textStyle android:textStyle}</code></td><td> Style (bold, italic, bolditalic) for the text.</td></tr>
<tr><td><code>{@link #Android_android_typeface android:typeface}</code></td><td> Typeface (normal, sans, serif, monospace) for the text.</td></tr>
</table>
@see #Android_android_textColor
@see #Android_android_textColorHighlight
@see #Android_android_textColorHint
@see #Android_android_textColorLink
@see #Android_android_textSize
@see #Android_android_textStyle
@see #Android_android_typeface
*/
public static final int[] Android = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x01010099, 0x0101009a, 0x0101009b
};
/**
<p>
@attr description
Text color.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#textColor}.
@attr name android:textColor
*/
public static final int Android_android_textColor = 3;
/**
<p>
@attr description
Color of the text selection highlight.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#textColorHighlight}.
@attr name android:textColorHighlight
*/
public static final int Android_android_textColorHighlight = 4;
/**
<p>
@attr description
Color of the hint text.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#textColorHint}.
@attr name android:textColorHint
*/
public static final int Android_android_textColorHint = 5;
/**
<p>
@attr description
Color of the links.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#textColorLink}.
@attr name android:textColorLink
*/
public static final int Android_android_textColorLink = 6;
/**
<p>
@attr description
Size of the text. Recommended dimension type for text is "sp" for scaled-pixels (example: 15sp).
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#textSize}.
@attr name android:textSize
*/
public static final int Android_android_textSize = 0;
/**
<p>
@attr description
Style (bold, italic, bolditalic) for the text.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#textStyle}.
@attr name android:textStyle
*/
public static final int Android_android_textStyle = 2;
/**
<p>
@attr description
Typeface (normal, sans, serif, monospace) for the text.
<p>This corresponds to the global attribute
resource symbol {@link android.R.attr#typeface}.
@attr name android:typeface
*/
public static final int Android_android_typeface = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat CHARE_System.CHARE_System:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint CHARE_System.CHARE_System:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode CHARE_System.CHARE_System:tintMode}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
@see #AppCompatImageView_tint
@see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010048, 0x7f010049, 0x7f01004a
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static final int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#tint}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:tint
*/
public static final int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#tintMode}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:tintMode
*/
public static final int AppCompatImageView_tintMode = 3;
/** Attributes that can be used with a AppCompatSeekBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMark CHARE_System.CHARE_System:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint CHARE_System.CHARE_System:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode CHARE_System.CHARE_System: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, 0x7f01004b, 0x7f01004c, 0x7f01004d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps CHARE_System.CHARE_System:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f01004e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name CHARE_System.CHARE_System:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider CHARE_System.CHARE_System:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground CHARE_System.CHARE_System:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme CHARE_System.CHARE_System:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize CHARE_System.CHARE_System:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle CHARE_System.CHARE_System:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle CHARE_System.CHARE_System:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle CHARE_System.CHARE_System:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle CHARE_System.CHARE_System:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle CHARE_System.CHARE_System:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme CHARE_System.CHARE_System:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme CHARE_System.CHARE_System:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle CHARE_System.CHARE_System:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle CHARE_System.CHARE_System:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance CHARE_System.CHARE_System:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor CHARE_System.CHARE_System:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground CHARE_System.CHARE_System:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle CHARE_System.CHARE_System:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable CHARE_System.CHARE_System:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable CHARE_System.CHARE_System:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable CHARE_System.CHARE_System:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable CHARE_System.CHARE_System:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable CHARE_System.CHARE_System:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle CHARE_System.CHARE_System:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable CHARE_System.CHARE_System:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable CHARE_System.CHARE_System:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground CHARE_System.CHARE_System:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle CHARE_System.CHARE_System:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable CHARE_System.CHARE_System:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle CHARE_System.CHARE_System:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle CHARE_System.CHARE_System:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle CHARE_System.CHARE_System:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle CHARE_System.CHARE_System:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons CHARE_System.CHARE_System:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle CHARE_System.CHARE_System:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme CHARE_System.CHARE_System:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle CHARE_System.CHARE_System:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle CHARE_System.CHARE_System:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle CHARE_System.CHARE_System:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle CHARE_System.CHARE_System:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle CHARE_System.CHARE_System:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle CHARE_System.CHARE_System:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle CHARE_System.CHARE_System:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle CHARE_System.CHARE_System:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall CHARE_System.CHARE_System:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle CHARE_System.CHARE_System:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle CHARE_System.CHARE_System:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent CHARE_System.CHARE_System:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating CHARE_System.CHARE_System:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal CHARE_System.CHARE_System:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated CHARE_System.CHARE_System:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight CHARE_System.CHARE_System:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal CHARE_System.CHARE_System:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary CHARE_System.CHARE_System:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark CHARE_System.CHARE_System:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal CHARE_System.CHARE_System:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground CHARE_System.CHARE_System:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding CHARE_System.CHARE_System:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme CHARE_System.CHARE_System:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal CHARE_System.CHARE_System:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical CHARE_System.CHARE_System:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle CHARE_System.CHARE_System:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight CHARE_System.CHARE_System:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground CHARE_System.CHARE_System:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor CHARE_System.CHARE_System:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle CHARE_System.CHARE_System:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator CHARE_System.CHARE_System:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle CHARE_System.CHARE_System:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator CHARE_System.CHARE_System:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog CHARE_System.CHARE_System:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle CHARE_System.CHARE_System:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle CHARE_System.CHARE_System:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight CHARE_System.CHARE_System:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge CHARE_System.CHARE_System:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall CHARE_System.CHARE_System:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft CHARE_System.CHARE_System:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight CHARE_System.CHARE_System:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground CHARE_System.CHARE_System:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme CHARE_System.CHARE_System:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth CHARE_System.CHARE_System:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle CHARE_System.CHARE_System:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle CHARE_System.CHARE_System:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle CHARE_System.CHARE_System:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle CHARE_System.CHARE_System:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator CHARE_System.CHARE_System:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall CHARE_System.CHARE_System:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle CHARE_System.CHARE_System:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle CHARE_System.CHARE_System:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground CHARE_System.CHARE_System:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless CHARE_System.CHARE_System:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle CHARE_System.CHARE_System:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle CHARE_System.CHARE_System:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle CHARE_System.CHARE_System:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu CHARE_System.CHARE_System:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem CHARE_System.CHARE_System:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary CHARE_System.CHARE_System:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall CHARE_System.CHARE_System:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader CHARE_System.CHARE_System:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle CHARE_System.CHARE_System:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle CHARE_System.CHARE_System:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu CHARE_System.CHARE_System:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem CHARE_System.CHARE_System:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl CHARE_System.CHARE_System:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle CHARE_System.CHARE_System:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle CHARE_System.CHARE_System:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar CHARE_System.CHARE_System:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay CHARE_System.CHARE_System:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay CHARE_System.CHARE_System:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor CHARE_System.CHARE_System:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor CHARE_System.CHARE_System:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor CHARE_System.CHARE_System:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor CHARE_System.CHARE_System:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor CHARE_System.CHARE_System:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor CHARE_System.CHARE_System:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle CHARE_System.CHARE_System:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_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, 0x7f01004f, 0x7f010050,
0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054,
0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058,
0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c,
0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060,
0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064,
0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068,
0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c,
0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070,
0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074,
0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078,
0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c,
0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080,
0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084,
0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088,
0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c,
0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090,
0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094,
0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098,
0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c,
0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0,
0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4,
0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8,
0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac,
0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0,
0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4,
0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8,
0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc,
0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme = 97;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textAppearanceListItemSecondary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BezelImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BezelImageView_biv_drawCircularShadow CHARE_System.CHARE_System:biv_drawCircularShadow}</code></td><td></td></tr>
<tr><td><code>{@link #BezelImageView_biv_maskDrawable CHARE_System.CHARE_System:biv_maskDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #BezelImageView_biv_selectorOnPress CHARE_System.CHARE_System:biv_selectorOnPress}</code></td><td></td></tr>
</table>
@see #BezelImageView_biv_drawCircularShadow
@see #BezelImageView_biv_maskDrawable
@see #BezelImageView_biv_selectorOnPress
*/
public static final int[] BezelImageView = {
0x7f010109, 0x7f01010a, 0x7f01010b
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#biv_drawCircularShadow}
attribute's value can be found in the {@link #BezelImageView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:biv_drawCircularShadow
*/
public static final int BezelImageView_biv_drawCircularShadow = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#biv_maskDrawable}
attribute's value can be found in the {@link #BezelImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:biv_maskDrawable
*/
public static final int BezelImageView_biv_maskDrawable = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#biv_selectorOnPress}
attribute's value can be found in the {@link #BezelImageView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:biv_selectorOnPress
*/
public static final int BezelImageView_biv_selectorOnPress = 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 CHARE_System.CHARE_System:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100c1
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:allowStacking
*/
public static final int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha CHARE_System.CHARE_System:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100c2
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:alpha
*/
public static final int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static final int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint CHARE_System.CHARE_System:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode CHARE_System.CHARE_System:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100c3, 0x7f0100c4
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static final int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode = 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 CHARE_System.CHARE_System:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength CHARE_System.CHARE_System:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength CHARE_System.CHARE_System:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color CHARE_System.CHARE_System:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize CHARE_System.CHARE_System:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars CHARE_System.CHARE_System:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars CHARE_System.CHARE_System:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness CHARE_System.CHARE_System: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 = {
0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8,
0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a Iconics.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Iconics_ico_background_color CHARE_System.CHARE_System:ico_background_color}</code></td><td></td></tr>
<tr><td><code>{@link #Iconics_ico_color CHARE_System.CHARE_System:ico_color}</code></td><td></td></tr>
<tr><td><code>{@link #Iconics_ico_contour_color CHARE_System.CHARE_System:ico_contour_color}</code></td><td></td></tr>
<tr><td><code>{@link #Iconics_ico_contour_width CHARE_System.CHARE_System:ico_contour_width}</code></td><td></td></tr>
<tr><td><code>{@link #Iconics_ico_corner_radius CHARE_System.CHARE_System:ico_corner_radius}</code></td><td></td></tr>
<tr><td><code>{@link #Iconics_ico_icon CHARE_System.CHARE_System:ico_icon}</code></td><td></td></tr>
<tr><td><code>{@link #Iconics_ico_offset_x CHARE_System.CHARE_System:ico_offset_x}</code></td><td></td></tr>
<tr><td><code>{@link #Iconics_ico_offset_y CHARE_System.CHARE_System:ico_offset_y}</code></td><td></td></tr>
<tr><td><code>{@link #Iconics_ico_padding CHARE_System.CHARE_System:ico_padding}</code></td><td></td></tr>
<tr><td><code>{@link #Iconics_ico_size CHARE_System.CHARE_System:ico_size}</code></td><td></td></tr>
</table>
@see #Iconics_ico_background_color
@see #Iconics_ico_color
@see #Iconics_ico_contour_color
@see #Iconics_ico_contour_width
@see #Iconics_ico_corner_radius
@see #Iconics_ico_icon
@see #Iconics_ico_offset_x
@see #Iconics_ico_offset_y
@see #Iconics_ico_padding
@see #Iconics_ico_size
*/
public static final int[] Iconics = {
0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129,
0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d,
0x7f01012e, 0x7f01012f
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ico_background_color}
attribute's value can be found in the {@link #Iconics} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:ico_background_color
*/
public static final int Iconics_ico_background_color = 8;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ico_color}
attribute's value can be found in the {@link #Iconics} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:ico_color
*/
public static final int Iconics_ico_color = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ico_contour_color}
attribute's value can be found in the {@link #Iconics} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:ico_contour_color
*/
public static final int Iconics_ico_contour_color = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ico_contour_width}
attribute's value can be found in the {@link #Iconics} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@attr name CHARE_System.CHARE_System:ico_contour_width
*/
public static final int Iconics_ico_contour_width = 7;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ico_corner_radius}
attribute's value can be found in the {@link #Iconics} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@attr name CHARE_System.CHARE_System:ico_corner_radius
*/
public static final int Iconics_ico_corner_radius = 9;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ico_icon}
attribute's value can be found in the {@link #Iconics} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:ico_icon
*/
public static final int Iconics_ico_icon = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ico_offset_x}
attribute's value can be found in the {@link #Iconics} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@attr name CHARE_System.CHARE_System:ico_offset_x
*/
public static final int Iconics_ico_offset_x = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ico_offset_y}
attribute's value can be found in the {@link #Iconics} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@attr name CHARE_System.CHARE_System:ico_offset_y
*/
public static final int Iconics_ico_offset_y = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ico_padding}
attribute's value can be found in the {@link #Iconics} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@attr name CHARE_System.CHARE_System:ico_padding
*/
public static final int Iconics_ico_padding = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ico_size}
attribute's value can be found in the {@link #Iconics} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@attr name CHARE_System.CHARE_System:ico_size
*/
public static final int Iconics_ico_size = 2;
/** Attributes that can be used with a IconicsImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #IconicsImageView_iiv_background_color CHARE_System.CHARE_System:iiv_background_color}</code></td><td></td></tr>
<tr><td><code>{@link #IconicsImageView_iiv_color CHARE_System.CHARE_System:iiv_color}</code></td><td></td></tr>
<tr><td><code>{@link #IconicsImageView_iiv_contour_color CHARE_System.CHARE_System:iiv_contour_color}</code></td><td></td></tr>
<tr><td><code>{@link #IconicsImageView_iiv_contour_width CHARE_System.CHARE_System:iiv_contour_width}</code></td><td></td></tr>
<tr><td><code>{@link #IconicsImageView_iiv_corner_radius CHARE_System.CHARE_System:iiv_corner_radius}</code></td><td></td></tr>
<tr><td><code>{@link #IconicsImageView_iiv_icon CHARE_System.CHARE_System:iiv_icon}</code></td><td></td></tr>
<tr><td><code>{@link #IconicsImageView_iiv_padding CHARE_System.CHARE_System:iiv_padding}</code></td><td></td></tr>
<tr><td><code>{@link #IconicsImageView_iiv_size CHARE_System.CHARE_System:iiv_size}</code></td><td></td></tr>
</table>
@see #IconicsImageView_iiv_background_color
@see #IconicsImageView_iiv_color
@see #IconicsImageView_iiv_contour_color
@see #IconicsImageView_iiv_contour_width
@see #IconicsImageView_iiv_corner_radius
@see #IconicsImageView_iiv_icon
@see #IconicsImageView_iiv_padding
@see #IconicsImageView_iiv_size
*/
public static final int[] IconicsImageView = {
0x7f010130, 0x7f010131, 0x7f010132, 0x7f010133,
0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#iiv_background_color}
attribute's value can be found in the {@link #IconicsImageView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:iiv_background_color
*/
public static final int IconicsImageView_iiv_background_color = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#iiv_color}
attribute's value can be found in the {@link #IconicsImageView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:iiv_color
*/
public static final int IconicsImageView_iiv_color = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#iiv_contour_color}
attribute's value can be found in the {@link #IconicsImageView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:iiv_contour_color
*/
public static final int IconicsImageView_iiv_contour_color = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#iiv_contour_width}
attribute's value can be found in the {@link #IconicsImageView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@attr name CHARE_System.CHARE_System:iiv_contour_width
*/
public static final int IconicsImageView_iiv_contour_width = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#iiv_corner_radius}
attribute's value can be found in the {@link #IconicsImageView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@attr name CHARE_System.CHARE_System:iiv_corner_radius
*/
public static final int IconicsImageView_iiv_corner_radius = 7;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#iiv_icon}
attribute's value can be found in the {@link #IconicsImageView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:iiv_icon
*/
public static final int IconicsImageView_iiv_icon = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#iiv_padding}
attribute's value can be found in the {@link #IconicsImageView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@attr name CHARE_System.CHARE_System:iiv_padding
*/
public static final int IconicsImageView_iiv_padding = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#iiv_size}
attribute's value can be found in the {@link #IconicsImageView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
@attr name CHARE_System.CHARE_System:iiv_size
*/
public static final int IconicsImageView_iiv_size = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider CHARE_System.CHARE_System:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding CHARE_System.CHARE_System:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild CHARE_System.CHARE_System:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers CHARE_System.CHARE_System:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f01002c, 0x7f0100cd, 0x7f0100ce,
0x7f0100cf
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:showDividers
*/
public static final int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a LoadingImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LoadingImageView_circleCrop CHARE_System.CHARE_System:circleCrop}</code></td><td></td></tr>
<tr><td><code>{@link #LoadingImageView_imageAspectRatio CHARE_System.CHARE_System:imageAspectRatio}</code></td><td></td></tr>
<tr><td><code>{@link #LoadingImageView_imageAspectRatioAdjust CHARE_System.CHARE_System:imageAspectRatioAdjust}</code></td><td></td></tr>
</table>
@see #LoadingImageView_circleCrop
@see #LoadingImageView_imageAspectRatio
@see #LoadingImageView_imageAspectRatioAdjust
*/
public static final int[] LoadingImageView = {
0x7f010017, 0x7f010018, 0x7f010019
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#circleCrop}
attribute's value can be found in the {@link #LoadingImageView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:circleCrop
*/
public static final int LoadingImageView_circleCrop = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#imageAspectRatio}
attribute's value can be found in the {@link #LoadingImageView} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:imageAspectRatio
*/
public static final int LoadingImageView_imageAspectRatio = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#imageAspectRatioAdjust}
attribute's value can be found in the {@link #LoadingImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>adjust_width</code></td><td>1</td><td></td></tr>
<tr><td><code>adjust_height</code></td><td>2</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:imageAspectRatioAdjust
*/
public static final int LoadingImageView_imageAspectRatioAdjust = 0;
/** Attributes that can be used with a MapAttrs.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MapAttrs_ambientEnabled CHARE_System.CHARE_System:ambientEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_cameraBearing CHARE_System.CHARE_System:cameraBearing}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_cameraMaxZoomPreference CHARE_System.CHARE_System:cameraMaxZoomPreference}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_cameraMinZoomPreference CHARE_System.CHARE_System:cameraMinZoomPreference}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_cameraTargetLat CHARE_System.CHARE_System:cameraTargetLat}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_cameraTargetLng CHARE_System.CHARE_System:cameraTargetLng}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_cameraTilt CHARE_System.CHARE_System:cameraTilt}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_cameraZoom CHARE_System.CHARE_System:cameraZoom}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_latLngBoundsNorthEastLatitude CHARE_System.CHARE_System:latLngBoundsNorthEastLatitude}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_latLngBoundsNorthEastLongitude CHARE_System.CHARE_System:latLngBoundsNorthEastLongitude}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_latLngBoundsSouthWestLatitude CHARE_System.CHARE_System:latLngBoundsSouthWestLatitude}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_latLngBoundsSouthWestLongitude CHARE_System.CHARE_System:latLngBoundsSouthWestLongitude}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_liteMode CHARE_System.CHARE_System:liteMode}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_mapType CHARE_System.CHARE_System:mapType}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_uiCompass CHARE_System.CHARE_System:uiCompass}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_uiMapToolbar CHARE_System.CHARE_System:uiMapToolbar}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_uiRotateGestures CHARE_System.CHARE_System:uiRotateGestures}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_uiScrollGestures CHARE_System.CHARE_System:uiScrollGestures}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_uiTiltGestures CHARE_System.CHARE_System:uiTiltGestures}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_uiZoomControls CHARE_System.CHARE_System:uiZoomControls}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_uiZoomGestures CHARE_System.CHARE_System:uiZoomGestures}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_useViewLifecycle CHARE_System.CHARE_System:useViewLifecycle}</code></td><td></td></tr>
<tr><td><code>{@link #MapAttrs_zOrderOnTop CHARE_System.CHARE_System:zOrderOnTop}</code></td><td></td></tr>
</table>
@see #MapAttrs_ambientEnabled
@see #MapAttrs_cameraBearing
@see #MapAttrs_cameraMaxZoomPreference
@see #MapAttrs_cameraMinZoomPreference
@see #MapAttrs_cameraTargetLat
@see #MapAttrs_cameraTargetLng
@see #MapAttrs_cameraTilt
@see #MapAttrs_cameraZoom
@see #MapAttrs_latLngBoundsNorthEastLatitude
@see #MapAttrs_latLngBoundsNorthEastLongitude
@see #MapAttrs_latLngBoundsSouthWestLatitude
@see #MapAttrs_latLngBoundsSouthWestLongitude
@see #MapAttrs_liteMode
@see #MapAttrs_mapType
@see #MapAttrs_uiCompass
@see #MapAttrs_uiMapToolbar
@see #MapAttrs_uiRotateGestures
@see #MapAttrs_uiScrollGestures
@see #MapAttrs_uiTiltGestures
@see #MapAttrs_uiZoomControls
@see #MapAttrs_uiZoomGestures
@see #MapAttrs_useViewLifecycle
@see #MapAttrs_zOrderOnTop
*/
public static final int[] MapAttrs = {
0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003,
0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007,
0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b,
0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f,
0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013,
0x7f010014, 0x7f010015, 0x7f010016
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#ambientEnabled}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:ambientEnabled
*/
public static final int MapAttrs_ambientEnabled = 16;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#cameraBearing}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:cameraBearing
*/
public static final int MapAttrs_cameraBearing = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#cameraMaxZoomPreference}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:cameraMaxZoomPreference
*/
public static final int MapAttrs_cameraMaxZoomPreference = 18;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#cameraMinZoomPreference}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:cameraMinZoomPreference
*/
public static final int MapAttrs_cameraMinZoomPreference = 17;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#cameraTargetLat}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:cameraTargetLat
*/
public static final int MapAttrs_cameraTargetLat = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#cameraTargetLng}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:cameraTargetLng
*/
public static final int MapAttrs_cameraTargetLng = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#cameraTilt}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:cameraTilt
*/
public static final int MapAttrs_cameraTilt = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#cameraZoom}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:cameraZoom
*/
public static final int MapAttrs_cameraZoom = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#latLngBoundsNorthEastLatitude}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:latLngBoundsNorthEastLatitude
*/
public static final int MapAttrs_latLngBoundsNorthEastLatitude = 21;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#latLngBoundsNorthEastLongitude}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:latLngBoundsNorthEastLongitude
*/
public static final int MapAttrs_latLngBoundsNorthEastLongitude = 22;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#latLngBoundsSouthWestLatitude}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:latLngBoundsSouthWestLatitude
*/
public static final int MapAttrs_latLngBoundsSouthWestLatitude = 19;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#latLngBoundsSouthWestLongitude}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:latLngBoundsSouthWestLongitude
*/
public static final int MapAttrs_latLngBoundsSouthWestLongitude = 20;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#liteMode}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:liteMode
*/
public static final int MapAttrs_liteMode = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#mapType}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>normal</code></td><td>1</td><td></td></tr>
<tr><td><code>satellite</code></td><td>2</td><td></td></tr>
<tr><td><code>terrain</code></td><td>3</td><td></td></tr>
<tr><td><code>hybrid</code></td><td>4</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:mapType
*/
public static final int MapAttrs_mapType = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#uiCompass}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:uiCompass
*/
public static final int MapAttrs_uiCompass = 7;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#uiMapToolbar}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:uiMapToolbar
*/
public static final int MapAttrs_uiMapToolbar = 15;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#uiRotateGestures}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:uiRotateGestures
*/
public static final int MapAttrs_uiRotateGestures = 8;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#uiScrollGestures}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:uiScrollGestures
*/
public static final int MapAttrs_uiScrollGestures = 9;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#uiTiltGestures}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:uiTiltGestures
*/
public static final int MapAttrs_uiTiltGestures = 10;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#uiZoomControls}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:uiZoomControls
*/
public static final int MapAttrs_uiZoomControls = 11;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#uiZoomGestures}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:uiZoomGestures
*/
public static final int MapAttrs_uiZoomGestures = 12;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#useViewLifecycle}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:useViewLifecycle
*/
public static final int MapAttrs_useViewLifecycle = 13;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#zOrderOnTop}
attribute's value can be found in the {@link #MapAttrs} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:zOrderOnTop
*/
public static final int MapAttrs_zOrderOnTop = 14;
/** Attributes that can be used with a MaterialDrawer.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_background CHARE_System.CHARE_System:material_drawer_background}</code></td><td></td></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_divider CHARE_System.CHARE_System:material_drawer_divider}</code></td><td></td></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_header_selection_text CHARE_System.CHARE_System:material_drawer_header_selection_text}</code></td><td></td></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_hint_icon CHARE_System.CHARE_System:material_drawer_hint_icon}</code></td><td></td></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_hint_text CHARE_System.CHARE_System:material_drawer_hint_text}</code></td><td></td></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_primary_icon CHARE_System.CHARE_System:material_drawer_primary_icon}</code></td><td></td></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_primary_text CHARE_System.CHARE_System:material_drawer_primary_text}</code></td><td></td></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_secondary_text CHARE_System.CHARE_System:material_drawer_secondary_text}</code></td><td></td></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_selected CHARE_System.CHARE_System:material_drawer_selected}</code></td><td></td></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_selected_text CHARE_System.CHARE_System:material_drawer_selected_text}</code></td><td></td></tr>
<tr><td><code>{@link #MaterialDrawer_material_drawer_window_background CHARE_System.CHARE_System:material_drawer_window_background}</code></td><td></td></tr>
</table>
@see #MaterialDrawer_material_drawer_background
@see #MaterialDrawer_material_drawer_divider
@see #MaterialDrawer_material_drawer_header_selection_text
@see #MaterialDrawer_material_drawer_hint_icon
@see #MaterialDrawer_material_drawer_hint_text
@see #MaterialDrawer_material_drawer_primary_icon
@see #MaterialDrawer_material_drawer_primary_text
@see #MaterialDrawer_material_drawer_secondary_text
@see #MaterialDrawer_material_drawer_selected
@see #MaterialDrawer_material_drawer_selected_text
@see #MaterialDrawer_material_drawer_window_background
*/
public static final int[] MaterialDrawer = {
0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f,
0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113,
0x7f010114, 0x7f010115, 0x7f010116
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_background}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_background
*/
public static final int MaterialDrawer_material_drawer_background = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_divider}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_divider
*/
public static final int MaterialDrawer_material_drawer_divider = 7;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_header_selection_text}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_header_selection_text
*/
public static final int MaterialDrawer_material_drawer_header_selection_text = 10;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_hint_icon}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_hint_icon
*/
public static final int MaterialDrawer_material_drawer_hint_icon = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_hint_text}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_hint_text
*/
public static final int MaterialDrawer_material_drawer_hint_text = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_primary_icon}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_primary_icon
*/
public static final int MaterialDrawer_material_drawer_primary_icon = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_primary_text}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_primary_text
*/
public static final int MaterialDrawer_material_drawer_primary_text = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_secondary_text}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_secondary_text
*/
public static final int MaterialDrawer_material_drawer_secondary_text = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_selected}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_selected
*/
public static final int MaterialDrawer_material_drawer_selected = 8;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_selected_text}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_selected_text
*/
public static final int MaterialDrawer_material_drawer_selected_text = 9;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#material_drawer_window_background}
attribute's value can be found in the {@link #MaterialDrawer} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:material_drawer_window_background
*/
public static final int MaterialDrawer_material_drawer_window_background = 0;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout CHARE_System.CHARE_System:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass CHARE_System.CHARE_System:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass CHARE_System.CHARE_System:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction CHARE_System.CHARE_System:showAsAction}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_showAsAction
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2,
0x7f0100d3
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System: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.
@attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static final int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static final int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static final int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static final int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static final int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static final int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static final int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static final int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:showAsAction
*/
public static final int MenuItem_showAsAction = 13;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing CHARE_System.CHARE_System:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow CHARE_System.CHARE_System:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100d4,
0x7f0100d5
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:subMenuArrow
*/
public static final int MenuView_subMenuArrow = 8;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor CHARE_System.CHARE_System:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f0100d6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor = 2;
/** Attributes that can be used with a PopupWindowBackgroundState.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor CHARE_System.CHARE_System:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100d7
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor = 0;
/** Attributes that can be used with a RecycleListView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecycleListView_paddingBottomNoButtons CHARE_System.CHARE_System:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle CHARE_System.CHARE_System:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100d8, 0x7f0100d9
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager CHARE_System.CHARE_System:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout CHARE_System.CHARE_System:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount CHARE_System.CHARE_System:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd CHARE_System.CHARE_System:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f01001d, 0x7f01001e,
0x7f01001f, 0x7f010020
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static final int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:layoutManager
*/
public static final int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:spanCount
*/
public static final int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsView_siv_insetForeground CHARE_System.CHARE_System:siv_insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsView_siv_insetForeground
*/
public static final int[] ScrimInsetsView = {
0x7f010108
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#siv_insetForeground}
attribute's value can be found in the {@link #ScrimInsetsView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name CHARE_System.CHARE_System:siv_insetForeground
*/
public static final int ScrimInsetsView_siv_insetForeground = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon CHARE_System.CHARE_System:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon CHARE_System.CHARE_System:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint CHARE_System.CHARE_System:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon CHARE_System.CHARE_System:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault CHARE_System.CHARE_System:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout CHARE_System.CHARE_System:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground CHARE_System.CHARE_System:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint CHARE_System.CHARE_System:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon CHARE_System.CHARE_System:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon CHARE_System.CHARE_System:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground CHARE_System.CHARE_System:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout CHARE_System.CHARE_System:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon CHARE_System.CHARE_System:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd,
0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1,
0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5,
0x7f0100e6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static final int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SignInButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SignInButton_buttonSize CHARE_System.CHARE_System:buttonSize}</code></td><td></td></tr>
<tr><td><code>{@link #SignInButton_colorScheme CHARE_System.CHARE_System:colorScheme}</code></td><td></td></tr>
<tr><td><code>{@link #SignInButton_scopeUris CHARE_System.CHARE_System:scopeUris}</code></td><td></td></tr>
</table>
@see #SignInButton_buttonSize
@see #SignInButton_colorScheme
@see #SignInButton_scopeUris
*/
public static final int[] SignInButton = {
0x7f01001a, 0x7f01001b, 0x7f01001c
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonSize}
attribute's value can be found in the {@link #SignInButton} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>standard</code></td><td>0</td><td></td></tr>
<tr><td><code>wide</code></td><td>1</td><td></td></tr>
<tr><td><code>icon_only</code></td><td>2</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:buttonSize
*/
public static final int SignInButton_buttonSize = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#colorScheme}
attribute's value can be found in the {@link #SignInButton} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>dark</code></td><td>0</td><td></td></tr>
<tr><td><code>light</code></td><td>1</td><td></td></tr>
<tr><td><code>auto</code></td><td>2</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:colorScheme
*/
public static final int SignInButton_colorScheme = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#scopeUris}
attribute's value can be found in the {@link #SignInButton} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
@attr name CHARE_System.CHARE_System:scopeUris
*/
public static final int SignInButton_scopeUris = 2;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme CHARE_System.CHARE_System:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f01003e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static final int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:popupTheme
*/
public static final int Spinner_popupTheme = 4;
/** Attributes that can be used with a Switch.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Switch_asb_switchMinWidth CHARE_System.CHARE_System:asb_switchMinWidth}</code></td><td> Minimum width for the switch component </td></tr>
<tr><td><code>{@link #Switch_asb_switchPadding CHARE_System.CHARE_System:asb_switchPadding}</code></td><td> Minimum space between the switch and caption text </td></tr>
<tr><td><code>{@link #Switch_asb_switchTextAppearance CHARE_System.CHARE_System:asb_switchTextAppearance}</code></td><td> TextAppearance style for text displayed on the switch thumb.</td></tr>
<tr><td><code>{@link #Switch_asb_textOff CHARE_System.CHARE_System:asb_textOff}</code></td><td> Text to use when the switch is in the unchecked/"off" state.</td></tr>
<tr><td><code>{@link #Switch_asb_textOn CHARE_System.CHARE_System:asb_textOn}</code></td><td> Text to use when the switch is in the checked/"on" state.</td></tr>
<tr><td><code>{@link #Switch_asb_thumb CHARE_System.CHARE_System:asb_thumb}</code></td><td> Drawable to use as the "thumb" that switches back and forth.</td></tr>
<tr><td><code>{@link #Switch_asb_thumbTextPadding CHARE_System.CHARE_System:asb_thumbTextPadding}</code></td><td> Amount of padding on either side of text within the switch thumb.</td></tr>
<tr><td><code>{@link #Switch_asb_track CHARE_System.CHARE_System:asb_track}</code></td><td> Drawable to use as the "track" that the switch thumb slides within.</td></tr>
</table>
@see #Switch_asb_switchMinWidth
@see #Switch_asb_switchPadding
@see #Switch_asb_switchTextAppearance
@see #Switch_asb_textOff
@see #Switch_asb_textOn
@see #Switch_asb_thumb
@see #Switch_asb_thumbTextPadding
@see #Switch_asb_track
*/
public static final int[] Switch = {
0x7f010117, 0x7f010118, 0x7f010119, 0x7f01011a,
0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e
};
/**
<p>
@attr description
Minimum width for the switch component
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_switchMinWidth
*/
public static final int Switch_asb_switchMinWidth = 6;
/**
<p>
@attr description
Minimum space between the switch and caption text
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_switchPadding
*/
public static final int Switch_asb_switchPadding = 7;
/**
<p>
@attr description
TextAppearance style for text displayed on the switch thumb.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_switchTextAppearance
*/
public static final int Switch_asb_switchTextAppearance = 5;
/**
<p>
@attr description
Text to use when the switch is in the unchecked/"off" state.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_textOff
*/
public static final int Switch_asb_textOff = 3;
/**
<p>
@attr description
Text to use when the switch is in the checked/"on" state.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_textOn
*/
public static final int Switch_asb_textOn = 2;
/**
<p>
@attr description
Drawable to use as the "thumb" that switches back and forth.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_thumb
*/
public static final int Switch_asb_thumb = 0;
/**
<p>
@attr description
Amount of padding on either side of text within the switch thumb.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_thumbTextPadding
*/
public static final int Switch_asb_thumbTextPadding = 4;
/**
<p>
@attr description
Drawable to use as the "track" that the switch thumb slides within.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_track
*/
public static final int Switch_asb_track = 1;
/** Attributes that can be used with a SwitchBackportTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchBackportTheme_asb_switchPreferenceStyle CHARE_System.CHARE_System:asb_switchPreferenceStyle}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchBackportTheme_asb_switchStyle CHARE_System.CHARE_System:asb_switchStyle}</code></td><td></td></tr>
</table>
@see #SwitchBackportTheme_asb_switchPreferenceStyle
@see #SwitchBackportTheme_asb_switchStyle
*/
public static final int[] SwitchBackportTheme = {
0x7f01011f, 0x7f010120
};
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#asb_switchPreferenceStyle}
attribute's value can be found in the {@link #SwitchBackportTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:asb_switchPreferenceStyle
*/
public static final int SwitchBackportTheme_asb_switchPreferenceStyle = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#asb_switchStyle}
attribute's value can be found in the {@link #SwitchBackportTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:asb_switchStyle
*/
public static final int SwitchBackportTheme_asb_switchStyle = 0;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText CHARE_System.CHARE_System:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack CHARE_System.CHARE_System:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth CHARE_System.CHARE_System:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding CHARE_System.CHARE_System:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance CHARE_System.CHARE_System:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding CHARE_System.CHARE_System:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint CHARE_System.CHARE_System:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode CHARE_System.CHARE_System:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track CHARE_System.CHARE_System:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint CHARE_System.CHARE_System:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode CHARE_System.CHARE_System:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100e7,
0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb,
0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef,
0x7f0100f0, 0x7f0100f1
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static final int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static final int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static final int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:trackTintMode
*/
public static final int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a SwitchPreference.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchPreference_asb_disableDependentsState CHARE_System.CHARE_System:asb_disableDependentsState}</code></td><td>
The state (true for on, or false for off) that causes dependents to be disabled.</td></tr>
<tr><td><code>{@link #SwitchPreference_asb_summaryOff CHARE_System.CHARE_System:asb_summaryOff}</code></td><td>
The summary for the Preference in a PreferenceActivity screen when the
SwitchPreference is unchecked.</td></tr>
<tr><td><code>{@link #SwitchPreference_asb_summaryOn CHARE_System.CHARE_System:asb_summaryOn}</code></td><td>
The summary for the Preference in a PreferenceActivity screen when the
SwitchPreference is checked.</td></tr>
<tr><td><code>{@link #SwitchPreference_asb_switchTextOff CHARE_System.CHARE_System:asb_switchTextOff}</code></td><td>
The text used on the switch itself when in the "off" state.</td></tr>
<tr><td><code>{@link #SwitchPreference_asb_switchTextOn CHARE_System.CHARE_System:asb_switchTextOn}</code></td><td>
The text used on the switch itself when in the "on" state.</td></tr>
</table>
@see #SwitchPreference_asb_disableDependentsState
@see #SwitchPreference_asb_summaryOff
@see #SwitchPreference_asb_summaryOn
@see #SwitchPreference_asb_switchTextOff
@see #SwitchPreference_asb_switchTextOn
*/
public static final int[] SwitchPreference = {
0x7f010121, 0x7f010122, 0x7f010123, 0x7f010124,
0x7f010125
};
/**
<p>
@attr description
The state (true for on, or false for off) that causes dependents to be disabled. By default,
dependents will be disabled when this is unchecked, so the value of this preference is false.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_disableDependentsState
*/
public static final int SwitchPreference_asb_disableDependentsState = 4;
/**
<p>
@attr description
The summary for the Preference in a PreferenceActivity screen when the
SwitchPreference is unchecked. If separate on/off summaries are not
needed, the summary attribute can be used instead.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_summaryOff
*/
public static final int SwitchPreference_asb_summaryOff = 1;
/**
<p>
@attr description
The summary for the Preference in a PreferenceActivity screen when the
SwitchPreference is checked. If separate on/off summaries are not
needed, the summary attribute can be used instead.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_summaryOn
*/
public static final int SwitchPreference_asb_summaryOn = 0;
/**
<p>
@attr description
The text used on the switch itself when in the "off" state.
This should be a very SHORT string, as it appears in a small space.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_switchTextOff
*/
public static final int SwitchPreference_asb_switchTextOff = 3;
/**
<p>
@attr description
The text used on the switch itself when in the "on" state.
This should be a very SHORT string, as it appears in a small space.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>This is a private symbol.
@attr name CHARE_System.CHARE_System:asb_switchTextOn
*/
public static final int SwitchPreference_asb_switchTextOn = 2;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps CHARE_System.CHARE_System:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x01010161, 0x01010162, 0x01010163,
0x01010164, 0x7f01004e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor = 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.
@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.
@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.
@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.
@attr name android:textColor
*/
public static final int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static final int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static final int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name CHARE_System.CHARE_System:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 9;
/** 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 CHARE_System.CHARE_System:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription CHARE_System.CHARE_System:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon CHARE_System.CHARE_System:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd CHARE_System.CHARE_System:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions CHARE_System.CHARE_System:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft CHARE_System.CHARE_System:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight CHARE_System.CHARE_System:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart CHARE_System.CHARE_System:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation CHARE_System.CHARE_System:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo CHARE_System.CHARE_System:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription CHARE_System.CHARE_System:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight CHARE_System.CHARE_System:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription CHARE_System.CHARE_System:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon CHARE_System.CHARE_System:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme CHARE_System.CHARE_System:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle CHARE_System.CHARE_System:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance CHARE_System.CHARE_System:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor CHARE_System.CHARE_System:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title CHARE_System.CHARE_System:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin CHARE_System.CHARE_System:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom CHARE_System.CHARE_System:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd CHARE_System.CHARE_System:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart CHARE_System.CHARE_System:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop CHARE_System.CHARE_System:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins CHARE_System.CHARE_System:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance CHARE_System.CHARE_System:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor CHARE_System.CHARE_System: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, 0x7f010024, 0x7f010027,
0x7f01002b, 0x7f010037, 0x7f010038, 0x7f010039,
0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003e,
0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5,
0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9,
0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd,
0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101,
0x7f010102
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static final int Toolbar_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:minHeight
*/
public static final int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:titleTextColor
*/
public static final int Toolbar_titleTextColor = 27;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd CHARE_System.CHARE_System:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart CHARE_System.CHARE_System:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme CHARE_System.CHARE_System:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f010103, 0x7f010104,
0x7f010105
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static final int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static final int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name CHARE_System.CHARE_System:theme
*/
public static final int View_theme = 4;
/** Attributes that can be used with a ViewBackgroundHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTint CHARE_System.CHARE_System:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode CHARE_System.CHARE_System:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010106, 0x7f010107
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static final int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name CHARE_System.CHARE_System:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link CHARE_System.CHARE_System.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name CHARE_System.CHARE_System:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static final int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static final int ViewStubCompat_android_layout = 1;
};
}
| [
"[email protected]"
] | |
e2abd493762bf3b38356935c3c5c2f08442824e1 | 57f0bf00615bbda0a9b41b8c238216134b55fe2b | /A4_1_Hans_Lindberg/src/Human.java | 23a0ba35f00372a71d9e191b3d3e814ce9d1f505 | [] | no_license | hansLindberg/Pfi2 | e60dd0596f5dc16cdc97aa5129e205cacdc3f660 | 78e7101334a852b913b01659f6a75fb3a3cccc80 | refs/heads/master | 2016-09-11T02:56:57.995375 | 2015-03-04T09:42:54 | 2015-03-04T09:42:54 | 30,533,223 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 540 | java |
public class Human {
private Dog dog;
private String name;
public Human(String name){
this.name = name;
}
public String getName(){
return this.name;
}
public void buyDog(Dog dog){
this.dog = dog;
}
/**Returnerar: "x äger en hund som heter y" eller " x äger inte en hund"*/
public String getInfo(){
if (dog != null){
return this.getName() + " äger en hund som heter " + this.dog.getName().toString() + ".";
}
else{
return this.getName() + " äger ingen hund!";
}
}
}
| [
"Hans@skolLaptop"
] | Hans@skolLaptop |
f8b2256c95cf8defaaf54d2ce7a5e06223261206 | aca55726908f182ffac45ba7720729420a495491 | /webAppGuiTests/k12/ViewHomePageTest.java | 57cf3fd4b5d3680d66060ab098f0120b76ce2b7e | [] | no_license | murali-projects/k12-automation | c20548510416235716b3c190b7b576aeb308fd39 | b792b163d30afddd73abb7c30e4fc4f24f982f0c | refs/heads/master | 2021-01-18T21:30:37.546700 | 2013-04-19T10:57:37 | 2013-04-19T10:57:37 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,030 | java | package k12;
import org.testng.Assert;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import webPageContainers4Testing.ViewHomePage;
public class ViewHomePageTest extends BaseWebPageTest {
private ViewHomePage viewHomePage;
@BeforeTest
public void setUp() throws Exception {
viewHomePage = new ViewHomePage();
}
@Test
public void verifyBasicSearchBoxIsPresent() throws Exception {
Assert.assertTrue(viewHomePage.basicSearchBoxIsPresent());
}
@Test
public void verifyTopMenuBarIsPresent() throws Exception {
Assert.assertTrue(viewHomePage.verifyTopMenuBar());
}
@Test
public void verifyBottomMenuBarIsPresent() throws Exception {
Assert.assertTrue(viewHomePage.verifyBottomMenuBar());
}
@Test
public void verifyPreMentionedPortletsArePresent() throws Exception {
Assert.assertTrue(viewHomePage.verifyPreMentionedPortlets());
}
@Test
public void verifyNewsPortletIsPresent() throws Exception {
Assert.assertTrue(viewHomePage.verifyNewsPortletIsPresent());
}
}
| [
"[email protected]"
] | |
264713c398773784b0e0020dc1631c319bde287d | 168f702e88f69949be3063b2b40c978760789cc5 | /javaEx/src/com/javaex/oop/point/v4/ColorPoint.java | 15d9349e2bc20676b6d94fb3e5ae8d4883c73f9f | [] | no_license | sjoongh/JavaEx | 0097cf06892ea72212c31b682b9db1fa5538d761 | 803c09aea8953e01e84a0f9435fe7858479ea3a9 | refs/heads/master | 2023-07-11T19:11:44.431498 | 2021-09-07T11:54:11 | 2021-09-07T11:54:11 | 386,480,098 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,267 | java | package com.javaex.oop.point.v4;
// 상속 : extends
public class ColorPoint extends Point {
// 생성자 선언 x, 오류 발생 -> java에서 자동으로 기본생성자 선택
// -> super()로 부모의 기본 생성자 선택함
// 추가 필드
private String color;
// 생성자
public ColorPoint(int x, int y, String color) {
// 명시적으로 부모 생성자 선택
// 부모의 기본 생성자가 없다면 오류 발생
super(x, y);
this.color = color;
}
// getter / setter
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
// 메서드 오버라이드
@Override
// 메소드 이름이 다르다면 @override가 부모클래스에 같은 메소드가 있는지 확인
public void draw() { // 물려 받았으나 자신만의 새로운 기능 덮어쓰기
// 방법1. 부모의 getter, setter를 이용
System.out.printf("색깔점[x=%d, y=%d, color=%s]을 그렸습니다.%n",
super.getX(), super.getY(), color);
// 방법2. 부모의 필드를 protected로 변경
System.out.printf("색깔점[x=%d, y=%d, color=%s]을 그렸습니다.%n",
x, y, color);
}
// TODO: Point 클래스의 draw(boolean) 메서드를 오버라이드 해보기
}
| [
"[email protected]"
] | |
5c3401db28744b009e24082941f1c009541adf39 | 26341b33699a014bfc33938c1cf6ba03a37bb42c | /linked-lists/segregatebyevenodd.java | a79030da6b5af3e0fcb58841d3b49e8bc94a66a8 | [] | no_license | thetinygoat/leetcode | 683d00669b9807d2f43ac1cff14a68a817cd226d | f1d6866609409f82e152e9db89e54f4a87edf569 | refs/heads/master | 2022-04-28T08:36:39.035216 | 2020-04-19T14:51:00 | 2020-04-19T14:51:00 | 255,733,324 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 506 | java | public ListNode oddEvenList(ListNode head) {
ListNode odd = new ListNode(-1);
ListNode even = new ListNode(-1);
ListNode oitr = odd;
ListNode eitr = even;
while(head != null){
if(head.val %2 == 0){
eitr.next = head;
eitr = eitr.next;
}
else{
oitr.next = head;
oitr = oitr.next;
}
head = head.next;
}
eitr.next = null;
oitr.next = even.next;
return odd.next;
} | [
"[email protected]"
] | |
4331010c9653b546093e7457e104afbfc4b3be92 | 3817d6155be01b07ac39edc3304d200d08e83847 | /src/main/java/com/qf/controller/GardenController.java | af522ffe53c31b18fc79b0c593d5e6eef8df23c6 | [] | no_license | liuhao128/gardenManager-SSM | 4b30b1f16a0cd9d9c03dad6def2013eccc963624 | 8a88aa0d1935437f44318125e8607cfe3422e66f | refs/heads/master | 2023-02-24T01:29:53.660104 | 2021-01-27T13:06:27 | 2021-01-27T13:06:27 | 333,420,565 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,017 | java | package com.qf.controller;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.qf.pojo.Garden;
import com.qf.pojo.ResultData;
import com.qf.service.GardenService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
* 作者:SmallWood
* 时间:2021/1/14 17:35
*/
@RestController
@RequestMapping("/gardens")
public class GardenController {
@Autowired
GardenService gardenService;
@GetMapping
public ResultData selectAll (Integer page, Integer limit, String keywords1, String keywords2) {
//开启分页信息
PageHelper.startPage(page,limit);
//调用service方法
List<Garden> gardenList = gardenService.selectAll(keywords1, keywords2);
//创建一个分页信息类
PageInfo<Garden> pageInfo = new PageInfo<>(gardenList);
//返回结果集
ResultData resultData = new ResultData(0,"成功",gardenList,Integer.parseInt(String.valueOf(pageInfo.getTotal())));
return resultData;
}
@PostMapping
public ResultData addOne(@RequestBody Garden garden){
//调用添加的service方法
gardenService.addOne(garden);
ResultData resultData = new ResultData(0,"成功");
return resultData;
}
@DeleteMapping("{id}")
public ResultData deleteOne(@PathVariable int id){
gardenService.deleteOne(id);
ResultData resultData = new ResultData(0,"成功");
return resultData;
}
@GetMapping("{id}")
public ResultData selectOne(@PathVariable int id){
Garden garden = gardenService.selectOne(id);
ResultData resultData = new ResultData(0,"成功",garden,1);
return resultData;
}
@PutMapping
public ResultData updateOne(@RequestBody Garden garden){
gardenService.updateOne(garden);
ResultData resultData = new ResultData(0,"成功");
return resultData;
}
}
| [
"[email protected]"
] | |
76d2c345e520f3194a16cf69fe5b58c7f88aa1b2 | 70df4ab9bbfb98f9702194a7e390a8e9ba302a67 | /box/ejb/src/main/java/br/com/box/dao/GenericDAO.java | 8a1fb086fec993036057dfa7a96ceee50cdb476e | [] | no_license | Arc2014/treinamento | e63fff27162804db11c9a97c260dcf7c93a317f2 | 2eb195d49eb78e93fb4c2b117ed8a2e764246403 | refs/heads/master | 2020-05-17T00:18:54.239724 | 2015-07-08T22:31:13 | 2015-07-08T22:31:13 | 38,782,352 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,643 | java | package br.com.box.dao;
import java.lang.reflect.ParameterizedType;
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.NoResultException;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;
import org.jboss.logging.Logger;
import br.com.box.model.EntidadeComum;
@SuppressWarnings("unchecked")
public abstract class GenericDAO<T extends EntidadeComum> {
private static final String QUERY_LISTAR_POR = "FROM %s o WHERE o.%s = :valor";
@PersistenceContext(unitName = "BOX_DS")
private EntityManager em;
private static final Logger LOGGER = Logger.getLogger(GenericDAO.class);
public void salvar(T entity) {
getEntityManager().persist(entity);
getEntityManager().flush();
}
public void atualizar(T entity) {
getEntityManager().merge(entity);
getEntityManager().flush();
}
public T buscar(Long id) {
return (T) getEntityManager().find(getTypeClass(), id);
}
public T buscaDetach(Long id) {
T object = (T) buscar(id);
getEntityManager().detach(object);
return object;
}
public void delete(T entity) {
entity = getEntityManager().merge(entity);
getEntityManager().remove(entity);
getEntityManager().flush();
}
public void delete(Long id) {
T object = buscar(id);
delete(object);
}
public List<T> listarPor(String atributo, Object valor) {
String sql = String.format(QUERY_LISTAR_POR, getTypeClass().getSimpleName(), atributo);
Query query = getEntityManager().createQuery(sql);
query.setParameter("valor", valor);
return query.getResultList();
}
public List<T> listarPorLike(String atributo, Object valor) {
Query query = getEntityManager().createQuery(
"SELECT o FROM " + getTypeClass().getSimpleName() + " o WHERE o."
+ atributo + " like :valor");
query.setParameter("valor", "%" + valor + "%");
return query.getResultList();
}
public T buscarPor(String atributo, Object valor) {
Query query = getEntityManager().createQuery(
"SELECT o FROM " + getTypeClass().getSimpleName() + " o WHERE o."
+ atributo + " = :valor");
query.setParameter("valor", valor);
try {
return (T) query.getSingleResult();
} catch (NoResultException e) {
LOGGER.error(e);
return null;
}
}
public List<T> listar() {
return getEntityManager().createQuery(
"SELECT o FROM " + getTypeClass().getSimpleName() + " o")
.getResultList();
}
public T attach(T object) {
return (T) getEntityManager().getReference(getTypeClass(),
object.getId());
}
protected EntityManager getEntityManager() {
if (em == null) {
throw new IllegalStateException("getEntityManager() não foi setado antes do uso neste DAO");
}
return em;
}
private Class<?> getTypeClass() {
return (Class<?>) ((ParameterizedType) this.getClass()
.getGenericSuperclass()).getActualTypeArguments()[0];
}
public T salvarERetornar(T entity) {
getEntityManager().persist(entity);
getEntityManager().flush();
return entity;
}
public Query criarQuery(String query) {
return getEntityManager().createQuery(query);
}
}
| [
"[email protected]"
] | |
dd206fdd1e74b99a31a67c8d56fec2fde5b162eb | 64832530ad87bb9685f34e0c2cf01c2232061e14 | /src/main/java/org/elasticsearch/cassandra/index/SecondaryIndicesService.java | 176756ccd6490d1d00a7ef2b3d68ad6744f326c1 | [
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | sohzaz/elassandra | 21088fed7f44365d447a42d949eb8da76acf261b | 009025eb78b07df2715b5b42968227e4fbf72f5e | refs/heads/master | 2021-01-21T18:34:47.834970 | 2016-05-21T16:18:29 | 2016-05-21T16:18:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 596 | java | package org.elasticsearch.cassandra.index;
import org.elasticsearch.cluster.ClusterStateListener;
import org.elasticsearch.common.component.LifecycleComponent;
public interface SecondaryIndicesService extends LifecycleComponent<SecondaryIndicesService>, ClusterStateListener {
public void dropSecondaryIndices(String index);
public void addDeleteListener(DeleteListener listener);
public void removeDeleteListener(DeleteListener listener);
public interface DeleteListener {
public String index();
public void onIndexDeleted();
}
}
| [
"[email protected]"
] | |
42b5802ec615935d39d347a62e150949e8d442c9 | 336de470470ba5651ddcc1580d49492ca43e5bf1 | /app/src/main/java/com/example/igiagante/thegarden/creation/plants/usecase/GetFlavorsUseCase.java | d3f873baa05348bc20744ce63667fdd052907473 | [] | no_license | igiagante-zz/the_garden_android | 6ffdf90aaad1988cd1912880f172cc3edd707172 | c9bb37c7edcd9ef50e61cf57ac143fde7818826e | refs/heads/master | 2021-11-10T08:28:15.800800 | 2016-09-28T03:12:47 | 2016-09-28T03:12:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,528 | java | package com.example.igiagante.thegarden.creation.plants.usecase;
import android.support.annotation.NonNull;
import com.example.igiagante.thegarden.core.di.PerActivity;
import com.example.igiagante.thegarden.core.executor.PostExecutionThread;
import com.example.igiagante.thegarden.core.executor.ThreadExecutor;
import com.example.igiagante.thegarden.core.repository.managers.FlavorRepositoryManager;
import com.example.igiagante.thegarden.core.repository.Specification;
import com.example.igiagante.thegarden.core.usecase.UseCase;
import javax.inject.Inject;
import rx.Observable;
/**
* @author Ignacio Giagante, on 30/5/16.
*/
@PerActivity
public class GetFlavorsUseCase extends UseCase<Void> {
/**
* Repository Manager which delegates the actions to the correct repository
*/
private final FlavorRepositoryManager flavorRepositoryManager;
@Inject
public GetFlavorsUseCase(@NonNull FlavorRepositoryManager flavorRepositoryManager, ThreadExecutor threadExecutor, PostExecutionThread postExecutionThread) {
super(threadExecutor, postExecutionThread);
this.flavorRepositoryManager = flavorRepositoryManager;
this.flavorRepositoryManager.setRepositoriesOrder(getRepositoryOrder());
}
@Override
protected Observable buildUseCaseObservable(Void aVoid) {
return flavorRepositoryManager.query(new Specification() {});
}
@Override
protected void setRepositoryOrder() {
repositoryOrder.add(LOCAL_REPOSITORY, REMOTE_REPOSITORY);
}
}
| [
"[email protected]"
] | |
d0238c4969d90c6fbafb2cee4d7d9143125d3e14 | e3718d4a36b8ef77c7175bec5f5020e5a20977c9 | /aiMABFullMOrder2ttNewE/NodeInterface.java | 85545c24704b6c79d73802af40592f6abef6e99a | [] | no_license | zzt93/zzt93-dots_and_boxes | e7744edb68e5fa639074a921e83777e200b5f367 | eed115d7ec2e78f064678a8442a4e6f4cfcf1f79 | refs/heads/master | 2020-12-24T14:09:44.524020 | 2014-05-30T13:49:44 | 2014-05-30T13:49:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 324 | java | package aiMABFullMOrder2ttNewE;
public interface NodeInterface {
public boolean gameOver();
public double score();
public Player getPlayer(boolean maximize);
public MoveEnumeration getMoves(Player player, int[][] a);//let to be decided
public void retractMove(Move m);
void applyMove(Move m, Player player);
}
| [
"[email protected]"
] | |
f8101e8bf801811f3240d94997930b760dde803c | e090f952734759942c27af62f35207f138b054d9 | /neonsh-sdn/nsh-manager/implementation/src/main/java/eu/neonsh/nshmanager/impl/SFCManagerUtils.java | 1c2ca7bb958973f169e007b3b05a38cb4fde189f | [] | no_license | GuidoMart88/neoNSHconfigfiles | 3e9b611979adb09484ec659950379091023434f5 | cd456662948edf671a851a16fcf7cabdac7bbba3 | refs/heads/master | 2021-05-11T13:00:56.244038 | 2018-01-16T10:30:02 | 2018-01-16T10:30:02 | 117,670,879 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 15,240 | java | package eu.neonsh.nshmanager.impl;
import com.google.common.base.Optional;
import com.google.common.util.concurrent.CheckedFuture;
import eu.neonsh.nshmanager.impl.Entities.AccessList;
import eu.neonsh.nshmanager.impl.Entities.AccessListEntry;
import eu.neonsh.nshmanager.impl.Entities.AnSshConnector;
import eu.neonsh.registryhandler.impl.NSHManagerRegistryImpl;
import org.opendaylight.controller.md.sal.binding.api.DataBroker;
import org.opendaylight.controller.md.sal.binding.api.ReadOnlyTransaction;
import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
import org.opendaylight.controller.md.sal.common.api.data.ReadFailedException;
import org.opendaylight.yang.gen.v1.urn.eu.neonsh.registryhandler.nshmanager.registry.rev161017.match.flows.per.port.grouping.FlowsToPortMappings;
import org.opendaylight.yang.gen.v1.urn.eu.neonsh.registryhandler.nshmanager.registry.rev161017.match.flows.per.port.grouping.FlowsToPortMappingsBuilder;
import org.opendaylight.yang.gen.v1.urn.eu.neonsh.registryhandler.nshmanager.registry.rev161017.match.flows.per.port.grouping.flows.to.port.mappings.Flows;
import org.opendaylight.yang.gen.v1.urn.eu.neonsh.registryhandler.nshmanager.registry.rev161017.match.flows.per.port.grouping.flows.to.port.mappings.FlowsBuilder;
import org.opendaylight.yang.gen.v1.urn.eu.neonsh.registryhandler.nshmanager.registry.rev161017.nsh.manager.dm.MatchFlowsPerPort;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.*;
import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.MacAddress;
//import org.opendaylight.yang.gen.v1.urn.opendaylight.address.tracker.rev140617.AddressCapableNodeConnector;
//import org.opendaylight.yang.gen.v1.urn.opendaylight.address.tracker.rev140617.address.node.connector.Addresses;
import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNodeConnector;
import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.node.NodeConnector;
import org.opendaylight.yang.gen.v1.urn.opendaylight.l2.types.rev130827.VlanId;
import org.opendaylight.yang.gen.v1.urn.opendaylight.l2.types.rev130827.VlanPcp;
import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.security.NoSuchAlgorithmException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Random;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.UUID;
public class SFCManagerUtils {
private static final Logger LOG = LoggerFactory.getLogger(SFCManagerUtils.class);
public static AtomicInteger FlowsCreated = new AtomicInteger(1);
public static String SwitchName;
public static int inputPort;
public static NSHManagerRegistryImpl nri;
public static String createClassificationFlow(int inputPort, String srcIP, String nspHEX, String metadataHEX, String SwitchName, String username, String password, String IP) throws NoSuchAlgorithmException {
String flow;
String command;
Random rand = new Random();
int cookie = rand.nextInt();
cookie = cookie >= 0 ? cookie : -cookie;
flow = String.format("in_port=%d,%s,actions= push_nsh, " +
"load:0x%s->NXM_NX_NSP[0..23], load:0xFF->NXM_NX_NSI[], " + // setting NSP to input nsp hex value and NSI to 255
"load:0x1->NXM_NX_NSH_MDTYPE[], load:0x3->NXM_NX_NSH_NP[], " + // setting md type to 1 (i.e., mandatory context fields) and NSH NP to 3 (denoting L2 Frame)
"load:0x%s->NXM_NX_NSH_C1[], load:0x55667788->NXM_NX_NSH_C2[], " + // setting first 2 context headers
"load:0x99aabbcc->NXM_NX_NSH_C3[], load:0xddeeff00->NXM_NX_NSH_C4[]," + // setting last 2 context headers
" resubmit(,1)", inputPort, srcIP, nspHEX, metadataHEX);
command = String.format("sudo ovs-ofctl add-flow %s \"cookie=%d, table=0, priority=65535,idle_timeout=50000,%s \"", SwitchName, cookie, flow);
LOG.info("sending via ssh to IP {}, with username {} and password {} the command:",IP,username,password);
LOG.info(command);
String sshOutput = AnSshConnector.executeCommand(command, username, password, IP, 22);
LOG.info("received ssh output:");
LOG.info(sshOutput);
return flow.substring(0, flow.indexOf(",actions="));
}
/**
* Creates flow on table 0 that sends all (unmatched by higher priority flows) packets to table 1
*
* @param SwitchName
* @param username
* @param password
* @param IP
* @return
* @throws NoSuchAlgorithmException
*/
public static String createDefaultFlow(String SwitchName, String username, String password, String IP,String nspHEX) throws NoSuchAlgorithmException {
String flow;
String command;
flow = String.format(",actions=resubmit(,1)");
// command = String.format("sudo ovs-ofctl add-flow %s \",table=0,priority=65000,idle_timeout=50000,%s\"", SwitchName, flow);
command = String.format("sudo ovs-ofctl add-flow %s \",priority=65000,idle_timeout=50000,%s\"", SwitchName, flow);
LOG.info("sending via ssh to IP {}, with username {} and password {} the command:",IP,username,password);
LOG.info(command);
String sshOutput = AnSshConnector.executeCommand(command, username, password, IP, 22);
LOG.info("received ssh output:");
LOG.info(sshOutput);
return flow.substring(0, flow.indexOf(",actions="));
}
public static String createMatchNSHFlow(String SwitchName, String nspHEX, String nsiHEX, String metadataHEX, int outPort, String username, String password, String IP) throws NoSuchAlgorithmException {
String flow;
String command;
Random rand = new Random();
int cookie = rand.nextInt();
cookie = cookie >= 0 ? cookie : -cookie;
flow = String.format("nsh_mdtype=1,nsp=0x%s,nsi=0x%s,nshc1=0x%s,actions=output:%d", nspHEX, nsiHEX, metadataHEX, outPort);
command = String.format("sudo ovs-ofctl add-flow %s \"cookie=%d,table=1,priority=65535,idle_timeout=50000,%s\"", SwitchName, cookie, flow);
LOG.info("sending via ssh to IP {}, with username {} and password {} the command:",IP,username,password);
LOG.info(command);
String sshOutput = AnSshConnector.executeCommand(command, username, password, IP, 22);
LOG.info("received ssh output:");
LOG.info(sshOutput);
// adding flow to registry under specific port (outPort)
String switchPortId = SwitchName+"@@"+Integer.toString(outPort);
nri = SFCManagerUtils.getNSHManagerRegistryImpl();
if (nri != null) {
// get all match flows per port
MatchFlowsPerPort flowsPerPorts = nri.getMatchFlowsPerPortFromDatastore();
// find the ones that match our outPort
if (flowsPerPorts != null) {
boolean found = false;
FlowsToPortMappings fppInReg = null;
for (FlowsToPortMappings fPerPort : flowsPerPorts.getFlowsToPortMappings()) {
if (fPerPort.getSwitchPortId().equals(switchPortId)) {
fppInReg = fPerPort;
found = true;
break;
}
}
Flows newFlow = new FlowsBuilder()
.setId(UUID.randomUUID().toString())
.setSwitchName(SwitchName)
.setNspHEX(nspHEX)
.setNsiHEX(nsiHEX)
.setMetadataHEX(metadataHEX)
.setUsername(username)
.setPassword(password)
.setIP(IP)
.build();
// if it is the first mapping entry for this port
if (found == false) {
List<Flows> flows = new ArrayList<>();
flows.add(newFlow);
FlowsToPortMappings ftpm = new FlowsToPortMappingsBuilder()
.setSwitchPortId(switchPortId)
.setSwitchId(SwitchName)
.setPort(Integer.toString(outPort))
.setFlows(flows)
.build();
nri.addFlowsToPortMappingsToDatastore(ftpm);
} else {
fppInReg.getFlows().add(newFlow);
nri.removeFlowsToPortMappingsFromDatastore(switchPortId);
nri.addFlowsToPortMappingsToDatastore(fppInReg);
}
}
}
return flow.substring(0, flow.indexOf(",actions="));
}
public static String createPopNSHEgressFlow(String SwitchName, String nspHEX, String nsiHEX, String metadataHEX, int outPort, String username, String password, String IP) throws NoSuchAlgorithmException {
String flow;
String command;
Random rand = new Random();
int cookie = rand.nextInt();
cookie = cookie >= 0 ? cookie : -cookie;
flow = String.format("nsp=0x%s,nsi=0x%s,nshc1=0x%s,actions=pop_nsh,output:%d", nspHEX, nsiHEX, metadataHEX, outPort);
command = String.format("sudo ovs-ofctl add-flow %s \" cookie=%d, table=0, priority=65534,idle_timeout=50000,%s\"", SwitchName, cookie, flow);
LOG.info("sending via ssh to IP {}, with username {} and password {} the command:",IP,username,password);
LOG.info(command);
String sshOutput = AnSshConnector.executeCommand(command, username, password, IP, 22);
LOG.info("received ssh output:");
LOG.info(sshOutput);
return flow.substring(0, flow.indexOf(",actions="));
}
public static String createUpdateMatchNSHFlow(String SwitchName, String nspHEX, String nsiHEX, String metadataHEX, int outPort, String username, String password, String IP) throws NoSuchAlgorithmException {
String flow;
String command;
Random rand = new Random();
int cookie = rand.nextInt();
cookie = cookie >= 0 ? cookie : -cookie;
flow = String.format("nsh_mdtype=1,nsp=0x%s,nsi=0x%s,nshc1=0x%s,actions=output:%d", nspHEX, nsiHEX, metadataHEX, outPort);
command = String.format("sudo ovs-ofctl mod-flows %s \"table=1,priority=65535,%s\"", SwitchName,flow);
LOG.info("sending via ssh to IP {}, with username {} and password {} the command:");
LOG.info(command);
String sshOutput = AnSshConnector.executeCommand(command, username, password, IP, 22);
LOG.info("received ssh output:");
LOG.info(sshOutput);
// adding flow to registry under specific port (outPort)
nri = SFCManagerUtils.getNSHManagerRegistryImpl();
if (nri != null) {
// get all match flows per port
MatchFlowsPerPort flowsPerPorts = nri.getMatchFlowsPerPortFromDatastore();
// find the ones that match our outPort
if (flowsPerPorts != null) {
boolean found = false;
FlowsToPortMappings fppInReg = null;
for (FlowsToPortMappings fPerPort : flowsPerPorts.getFlowsToPortMappings()) {
if (fPerPort.getPort().equals(Integer.toString(outPort))) {
fppInReg = fPerPort;
found = true;
break;
}
}
Flows newFlow = new FlowsBuilder()
.setId(UUID.randomUUID().toString())
.setSwitchName(SwitchName)
.setNspHEX(nspHEX)
.setNsiHEX(nsiHEX)
.setMetadataHEX(metadataHEX)
.setUsername(username)
.setPassword(password)
.setIP(IP)
.build();
// if it is the first mapping entry for this port
if (found == false) {
List<Flows> flows = new ArrayList<>();
flows.add(newFlow);
FlowsToPortMappings ftpm = new FlowsToPortMappingsBuilder()
.setPort(Integer.toString(outPort))
.setFlows(flows)
.build();
nri.addFlowsToPortMappingsToDatastore(ftpm);
} else {
fppInReg.getFlows().add(newFlow);
nri.removeFlowsToPortMappingsFromDatastore(Integer.toString(outPort));
nri.addFlowsToPortMappingsToDatastore(fppInReg);
}
}
}
return flow.substring(0, flow.indexOf(",actions="));
}
public static void deleteFlow(String SwitchName, String flow, String username, String password, String IP) {
String command;
command = String.format("sudo ovs-ofctl del-flows %s %s", SwitchName, flow);
LOG.info("sending via ssh to IP {}, with username {} and password {} the command:",IP,username,password);
LOG.info(command);
String sshOutput = AnSshConnector.executeCommand(command, username, password, IP, 22);
LOG.info("received ssh output:");
LOG.info(sshOutput);
}
public static void deleteAllFlows(String SwitchName, String username, String password, String IP) {
String command;
command = String.format("sudo ovs-ofctl del-flows %s", SwitchName);
LOG.info("deleting all flows on switch: {}", SwitchName);
LOG.info("sending via ssh to IP {}, with username {} and password {} the command:",IP,username,password);
LOG.info(command);
String sshOutput = AnSshConnector.executeCommand(command, username, password, IP, 22);
LOG.info("received ssh output:");
LOG.info(sshOutput);
}
public static NSHManagerRegistryImpl getNSHManagerRegistryImpl() {
if (nri == null) {
return NSHManagerRegistryImpl.getInstance();
} else {
return nri;
}
}
public static String createExitSwitchFlow(String switchId, String nspHEX, String nsiHEX, int outPort, String username, String password, String IP) {
String flow;
String command;
Random rand = new Random();
int cookie = rand.nextInt();
cookie = cookie >= 0 ? cookie : -cookie;
flow = String.format("nsh_mdtype=1,nsp=0x%s,nsi=0x%s,actions=output:%d", nspHEX, nsiHEX, outPort);
command = String.format("sudo ovs-ofctl add-flow %s \"cookie=%d,table=1,priority=65001,idle_timeout=50000,%s\"", switchId, cookie, flow);
LOG.info("sending via ssh to IP {}, with username {} and password {} the command:",IP,username,password);
LOG.info(command);
String sshOutput = AnSshConnector.executeCommand(command, username, password, IP, 22);
LOG.info("received ssh output:");
LOG.info(sshOutput);
return flow.substring(0, flow.indexOf(",actions="));
}
}
| [
"[email protected]"
] | |
76529573fbab9847480008e6a71ffdbb7182b1cf | 849713e251038296782b0ca83a87f927384462e8 | /src/main/java/com/cinema/model/dto/CinemaHallRequestDto.java | 03e2d4ff6f054a35d02ab84aaa960d413737f717 | [] | no_license | AnaLanda/jv-cinema | 6d797be84c8847663a4f4a0cbe95527bd422c512 | 1b04467cd59f32d70cf07f0652b065b98ffdce90 | refs/heads/master | 2023-01-05T15:33:52.047822 | 2020-11-06T06:53:48 | 2020-11-06T06:53:48 | 299,857,402 | 0 | 0 | null | 2020-11-06T06:53:49 | 2020-09-30T08:33:51 | Java | UTF-8 | Java | false | false | 322 | java | package com.cinema.model.dto;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
import lombok.Data;
@Data
public class CinemaHallRequestDto {
@Min(20)
private int capacity;
@NotNull(message = "The cinema hall description can't be null.")
private String description;
}
| [
"[email protected]"
] | |
964f6b09561b05d76828f27d6606f64296bc46cb | cb7957315644393693c9e523113315b713ab7716 | /m-bus/src/main/java/com/ets/common/ExcelStyleFormat.java | 9328339f5f74a64b8c55f7cd51338b61f04d89a9 | [] | no_license | Mx1014/MBUS | aefb822de97b2dad835fe213e20fcfd22886c306 | e2d3bca32f5f0e573dfd825e7d7aafd141cc4539 | refs/heads/master | 2020-08-17T21:16:35.321794 | 2019-08-15T03:09:08 | 2019-08-15T03:09:08 | 215,712,787 | 0 | 1 | null | 2019-10-17T05:49:11 | 2019-10-17T05:49:10 | null | UTF-8 | Java | false | false | 1,503 | java | package com.ets.common;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.DataFormat;
public class ExcelStyleFormat{
/**
* 文本类型
*/
private CellStyle numberStyle;
/**
* 文本类型格式化
*/
private DataFormat numberformat;
/**
* 文本类型格式 千分位
*/
private CellStyle numberStyleSplit;
/**
* 文本类型格式化 千分位
*/
private DataFormat numberformatSplit;
public CellStyle getNumberStyle() {
return numberStyle;
}
public void setNumberStyle(CellStyle numberStyle) {
this.numberStyle = numberStyle;
}
public DataFormat getNumberformat() {
return numberformat;
}
public void setNumberformat(DataFormat numberformat) {
this.numberformat = numberformat;
}
public CellStyle getNumberStyleSplit() {
return numberStyleSplit;
}
public void setNumberStyleSplit(CellStyle numberStyleSplit) {
this.numberStyleSplit = numberStyleSplit;
}
public DataFormat getNumberformatSplit() {
return numberformatSplit;
}
public void setNumberformatSplit(DataFormat numberformatSplit) {
this.numberformatSplit = numberformatSplit;
}
public ExcelStyleFormat(CellStyle numberStyle, DataFormat numberformat, CellStyle numberStyleSplit,
DataFormat numberformatSplit) {
super();
this.numberStyle = numberStyle;
this.numberformat = numberformat;
this.numberStyleSplit = numberStyleSplit;
this.numberformatSplit = numberformatSplit;
}
public ExcelStyleFormat() {
super();
}
}
| [
"[email protected]"
] | |
3a7599320b449d0636ab741bf1b7afa497b4cd5d | df0cd81bdd32b29212ae1978cf48166b199a3aa8 | /src/todolist/Model.java | 10b28a757260d09d12e51c0373c00f18d9a1b470 | [] | no_license | maooya14/TodoList | 4060122c763fb2e6143b4a7f0aed34cd0c5e5209 | 2e1cfe0bb5f342948533dfb52be176a011c3df39 | refs/heads/master | 2020-03-08T19:07:51.747067 | 2018-04-06T04:57:54 | 2018-04-06T04:57:54 | 128,338,372 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,686 | 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 todolist;
import java.util.Date;
/**
*
* @author mao
*/
public class Model {
int taskCount = 0;
Task[] tasks = new Task[100];
FileHelper helper = new FileHelper();
Model() {
// Constructor
// Need to parse strings from helper
String lines[] = helper.readTasks();
taskCount = lines.length;
// loop through each line and create a new task out of it
for (int i = 0; i < taskCount; i++) {
// Create the ith new task
tasks[i] = new Task();
// Split the line where the # is
String taskLine[] = lines[i].split("#");
// Use the first part to set the new task title
tasks[i].setTitle(taskLine[0]);
// Use the second part to set the new task description
tasks[i].setDescription(taskLine[0]);
}
}
void add(String title, String description){
Task task = new Task();
task.setDescription(description);
task.setTitle(title);
// add my task to the tasks array
tasks[taskCount] = task;
taskCount = taskCount + 1;
// Need to save it tasks to file
helper.writeTasks(getTasks());
}
void remove(int index){
// This is getting into SL IB Comp Sci level now...
for (int i = index; i < taskCount; i = i + 1) {
tasks[i] = tasks[i + 1];
}
// Good spot Seamus
taskCount = taskCount - 1;
}
void edit(int index, String title, String description) {
// how can we update the information of the
// task at index?
tasks[index].setDescription(description);
tasks[index].setTitle(title);
}
String[] getTasks() {
// Create a new string array
String[] tmpTasks = new String[taskCount];
// Loop through the tasks and add a string representation
// of each one to the new array
for (int i = 0;i < taskCount; i = i + 1) {
// Assign a string representation if the ith task
// to the ith element of tmpTasks
tmpTasks[i] = tasks[i].toString();
}
// return the new array
return tmpTasks;
}
String[] getTaskValues(int index) {
String[] values = new String[2];
values[0] = tasks[index].getTitle();
values[1] = tasks[index].getDescription();
return values;
}
}
| [
"[email protected]"
] | |
07cc9cf7094560723b06a5f8ed243a5f41083ed6 | 3ccdd558ab836824f8d228f5ae2801201116e743 | /src/views/AddDrugView.java | ecbccaec1eb62ed6f96a1055100b7cd116ef4ab0 | [] | no_license | shyn48/myDoctorApp | 1de5006b03f4a6388f71ad6a4c1ddef7ed497fbe | cde4d49f27e4fd54a73db47b47efe73438b7aa59 | refs/heads/master | 2023-01-15T18:47:32.360758 | 2020-11-23T16:07:18 | 2020-11-23T16:07:18 | 284,231,707 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,082 | java | package views;
import javafx.embed.swing.SwingFXUtils;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.DatePicker;
import javafx.scene.control.TextField;
import javafx.scene.image.Image;
import javafx.scene.paint.ImagePattern;
import javafx.scene.shape.Circle;
import models.Patient;
import models.Person;
import models.DB;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.sql.*;
import java.util.ResourceBundle;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class AddDrugView implements ControllerClass, Initializable {
@FXML private Circle circleImage;
@FXML private TextField drugNameTextField;
@FXML private TextField amountTextField;
@FXML private DatePicker datePicker;
@FXML private TextField timeTextField;
private Person person;
private File imageFile;
public boolean isNumeric(String string){
try{
Double.parseDouble(string);
return true;
} catch (NumberFormatException e){
return false;
}
}
public void addBtnPushed(ActionEvent event) throws IOException, SQLException {
Connection conn = null;
PreparedStatement preparedStatement = null;
if (!validateTime(timeTextField.getText())){
System.out.println("Please enter a valid time");
return;
}
if (!isNumeric(amountTextField.getText())){
System.out.println("Invalid number in amount");
return;
}
Time time = Time.valueOf(timeTextField.getText());
try {
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/doctorApp?useSSL=false", "root", "root");
String sql = "INSERT INTO drugs (drugName, amount, drugDate, patientID, drugTime) VALUES (?,?,?,?,?)";
preparedStatement = conn.prepareStatement(sql);
Date dbDate = Date.valueOf(datePicker.getValue());
preparedStatement.setString(1, drugNameTextField.getText());
preparedStatement.setInt(2, Integer.parseInt(amountTextField.getText()));
preparedStatement.setDate(3, dbDate);
preparedStatement.setInt(4, person.getId());
preparedStatement.setTime(5, time);
preparedStatement.executeUpdate();
} catch (SQLException | NullPointerException e){
System.out.println(e.getMessage());
}
SceneChanger sc = new SceneChanger();
DrugsTableView dtv = new DrugsTableView();
sc.changeScenes(event, "drugsTableView.fxml", "View your drugs", person, dtv);
}
public void backBtnPushed(ActionEvent event) throws IOException, SQLException {
SceneChanger sc = new SceneChanger();
DrugsTableView dtv = new DrugsTableView();
sc.changeScenes(event, "drugsTableView.fxml", "View your drugs", person, dtv);
}
public boolean validateTime(String time) {
String regex = "^(?:[01]\\d|2[0123]):(?:[012345]\\d):(?:[012345]\\d)$";
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(time);
return matcher.matches();
}
@Override
public void preLoadData(Person person) throws IOException, SQLException {
this.person = person;
try {
String imgLocation = "./src/img/avatars/" + person.getImageFile().getName();
imageFile = new File(imgLocation);
BufferedImage bufferedImage = ImageIO.read(imageFile);
Image img = SwingFXUtils.toFXImage(bufferedImage, null);
circleImage.setFill(new ImagePattern(img));
} catch (IOException e) {
System.err.println(e.getMessage());
}
}
@Override
public void preLoadData(Person person, int visitID, Patient patient) throws IOException {
}
@Override
public void initialize(URL location, ResourceBundle resources) {
}
}
| [
"[email protected]"
] | |
c1e3c9bec02ec42c5cd98b173d9a7e7c400ceb85 | 8af1164bac943cef64e41bae312223c3c0e38114 | /results-java/orientechnologies--orientdb/d0ad729503f5bc93824ff7c77531dc07c32ed190/after/OSQLFunctionFormat.java | 0da51d6686e8827ad159f1a99d36b2af79c38483 | [] | 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 | 1,597 | java | /*
* Copyright 2010-2012 Luca Garulli (l.garulli--at--orientechnologies.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.orientechnologies.orient.core.sql.functions.misc;
import com.orientechnologies.orient.core.command.OCommandContext;
import com.orientechnologies.orient.core.db.record.OIdentifiable;
import com.orientechnologies.orient.core.sql.functions.OSQLFunctionAbstract;
/**
* Formats content.
*
* @author Luca Garulli (l.garulli--at--orientechnologies.com)
*
*/
public class OSQLFunctionFormat extends OSQLFunctionAbstract {
public static final String NAME = "format";
public OSQLFunctionFormat() {
super(NAME, 2, -1);
}
public Object execute(OIdentifiable iCurrentRecord, Object iCurrentResult, final Object[] iParameters, OCommandContext iContext) {
final Object[] args = new Object[iParameters.length - 1];
for (int i = 0; i < args.length; ++i)
args[i] = iParameters[i + 1];
return String.format((String) iParameters[0], args);
}
public String getSyntax() {
return "Syntax error: format(<format>, <arg1> [,<argN>]*)";
}
} | [
"[email protected]"
] | |
bd954daa3d43ec8985cabc60b953f7505873d776 | bde5bd5ce588c46062bb78ba42a5f441b971c7eb | /fr.ensma.realtimescheduling.tests/src/fr/ensma/realtimescheduling/tests/SystemTest.java | 526761957a380237e573d159b9ade48abc6bcfd2 | [] | no_license | ghidalgo3/realtimeanalysis | cbe3fe68924b0bbf7e71d152a527eb04e39f5825 | 22f16e4d2778e37262014588fede317555729653 | refs/heads/master | 2021-01-13T02:24:23.519807 | 2016-02-22T00:25:01 | 2016-02-22T00:25:01 | 36,802,970 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,807 | java | /**
*/
package fr.ensma.realtimescheduling.tests;
import fr.ensma.realtimescheduling.RealtimeschedulingFactory;
import junit.framework.TestCase;
import junit.textui.TestRunner;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>System</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class SystemTest extends TestCase {
/**
* The fixture for this System test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected fr.ensma.realtimescheduling.System fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(SystemTest.class);
}
/**
* Constructs a new System test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public SystemTest(String name) {
super(name);
}
/**
* Sets the fixture for this System test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(fr.ensma.realtimescheduling.System fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this System test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected fr.ensma.realtimescheduling.System getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(RealtimeschedulingFactory.eINSTANCE.createSystem());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //SystemTest
| [
"[email protected]"
] | |
a6c3f08b003759aac01790bfd4c6dfb22abe411b | d4eba26c6c664612af7b7f40a33c4f3642ec3ea7 | /GradeAsst/src/main/java/net/cdonald/googleClassroom/gui/findUngraded/BasicSheetInfo.java | 3049a35dce087427a46d21ea73285d2352de806d | [] | no_license | keithmacspace/classroomGrader2 | ce2b81b4d9d336e9c30ee6cfb0084a1a65209c0e | 8b69909d6c727e2e6205322cbb06800fc855a3cd | refs/heads/master | 2021-07-11T11:02:25.227884 | 2020-10-25T21:35:36 | 2020-10-25T21:35:36 | 206,634,104 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,307 | java | package net.cdonald.googleClassroom.gui.findUngraded;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import net.cdonald.googleClassroom.googleClassroomInterface.GoogleClassroomCommunicator;
import net.cdonald.googleClassroom.googleClassroomInterface.GradeSheet;
import net.cdonald.googleClassroom.googleClassroomInterface.LoadSheetData;
import net.cdonald.googleClassroom.googleClassroomInterface.SaveSheetData;
import net.cdonald.googleClassroom.model.GoogleSheetData;
import net.cdonald.googleClassroom.model.StudentData;
import net.cdonald.googleClassroom.utils.SimpleUtils;
public class BasicSheetInfo extends GradeSheet {
public class AssignmentData {
StudentData studentData;
Date submitDate;
boolean unparsableDate;
public AssignmentData(StudentData student, String date) {
studentData = student;
submitDate = null;
unparsableDate = false;
if (date != null && date.length() > 3) {
submitDate = SimpleUtils.createDate(date);
unparsableDate = (submitDate == null);
}
}
public StudentData getStudent() {
return studentData;
}
public Date getSubmitDate() {
return submitDate;
}
public String toString() {
return studentData.getFirstName() + " " + studentData.getName() + " " + submitDate;
}
public boolean isUnparsableDate() {
return unparsableDate;
}
}
private List<AssignmentData> assignmentInfo;
private LoadSheetData data;
private String graderName;
private String assignmentName;
private boolean gradeSheet;
public BasicSheetInfo(GoogleClassroomCommunicator communicator, GoogleSheetData targetFile, LoadSheetData data) {
super(communicator, targetFile);
this.data = data;
assignmentInfo = new ArrayList<AssignmentData>();
}
public boolean isAGradeSheet() {
return gradeSheet;
}
public void readInfo(List<StudentData> students) throws IOException {
assignmentInfo.clear();
try {
gradeSheet = true;
processRows(data, students);
}
catch (NotAGradeSheetException e){
gradeSheet = false;
return;
}
if (data != null) {
loadAssignmentName(data);
processMissingAssignments(data);
loadGraderName(data);
}
}
public boolean hasInfo() {
return assignmentInfo.size() != 0;
}
public List<AssignmentData> getAssignmentInfo() {
return assignmentInfo;
}
public String getAssignmentName() {
return assignmentName;
}
public String getGraderName() {
return graderName;
}
private void loadGraderName(LoadSheetData data) {
int rowNum = getRowLocation(RowTypes.GRADED_BY);
if (rowNum >= 0 && data.getNumRows() > rowNum) {
List<Object> graderNameRow = data.readRow(rowNum);
if (graderNameRow != null) {
for (int i = 1; i < graderNameRow.size(); i++) {
if (graderNameRow.get(i) instanceof String) {
String colString = (String)graderNameRow.get(i);
if (colString.length() > 1 && colString.equals(RowTypes.GRADED_BY.getSearchString()) == false) {
graderName = colString;
return;
}
}
}
}
}
}
private void loadAssignmentName(LoadSheetData data) {
int rowNum = getRowLocation(RowTypes.ASSIGNMENT);
if (rowNum >= 0 && data.getNumRows() > rowNum) {
List<Object> assignmentNameRow = data.readRow(rowNum);
if (assignmentNameRow != null) {
for (int i = 0; i < assignmentNameRow.size(); i++) {
if (assignmentNameRow.get(i) instanceof String) {
String colString = (String)assignmentNameRow.get(i);
if (colString.equalsIgnoreCase("Name:") && assignmentNameRow.size() > i + 1) {
assignmentName = assignmentNameRow.get(i + 1).toString();
return;
}
}
}
}
}
}
private void processMissingAssignments(LoadSheetData data) {
if (assignmentName != null){
for (StudentRow student : getStudentRowList()) {
int rowNum = student.getRowNumber();
if (rowNum > 0 && data.getNumRows() > rowNum) {
List<Object> studentRow = data.readRow(rowNum);
if (studentRow.size() > SUBMIT_DATA_COLUMN) {
String submit = studentRow.get(SUBMIT_DATA_COLUMN).toString();
if (submit == null || submit.length() < 3) {
assignmentInfo.add(new AssignmentData(student.getStudent(), submit));
}
}
}
}
}
}
public void printDebugInfo() {
System.out.println(assignmentName);
for (AssignmentData student : assignmentInfo) {
System.out.println(student);
}
}
public class NotAGradeSheetException extends RuntimeException {
public NotAGradeSheetException() {
super();
// TODO Auto-generated constructor stub
}
public NotAGradeSheetException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
}
@Override
public SaveSheetData getSheetSaveState() {
return null;
}
@Override
public void fillDefaultColumns() {
throw new NotAGradeSheetException();
}
@Override
protected void addColumnLocation(String columnName, int location) {
}
protected void insertRow(LoadSheetData data, int rowNum, RowTypes rowType) {
throw new NotAGradeSheetException();
}
}
| [
"[email protected]"
] | |
c05959bf1b2fae23ebf0b0860c6a8419af4d0511 | e9f77d290fe31f5d0e6d2c61fdb123326a738024 | /src/main/java/maths/errorfunctions/MSEVectorFunction.java | 552f2beb5fc61075462b3733bcb8bcaa2a1d9cb8 | [] | no_license | pockerman/tech3java | b9e7bb58f8a4bae74d4e28c0ac12616a4066294d | 0c126be763aa50f941aab1cfd37f0b49d19706fc | refs/heads/master | 2022-11-20T08:42:00.883282 | 2019-12-27T09:43:12 | 2019-12-27T09:43:12 | 202,491,575 | 1 | 2 | null | 2022-11-15T23:47:46 | 2019-08-15T07:05:24 | Java | UTF-8 | Java | false | false | 2,675 | java | package maths.errorfunctions;
import datastructs.interfaces.I2DDataSet;
import datastructs.interfaces.IVector;
import datastructs.maths.Vector;
import maths.functions.IRegularizerFunction;
import maths.functions.IVectorRealFunction;
/**
* The Mean Square Error or MSE is defined as
* MSE = 1/N Sum_{i = 1}^N (y_i - \hat{y}_i)^2
*
* The \hat{y} value is modeled after the IVectorRealFunction passed
* to the object when instantiated
*/
public class MSEVectorFunction implements IVectorErrorRealFunction {
/**
* Constructor
*/
public MSEVectorFunction(IVectorRealFunction<IVector<Double>> hypothesis ){
this.hypothesis = hypothesis;
this.regularizerFunction = null;
}
/**
* Constructor
*/
public MSEVectorFunction(IVectorRealFunction<IVector<Double>> hypothesis, IRegularizerFunction regularizerFunction ){
this.hypothesis = hypothesis;
this.regularizerFunction = regularizerFunction;
}
/**
* Evaluate the error function using the given data, labels
* @param data
* @param labels
* @return
*/
@Override
public <DataSetType extends I2DDataSet> double evaluate(DataSetType data, Vector labels){
if(data.m() != labels.size()){
throw new IllegalArgumentException("Invalid number of data points and labels vector size");
}
double result = 0.0;
for(int rowIdx=0; rowIdx<data.m(); ++rowIdx){
Vector row = (Vector) data.getRow(rowIdx);
double diff = labels.get(rowIdx) - this.hypothesis.evaluate(row);
diff *= diff;
result += diff;
}
result /= data.m();
if(regularizerFunction != null){
result += regularizerFunction.evaluate(null);
}
return result;
}
/**
* Returns the gradients on the given data
*/
@Override
public <DataSetType extends I2DDataSet> Vector gradients(DataSetType data, Vector labels){
Vector gradients = new Vector(this.hypothesis.numCoeffs(), 0.0);
for(int rowIdx=0; rowIdx<data.m(); ++rowIdx){
Vector row = (Vector) data.getRow(rowIdx);
double diff = (labels.get(rowIdx) - this.hypothesis.evaluate(row));
IVector<Double> hypothesisGrads = this.hypothesis.coeffGradients(row);
for(int coeff=0; coeff<this.hypothesis.numCoeffs(); ++coeff){
gradients.add(coeff, (-2.0/data.m())*diff*hypothesisGrads.get(coeff));
}
}
return gradients;
}
private IVectorRealFunction<IVector<Double>> hypothesis;
IRegularizerFunction regularizerFunction;
}
| [
"[email protected]"
] | |
7a95b8ea7f21a62b74b001ccbab78cfcb1255455 | d2ee5f51c4dbb821a91304df663d0b7fca847834 | /build/generated/source/r/debug/com/amazon/identity/auth/device/lwaapp/R.java | 0f496c9fc1e1c6e2d7d52f2f96c15037360bea6f | [
"Apache-2.0"
] | permissive | KanyonWyman/EssentialBox | b9e1a77511e58707044577743fed0cc1ded5c814 | f034bda578771a8f880daf39bf5813c2ef3333fe | refs/heads/master | 2020-04-25T00:02:18.852347 | 2019-02-24T19:06:52 | 2019-02-24T19:06:52 | 172,364,899 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 624,424 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.amazon.identity.auth.device.lwaapp;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f010000;
public static final int abc_fade_out=0x7f010001;
public static final int abc_grow_fade_in_from_bottom=0x7f010002;
public static final int abc_popup_enter=0x7f010003;
public static final int abc_popup_exit=0x7f010004;
public static final int abc_shrink_fade_out_from_bottom=0x7f010005;
public static final int abc_slide_in_bottom=0x7f010006;
public static final int abc_slide_in_top=0x7f010007;
public static final int abc_slide_out_bottom=0x7f010008;
public static final int abc_slide_out_top=0x7f010009;
public static final int abc_tooltip_enter=0x7f01000a;
public static final int abc_tooltip_exit=0x7f01000b;
}
public static final class attr {
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f020000;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f020001;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarPopupTheme=0x7f020002;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap_content</td><td>0</td><td></td></tr>
* </table>
*/
public static final int actionBarSize=0x7f020003;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f020004;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f020005;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f020006;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f020007;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f020008;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f020009;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f02000a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f02000b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f02000c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionLayout=0x7f02000d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f02000e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f02000f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f020010;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f020011;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f020012;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f020013;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f020014;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f020015;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f020016;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f020017;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f020018;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f020019;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f02001a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f02001b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f02001c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f02001d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f02001e;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int actionProviderClass=0x7f02001f;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int actionViewClass=0x7f020020;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f020021;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f020022;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int alertDialogCenterButtons=0x7f020023;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f020024;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f020025;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int allowStacking=0x7f020026;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int alpha=0x7f020027;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*/
public static final int alphabeticModifiers=0x7f020028;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int arrowHeadLength=0x7f020029;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int arrowShaftLength=0x7f02002a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f02002b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int autoSizeMaxTextSize=0x7f02002c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int autoSizeMinTextSize=0x7f02002d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int autoSizePresetSizes=0x7f02002e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int autoSizeStepGranularity=0x7f02002f;
/**
* <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>uniform</td><td>1</td><td></td></tr>
* </table>
*/
public static final int autoSizeTextType=0x7f020030;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int background=0x7f020031;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f020032;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f020033;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundTint=0x7f020034;
/**
* <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 backgroundTintMode=0x7f020035;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int barLength=0x7f020036;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int barrierAllowsGoneWidgets=0x7f020037;
/**
* <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>3</td><td></td></tr>
* <tr><td>end</td><td>6</td><td></td></tr>
* <tr><td>left</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>1</td><td></td></tr>
* <tr><td>start</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>2</td><td></td></tr>
* </table>
*/
public static final int barrierDirection=0x7f020038;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020039;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02003a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02003b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02003c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02003d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02003e;
/**
* <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=0x7f02003f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int buttonIconDimen=0x7f020040;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020041;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020042;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020043;
/**
* <p>May be a color value, in 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=0x7f020044;
/**
* <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 buttonTintMode=0x7f020045;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int chainUseRtl=0x7f020046;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020047;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020048;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020049;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02004a;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int collapseContentDescription=0x7f02004b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02004c;
/**
* <p>May be a color value, in 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=0x7f02004d;
/**
* <p>May be a color value, in 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=0x7f02004e;
/**
* <p>May be a color value, in 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=0x7f02004f;
/**
* <p>May be a color value, in 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=0x7f020050;
/**
* <p>May be a color value, in 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=0x7f020051;
/**
* <p>May be a color value, in 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=0x7f020052;
/**
* <p>May be a color value, in 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=0x7f020053;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorError=0x7f020054;
/**
* <p>May be a color value, in 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=0x7f020055;
/**
* <p>May be a color value, in 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=0x7f020056;
/**
* <p>May be a color value, in 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=0x7f020057;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020058;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int constraintSet=0x7f020059;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int constraint_referenced_ids=0x7f02005a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int content=0x7f02005b;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int contentDescription=0x7f02005c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02005d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02005e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02005f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020060;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020061;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020062;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020063;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int coordinatorLayoutStyle=0x7f020064;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020065;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int defaultQueryHint=0x7f020066;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020067;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020068;
/**
* <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=0x7f020069;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int divider=0x7f02006a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02006b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02006c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02006d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02006e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02006f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020070;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020071;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020072;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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=0x7f020073;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020074;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020075;
/**
* <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>gone</td><td>0</td><td></td></tr>
* <tr><td>invisible</td><td>1</td><td></td></tr>
* </table>
*/
public static final int emptyVisibility=0x7f020076;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020077;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int font=0x7f020078;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontFamily=0x7f020079;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontProviderAuthority=0x7f02007a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fontProviderCerts=0x7f02007b;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>async</td><td>1</td><td></td></tr>
* <tr><td>blocking</td><td>0</td><td></td></tr>
* </table>
*/
public static final int fontProviderFetchStrategy=0x7f02007c;
/**
* <p>May be an integer value, such as "<code>100</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>forever</td><td>ffffffff</td><td></td></tr>
* </table>
*/
public static final int fontProviderFetchTimeout=0x7f02007d;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontProviderPackage=0x7f02007e;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontProviderQuery=0x7f02007f;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>italic</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*/
public static final int fontStyle=0x7f020080;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int fontWeight=0x7f020081;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020082;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020083;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020084;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hideOnContentScroll=0x7f020085;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020086;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020087;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020088;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int iconTint=0x7f020089;
/**
* <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 iconTintMode=0x7f02008a;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int iconifiedByDefault=0x7f02008b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02008c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02008d;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int initialActivityCount=0x7f02008e;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int isLightTheme=0x7f02008f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020090;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020091;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020092;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020093;
/**
* <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=0x7f020094;
/**
* <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=0x7f020095;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int layout_constrainedHeight=0x7f020096;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int layout_constrainedWidth=0x7f020097;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintBaseline_creator=0x7f020098;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintBaseline_toBaselineOf=0x7f020099;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintBottom_creator=0x7f02009a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintBottom_toBottomOf=0x7f02009b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintBottom_toTopOf=0x7f02009c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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_constraintCircle=0x7f02009d;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintCircleAngle=0x7f02009e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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 layout_constraintCircleRadius=0x7f02009f;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int layout_constraintDimensionRatio=0x7f0200a0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintEnd_toEndOf=0x7f0200a1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintEnd_toStartOf=0x7f0200a2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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 layout_constraintGuide_begin=0x7f0200a3;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_constraintGuide_end=0x7f0200a4;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintGuide_percent=0x7f0200a5;
/**
* <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>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_constraintHeight_default=0x7f0200a6;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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</td><td>fffffffe</td><td></td></tr>
* </table>
*/
public static final int layout_constraintHeight_max=0x7f0200a7;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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</td><td>fffffffe</td><td></td></tr>
* </table>
*/
public static final int layout_constraintHeight_min=0x7f0200a8;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintHeight_percent=0x7f0200a9;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintHorizontal_bias=0x7f0200aa;
/**
* <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>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_constraintHorizontal_chainStyle=0x7f0200ab;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintHorizontal_weight=0x7f0200ac;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintLeft_creator=0x7f0200ad;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintLeft_toLeftOf=0x7f0200ae;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintLeft_toRightOf=0x7f0200af;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintRight_creator=0x7f0200b0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintRight_toLeftOf=0x7f0200b1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintRight_toRightOf=0x7f0200b2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintStart_toEndOf=0x7f0200b3;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintStart_toStartOf=0x7f0200b4;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintTop_creator=0x7f0200b5;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintTop_toBottomOf=0x7f0200b6;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintTop_toTopOf=0x7f0200b7;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintVertical_bias=0x7f0200b8;
/**
* <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>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_constraintVertical_chainStyle=0x7f0200b9;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintVertical_weight=0x7f0200ba;
/**
* <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>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_constraintWidth_default=0x7f0200bb;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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</td><td>fffffffe</td><td></td></tr>
* </table>
*/
public static final int layout_constraintWidth_max=0x7f0200bc;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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</td><td>fffffffe</td><td></td></tr>
* </table>
*/
public static final int layout_constraintWidth_min=0x7f0200bd;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintWidth_percent=0x7f0200be;
/**
* <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>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_dodgeInsetEdges=0x7f0200bf;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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 layout_editor_absoluteX=0x7f0200c0;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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 layout_editor_absoluteY=0x7f0200c1;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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 layout_goneMarginBottom=0x7f0200c2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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 layout_goneMarginEnd=0x7f0200c3;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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 layout_goneMarginLeft=0x7f0200c4;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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 layout_goneMarginRight=0x7f0200c5;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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 layout_goneMarginStart=0x7f0200c6;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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 layout_goneMarginTop=0x7f0200c7;
/**
* <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>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_insetEdge=0x7f0200c8;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_keyline=0x7f0200c9;
/**
* <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>barrier</td><td>2</td><td></td></tr>
* <tr><td>chains</td><td>4</td><td></td></tr>
* <tr><td>dimensions</td><td>8</td><td></td></tr>
* <tr><td>direct</td><td>1</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>standard</td><td>3</td><td></td></tr>
* </table>
*/
public static final int layout_optimizationLevel=0x7f0200ca;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200cb;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200cc;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200cd;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200ce;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200cf;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200d0;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200d1;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200d2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200d3;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200d4;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200d5;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200d6;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int logoDescription=0x7f0200d7;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200d8;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int measureWithLargestChild=0x7f0200d9;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200da;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int navigationContentDescription=0x7f0200db;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200dc;
/**
* <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=0x7f0200dd;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*/
public static final int numericModifiers=0x7f0200de;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int overlapAnchor=0x7f0200df;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200e0;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200e1;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200e2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200e3;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200e4;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200e5;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200e6;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200e7;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200e8;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200e9;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int preserveIconSpacing=0x7f0200ea;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f0200eb;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200ec;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200ed;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int queryHint=0x7f0200ee;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200ef;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200f0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200f1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200f2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200f3;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200f4;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200f5;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200f6;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200f7;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f0200f8;
/**
* <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=0x7f0200f9;
/**
* <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=0x7f0200fa;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int showText=0x7f0200fb;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int showTitle=0x7f0200fc;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200fd;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int spinBars=0x7f0200fe;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0200ff;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020100;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int splitTrack=0x7f020101;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020102;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_above_anchor=0x7f020103;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int statusBarBackground=0x7f020104;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020105;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020106;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int subtitle=0x7f020107;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020108;
/**
* <p>May be a color value, in 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=0x7f020109;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02010a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02010b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02010c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02010d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02010e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02010f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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=0x7f020110;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020111;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020112;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceListItemSecondary=0x7f020113;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020114;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020115;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020116;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020117;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020118;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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=0x7f020119;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>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=0x7f02011a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02011b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02011c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02011d;
/**
* <p>May be a color value, in 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=0x7f02011e;
/**
* <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=0x7f02011f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020120;
/**
* <p>May be a color value, in 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=0x7f020121;
/**
* <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=0x7f020122;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tint=0x7f020123;
/**
* <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 tintMode=0x7f020124;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int title=0x7f020125;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020126;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020127;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020128;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020129;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02012a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02012b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02012c;
/**
* <p>May be a color value, in 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=0x7f02012d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02012e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f02012f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020130;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tooltipForegroundColor=0x7f020131;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tooltipFrameBackground=0x7f020132;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int tooltipText=0x7f020133;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020134;
/**
* <p>May be a color value, in 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=0x7f020135;
/**
* <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=0x7f020136;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int viewInflaterClass=0x7f020137;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f020138;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionBar=0x7f020139;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionBarOverlay=0x7f02013a;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionModeOverlay=0x7f02013b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02013c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02013d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02013e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f02013f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020140;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.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=0x7f020141;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowNoTitle=0x7f020142;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f030000;
public static final int abc_allow_stacked_button_bar=0x7f030001;
public static final int abc_config_actionMenuItemAllCaps=0x7f030002;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f030003;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f040000;
public static final int abc_background_cache_hint_selector_material_light=0x7f040001;
public static final int abc_btn_colored_borderless_text_material=0x7f040002;
public static final int abc_btn_colored_text_material=0x7f040003;
public static final int abc_color_highlight_material=0x7f040004;
public static final int abc_hint_foreground_material_dark=0x7f040005;
public static final int abc_hint_foreground_material_light=0x7f040006;
public static final int abc_input_method_navigation_guard=0x7f040007;
public static final int abc_primary_text_disable_only_material_dark=0x7f040008;
public static final int abc_primary_text_disable_only_material_light=0x7f040009;
public static final int abc_primary_text_material_dark=0x7f04000a;
public static final int abc_primary_text_material_light=0x7f04000b;
public static final int abc_search_url_text=0x7f04000c;
public static final int abc_search_url_text_normal=0x7f04000d;
public static final int abc_search_url_text_pressed=0x7f04000e;
public static final int abc_search_url_text_selected=0x7f04000f;
public static final int abc_secondary_text_material_dark=0x7f040010;
public static final int abc_secondary_text_material_light=0x7f040011;
public static final int abc_tint_btn_checkable=0x7f040012;
public static final int abc_tint_default=0x7f040013;
public static final int abc_tint_edittext=0x7f040014;
public static final int abc_tint_seek_thumb=0x7f040015;
public static final int abc_tint_spinner=0x7f040016;
public static final int abc_tint_switch_track=0x7f040017;
public static final int accent_material_dark=0x7f040018;
public static final int accent_material_light=0x7f040019;
public static final int background_floating_material_dark=0x7f04001a;
public static final int background_floating_material_light=0x7f04001b;
public static final int background_material_dark=0x7f04001c;
public static final int background_material_light=0x7f04001d;
public static final int blue=0x7f04001e;
public static final int bright_foreground_disabled_material_dark=0x7f04001f;
public static final int bright_foreground_disabled_material_light=0x7f040020;
public static final int bright_foreground_inverse_material_dark=0x7f040021;
public static final int bright_foreground_inverse_material_light=0x7f040022;
public static final int bright_foreground_material_dark=0x7f040023;
public static final int bright_foreground_material_light=0x7f040024;
public static final int button_material_dark=0x7f040025;
public static final int button_material_light=0x7f040026;
public static final int dim_foreground_disabled_material_dark=0x7f040027;
public static final int dim_foreground_disabled_material_light=0x7f040028;
public static final int dim_foreground_material_dark=0x7f040029;
public static final int dim_foreground_material_light=0x7f04002a;
public static final int error_color_material=0x7f04002b;
public static final int foreground_material_dark=0x7f04002c;
public static final int foreground_material_light=0x7f04002d;
public static final int gray=0x7f04002e;
public static final int highlighted_text_material_dark=0x7f04002f;
public static final int highlighted_text_material_light=0x7f040030;
public static final int login_button_image_state=0x7f040031;
public static final int logout_text_color_state=0x7f040032;
public static final int material_blue_grey_800=0x7f040033;
public static final int material_blue_grey_900=0x7f040034;
public static final int material_blue_grey_950=0x7f040035;
public static final int material_deep_teal_200=0x7f040036;
public static final int material_deep_teal_500=0x7f040037;
public static final int material_grey_100=0x7f040038;
public static final int material_grey_300=0x7f040039;
public static final int material_grey_50=0x7f04003a;
public static final int material_grey_600=0x7f04003b;
public static final int material_grey_800=0x7f04003c;
public static final int material_grey_850=0x7f04003d;
public static final int material_grey_900=0x7f04003e;
public static final int notification_action_color_filter=0x7f04003f;
public static final int notification_icon_bg_color=0x7f040040;
public static final int notification_material_background_media_default_color=0x7f040041;
public static final int orange=0x7f040042;
public static final int primary_dark_material_dark=0x7f040043;
public static final int primary_dark_material_light=0x7f040044;
public static final int primary_material_dark=0x7f040045;
public static final int primary_material_light=0x7f040046;
public static final int primary_text_default_material_dark=0x7f040047;
public static final int primary_text_default_material_light=0x7f040048;
public static final int primary_text_disabled_material_dark=0x7f040049;
public static final int primary_text_disabled_material_light=0x7f04004a;
public static final int ripple_material_dark=0x7f04004b;
public static final int ripple_material_light=0x7f04004c;
public static final int secondary_text_default_material_dark=0x7f04004d;
public static final int secondary_text_default_material_light=0x7f04004e;
public static final int secondary_text_disabled_material_dark=0x7f04004f;
public static final int secondary_text_disabled_material_light=0x7f040050;
public static final int switch_thumb_disabled_material_dark=0x7f040051;
public static final int switch_thumb_disabled_material_light=0x7f040052;
public static final int switch_thumb_material_dark=0x7f040053;
public static final int switch_thumb_material_light=0x7f040054;
public static final int switch_thumb_normal_material_dark=0x7f040055;
public static final int switch_thumb_normal_material_light=0x7f040056;
public static final int tooltip_background_dark=0x7f040057;
public static final int tooltip_background_light=0x7f040058;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f050000;
public static final int abc_action_bar_content_inset_with_nav=0x7f050001;
public static final int abc_action_bar_default_height_material=0x7f050002;
public static final int abc_action_bar_default_padding_end_material=0x7f050003;
public static final int abc_action_bar_default_padding_start_material=0x7f050004;
public static final int abc_action_bar_elevation_material=0x7f050005;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f050006;
public static final int abc_action_bar_overflow_padding_end_material=0x7f050007;
public static final int abc_action_bar_overflow_padding_start_material=0x7f050008;
public static final int abc_action_bar_progress_bar_size=0x7f050009;
public static final int abc_action_bar_stacked_max_height=0x7f05000a;
public static final int abc_action_bar_stacked_tab_max_width=0x7f05000b;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05000c;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f05000d;
public static final int abc_action_button_min_height_material=0x7f05000e;
public static final int abc_action_button_min_width_material=0x7f05000f;
public static final int abc_action_button_min_width_overflow_material=0x7f050010;
public static final int abc_alert_dialog_button_bar_height=0x7f050011;
public static final int abc_alert_dialog_button_dimen=0x7f050012;
public static final int abc_button_inset_horizontal_material=0x7f050013;
public static final int abc_button_inset_vertical_material=0x7f050014;
public static final int abc_button_padding_horizontal_material=0x7f050015;
public static final int abc_button_padding_vertical_material=0x7f050016;
public static final int abc_cascading_menus_min_smallest_width=0x7f050017;
public static final int abc_config_prefDialogWidth=0x7f050018;
public static final int abc_control_corner_material=0x7f050019;
public static final int abc_control_inset_material=0x7f05001a;
public static final int abc_control_padding_material=0x7f05001b;
public static final int abc_dialog_fixed_height_major=0x7f05001c;
public static final int abc_dialog_fixed_height_minor=0x7f05001d;
public static final int abc_dialog_fixed_width_major=0x7f05001e;
public static final int abc_dialog_fixed_width_minor=0x7f05001f;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f050020;
public static final int abc_dialog_list_padding_top_no_title=0x7f050021;
public static final int abc_dialog_min_width_major=0x7f050022;
public static final int abc_dialog_min_width_minor=0x7f050023;
public static final int abc_dialog_padding_material=0x7f050024;
public static final int abc_dialog_padding_top_material=0x7f050025;
public static final int abc_dialog_title_divider_material=0x7f050026;
public static final int abc_disabled_alpha_material_dark=0x7f050027;
public static final int abc_disabled_alpha_material_light=0x7f050028;
public static final int abc_dropdownitem_icon_width=0x7f050029;
public static final int abc_dropdownitem_text_padding_left=0x7f05002a;
public static final int abc_dropdownitem_text_padding_right=0x7f05002b;
public static final int abc_edit_text_inset_bottom_material=0x7f05002c;
public static final int abc_edit_text_inset_horizontal_material=0x7f05002d;
public static final int abc_edit_text_inset_top_material=0x7f05002e;
public static final int abc_floating_window_z=0x7f05002f;
public static final int abc_list_item_padding_horizontal_material=0x7f050030;
public static final int abc_panel_menu_list_width=0x7f050031;
public static final int abc_progress_bar_height_material=0x7f050032;
public static final int abc_search_view_preferred_height=0x7f050033;
public static final int abc_search_view_preferred_width=0x7f050034;
public static final int abc_seekbar_track_background_height_material=0x7f050035;
public static final int abc_seekbar_track_progress_height_material=0x7f050036;
public static final int abc_select_dialog_padding_start_material=0x7f050037;
public static final int abc_switch_padding=0x7f050038;
public static final int abc_text_size_body_1_material=0x7f050039;
public static final int abc_text_size_body_2_material=0x7f05003a;
public static final int abc_text_size_button_material=0x7f05003b;
public static final int abc_text_size_caption_material=0x7f05003c;
public static final int abc_text_size_display_1_material=0x7f05003d;
public static final int abc_text_size_display_2_material=0x7f05003e;
public static final int abc_text_size_display_3_material=0x7f05003f;
public static final int abc_text_size_display_4_material=0x7f050040;
public static final int abc_text_size_headline_material=0x7f050041;
public static final int abc_text_size_large_material=0x7f050042;
public static final int abc_text_size_medium_material=0x7f050043;
public static final int abc_text_size_menu_header_material=0x7f050044;
public static final int abc_text_size_menu_material=0x7f050045;
public static final int abc_text_size_small_material=0x7f050046;
public static final int abc_text_size_subhead_material=0x7f050047;
public static final int abc_text_size_subtitle_material_toolbar=0x7f050048;
public static final int abc_text_size_title_material=0x7f050049;
public static final int abc_text_size_title_material_toolbar=0x7f05004a;
public static final int activity_horizontal_margin=0x7f05004b;
public static final int activity_vertical_margin=0x7f05004c;
public static final int compat_button_inset_horizontal_material=0x7f05004d;
public static final int compat_button_inset_vertical_material=0x7f05004e;
public static final int compat_button_padding_horizontal_material=0x7f05004f;
public static final int compat_button_padding_vertical_material=0x7f050050;
public static final int compat_control_corner_material=0x7f050051;
public static final int disabled_alpha_material_dark=0x7f050052;
public static final int disabled_alpha_material_light=0x7f050053;
public static final int highlight_alpha_material_colored=0x7f050054;
public static final int highlight_alpha_material_dark=0x7f050055;
public static final int highlight_alpha_material_light=0x7f050056;
public static final int hint_alpha_material_dark=0x7f050057;
public static final int hint_alpha_material_light=0x7f050058;
public static final int hint_pressed_alpha_material_dark=0x7f050059;
public static final int hint_pressed_alpha_material_light=0x7f05005a;
public static final int navigation_drawer_width=0x7f05005b;
public static final int notification_action_icon_size=0x7f05005c;
public static final int notification_action_text_size=0x7f05005d;
public static final int notification_big_circle_margin=0x7f05005e;
public static final int notification_content_margin_start=0x7f05005f;
public static final int notification_large_icon_height=0x7f050060;
public static final int notification_large_icon_width=0x7f050061;
public static final int notification_main_column_padding_top=0x7f050062;
public static final int notification_media_narrow_margin=0x7f050063;
public static final int notification_right_icon_size=0x7f050064;
public static final int notification_right_side_padding_top=0x7f050065;
public static final int notification_small_icon_background_padding=0x7f050066;
public static final int notification_small_icon_size_as_large=0x7f050067;
public static final int notification_subtext_size=0x7f050068;
public static final int notification_top_pad=0x7f050069;
public static final int notification_top_pad_large_text=0x7f05006a;
public static final int tooltip_corner_radius=0x7f05006b;
public static final int tooltip_horizontal_padding=0x7f05006c;
public static final int tooltip_margin=0x7f05006d;
public static final int tooltip_precise_anchor_extra_offset=0x7f05006e;
public static final int tooltip_precise_anchor_threshold=0x7f05006f;
public static final int tooltip_vertical_padding=0x7f050070;
public static final int tooltip_y_offset_non_touch=0x7f050071;
public static final int tooltip_y_offset_touch=0x7f050072;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f060000;
public static final int abc_action_bar_item_background_material=0x7f060001;
public static final int abc_btn_borderless_material=0x7f060002;
public static final int abc_btn_check_material=0x7f060003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f060004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f060005;
public static final int abc_btn_colored_material=0x7f060006;
public static final int abc_btn_default_mtrl_shape=0x7f060007;
public static final int abc_btn_radio_material=0x7f060008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f060009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f06000a;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f06000b;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f06000c;
public static final int abc_cab_background_internal_bg=0x7f06000d;
public static final int abc_cab_background_top_material=0x7f06000e;
public static final int abc_cab_background_top_mtrl_alpha=0x7f06000f;
public static final int abc_control_background_material=0x7f060010;
public static final int abc_dialog_material_background=0x7f060011;
public static final int abc_edit_text_material=0x7f060012;
public static final int abc_ic_ab_back_material=0x7f060013;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f060014;
public static final int abc_ic_clear_material=0x7f060015;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f060016;
public static final int abc_ic_go_search_api_material=0x7f060017;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f060018;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f060019;
public static final int abc_ic_menu_overflow_material=0x7f06001a;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f06001b;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f06001c;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f06001d;
public static final int abc_ic_search_api_material=0x7f06001e;
public static final int abc_ic_star_black_16dp=0x7f06001f;
public static final int abc_ic_star_black_36dp=0x7f060020;
public static final int abc_ic_star_black_48dp=0x7f060021;
public static final int abc_ic_star_half_black_16dp=0x7f060022;
public static final int abc_ic_star_half_black_36dp=0x7f060023;
public static final int abc_ic_star_half_black_48dp=0x7f060024;
public static final int abc_ic_voice_search_api_material=0x7f060025;
public static final int abc_item_background_holo_dark=0x7f060026;
public static final int abc_item_background_holo_light=0x7f060027;
public static final int abc_list_divider_mtrl_alpha=0x7f060028;
public static final int abc_list_focused_holo=0x7f060029;
public static final int abc_list_longpressed_holo=0x7f06002a;
public static final int abc_list_pressed_holo_dark=0x7f06002b;
public static final int abc_list_pressed_holo_light=0x7f06002c;
public static final int abc_list_selector_background_transition_holo_dark=0x7f06002d;
public static final int abc_list_selector_background_transition_holo_light=0x7f06002e;
public static final int abc_list_selector_disabled_holo_dark=0x7f06002f;
public static final int abc_list_selector_disabled_holo_light=0x7f060030;
public static final int abc_list_selector_holo_dark=0x7f060031;
public static final int abc_list_selector_holo_light=0x7f060032;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f060033;
public static final int abc_popup_background_mtrl_mult=0x7f060034;
public static final int abc_ratingbar_indicator_material=0x7f060035;
public static final int abc_ratingbar_material=0x7f060036;
public static final int abc_ratingbar_small_material=0x7f060037;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f060038;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f060039;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f06003a;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f06003b;
public static final int abc_scrubber_track_mtrl_alpha=0x7f06003c;
public static final int abc_seekbar_thumb_material=0x7f06003d;
public static final int abc_seekbar_tick_mark_material=0x7f06003e;
public static final int abc_seekbar_track_material=0x7f06003f;
public static final int abc_spinner_mtrl_am_alpha=0x7f060040;
public static final int abc_spinner_textfield_background_material=0x7f060041;
public static final int abc_switch_thumb_material=0x7f060042;
public static final int abc_switch_track_mtrl_alpha=0x7f060043;
public static final int abc_tab_indicator_material=0x7f060044;
public static final int abc_tab_indicator_mtrl_alpha=0x7f060045;
public static final int abc_text_cursor_material=0x7f060046;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f060047;
public static final int abc_text_select_handle_left_mtrl_light=0x7f060048;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f060049;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f06004a;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f06004b;
public static final int abc_text_select_handle_right_mtrl_light=0x7f06004c;
public static final int abc_textfield_activated_mtrl_alpha=0x7f06004d;
public static final int abc_textfield_default_mtrl_alpha=0x7f06004e;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f06004f;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f060050;
public static final int abc_textfield_search_material=0x7f060051;
public static final int abc_vector_test=0x7f060052;
public static final int app_package=0x7f060053;
public static final int btn_sqr_color_grey=0x7f060054;
public static final int btnlwa_gold_loginwithamazon=0x7f060055;
public static final int btnlwa_gold_loginwithamazon_pressed=0x7f060056;
public static final int btnlwa_launcher=0x7f060057;
public static final int drawer_shadow=0x7f060058;
public static final int ic_drawer=0x7f060059;
public static final int logo=0x7f06005a;
public static final int logo2=0x7f06005b;
public static final int notification_action_background=0x7f06005c;
public static final int notification_bg=0x7f06005d;
public static final int notification_bg_low=0x7f06005e;
public static final int notification_bg_low_normal=0x7f06005f;
public static final int notification_bg_low_pressed=0x7f060060;
public static final int notification_bg_normal=0x7f060061;
public static final int notification_bg_normal_pressed=0x7f060062;
public static final int notification_icon_background=0x7f060063;
public static final int notification_template_icon_bg=0x7f060064;
public static final int notification_template_icon_low_bg=0x7f060065;
public static final int notification_tile_bg=0x7f060066;
public static final int notify_panel_notification_icon_bg=0x7f060067;
public static final int tooltip_frame_dark=0x7f060068;
public static final int tooltip_frame_light=0x7f060069;
public static final int trans=0x7f06006a;
}
public static final class id {
public static final int ALT=0x7f070000;
public static final int CTRL=0x7f070001;
public static final int FUNCTION=0x7f070002;
public static final int META=0x7f070003;
public static final int SHIFT=0x7f070004;
public static final int SYM=0x7f070005;
public static final int action0=0x7f070006;
public static final int action_bar=0x7f070007;
public static final int action_bar_activity_content=0x7f070008;
public static final int action_bar_container=0x7f070009;
public static final int action_bar_root=0x7f07000a;
public static final int action_bar_spinner=0x7f07000b;
public static final int action_bar_subtitle=0x7f07000c;
public static final int action_bar_title=0x7f07000d;
public static final int action_container=0x7f07000e;
public static final int action_context_bar=0x7f07000f;
public static final int action_divider=0x7f070010;
public static final int action_example=0x7f070011;
public static final int action_image=0x7f070012;
public static final int action_menu_divider=0x7f070013;
public static final int action_menu_presenter=0x7f070014;
public static final int action_mode_bar=0x7f070015;
public static final int action_mode_bar_stub=0x7f070016;
public static final int action_mode_close_button=0x7f070017;
public static final int action_settings=0x7f070018;
public static final int action_text=0x7f070019;
public static final int actions=0x7f07001a;
public static final int activity_chooser_view_content=0x7f07001b;
public static final int add=0x7f07001c;
public static final int alertTitle=0x7f07001d;
public static final int all=0x7f07001e;
public static final int always=0x7f07001f;
public static final int async=0x7f070020;
public static final int barrier=0x7f070021;
public static final int beginning=0x7f070022;
public static final int blocking=0x7f070023;
public static final int bottom=0x7f070024;
public static final int buttonPanel=0x7f070025;
public static final int cancel_action=0x7f070026;
public static final int center=0x7f070027;
public static final int center_horizontal=0x7f070028;
public static final int center_vertical=0x7f070029;
public static final int chains=0x7f07002a;
public static final int checkbox=0x7f07002b;
public static final int chronometer=0x7f07002c;
public static final int clip_horizontal=0x7f07002d;
public static final int clip_vertical=0x7f07002e;
public static final int collapseActionView=0x7f07002f;
public static final int contentPanel=0x7f070030;
public static final int custom=0x7f070031;
public static final int customPanel=0x7f070032;
public static final int decor_content_parent=0x7f070033;
public static final int default_activity_button=0x7f070034;
public static final int dimensions=0x7f070035;
public static final int direct=0x7f070036;
public static final int disableHome=0x7f070037;
public static final int edit_query=0x7f070038;
public static final int end=0x7f070039;
public static final int end_padder=0x7f07003a;
public static final int expand_activities_button=0x7f07003b;
public static final int expanded_menu=0x7f07003c;
public static final int fill=0x7f07003d;
public static final int fill_horizontal=0x7f07003e;
public static final int fill_vertical=0x7f07003f;
public static final int forever=0x7f070040;
public static final int gone=0x7f070041;
public static final int home=0x7f070042;
public static final int homeAsUp=0x7f070043;
public static final int icon=0x7f070044;
public static final int icon_group=0x7f070045;
public static final int ifRoom=0x7f070046;
public static final int image=0x7f070047;
public static final int imageView2=0x7f070048;
public static final int info=0x7f070049;
public static final int invisible=0x7f07004a;
public static final int italic=0x7f07004b;
public static final int left=0x7f07004c;
public static final int line1=0x7f07004d;
public static final int line3=0x7f07004e;
public static final int listMode=0x7f07004f;
public static final int list_item=0x7f070050;
public static final int log_in_progress=0x7f070051;
public static final int login_with_amazon=0x7f070052;
public static final int logout=0x7f070053;
public static final int media_actions=0x7f070054;
public static final int menu_settings=0x7f070055;
public static final int message=0x7f070056;
public static final int middle=0x7f070057;
public static final int multiply=0x7f070058;
public static final int never=0x7f070059;
public static final int none=0x7f07005a;
public static final int normal=0x7f07005b;
public static final int notification_background=0x7f07005c;
public static final int notification_main_column=0x7f07005d;
public static final int notification_main_column_container=0x7f07005e;
public static final int packed=0x7f07005f;
public static final int parent=0x7f070060;
public static final int parentPanel=0x7f070061;
public static final int percent=0x7f070062;
public static final int profile_info=0x7f070063;
public static final int progress_circular=0x7f070064;
public static final int progress_horizontal=0x7f070065;
public static final int radio=0x7f070066;
public static final int return_to_app=0x7f070067;
public static final int right=0x7f070068;
public static final int right_icon=0x7f070069;
public static final int right_side=0x7f07006a;
public static final int screen=0x7f07006b;
public static final int scrollIndicatorDown=0x7f07006c;
public static final int scrollIndicatorUp=0x7f07006d;
public static final int scrollView=0x7f07006e;
public static final int search_badge=0x7f07006f;
public static final int search_bar=0x7f070070;
public static final int search_button=0x7f070071;
public static final int search_close_btn=0x7f070072;
public static final int search_edit_frame=0x7f070073;
public static final int search_go_btn=0x7f070074;
public static final int search_mag_icon=0x7f070075;
public static final int search_plate=0x7f070076;
public static final int search_src_text=0x7f070077;
public static final int search_voice_btn=0x7f070078;
public static final int section_label=0x7f070079;
public static final int select_dialog_listview=0x7f07007a;
public static final int shortcut=0x7f07007b;
public static final int showCustom=0x7f07007c;
public static final int showHome=0x7f07007d;
public static final int showTitle=0x7f07007e;
public static final int spacer=0x7f07007f;
public static final int split_action_bar=0x7f070080;
public static final int spread=0x7f070081;
public static final int spread_inside=0x7f070082;
public static final int src_atop=0x7f070083;
public static final int src_in=0x7f070084;
public static final int src_over=0x7f070085;
public static final int standard=0x7f070086;
public static final int start=0x7f070087;
public static final int status_bar_latest_event_content=0x7f070088;
public static final int submenuarrow=0x7f070089;
public static final int submit_area=0x7f07008a;
public static final int tabMode=0x7f07008b;
public static final int tag_transition_group=0x7f07008c;
public static final int text=0x7f07008d;
public static final int text2=0x7f07008e;
public static final int textSpacerNoButtons=0x7f07008f;
public static final int textSpacerNoTitle=0x7f070090;
public static final int time=0x7f070091;
public static final int title=0x7f070092;
public static final int titleDividerNoCustom=0x7f070093;
public static final int title_template=0x7f070094;
public static final int top=0x7f070095;
public static final int topPanel=0x7f070096;
public static final int uniform=0x7f070097;
public static final int up=0x7f070098;
public static final int useLogo=0x7f070099;
public static final int withText=0x7f07009a;
public static final int wrap=0x7f07009b;
public static final int wrap_content=0x7f07009c;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f080000;
public static final int abc_config_activityShortDur=0x7f080001;
public static final int cancel_button_image_alpha=0x7f080002;
public static final int config_tooltipAnimTime=0x7f080003;
public static final int status_bar_notification_info_maxnum=0x7f080004;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f090000;
public static final int abc_action_bar_up_container=0x7f090001;
public static final int abc_action_menu_item_layout=0x7f090002;
public static final int abc_action_menu_layout=0x7f090003;
public static final int abc_action_mode_bar=0x7f090004;
public static final int abc_action_mode_close_item_material=0x7f090005;
public static final int abc_activity_chooser_view=0x7f090006;
public static final int abc_activity_chooser_view_list_item=0x7f090007;
public static final int abc_alert_dialog_button_bar_material=0x7f090008;
public static final int abc_alert_dialog_material=0x7f090009;
public static final int abc_alert_dialog_title_material=0x7f09000a;
public static final int abc_dialog_title_material=0x7f09000b;
public static final int abc_expanded_menu_layout=0x7f09000c;
public static final int abc_list_menu_item_checkbox=0x7f09000d;
public static final int abc_list_menu_item_icon=0x7f09000e;
public static final int abc_list_menu_item_layout=0x7f09000f;
public static final int abc_list_menu_item_radio=0x7f090010;
public static final int abc_popup_menu_header_item_layout=0x7f090011;
public static final int abc_popup_menu_item_layout=0x7f090012;
public static final int abc_screen_content_include=0x7f090013;
public static final int abc_screen_simple=0x7f090014;
public static final int abc_screen_simple_overlay_action_mode=0x7f090015;
public static final int abc_screen_toolbar=0x7f090016;
public static final int abc_search_dropdown_item_icons_2line=0x7f090017;
public static final int abc_search_view=0x7f090018;
public static final int abc_select_dialog_material=0x7f090019;
public static final int abc_tooltip=0x7f09001a;
public static final int activity_main=0x7f09001b;
public static final int activity_main2=0x7f09001c;
public static final int drawer_main2=0x7f09001d;
public static final int fragment_main2=0x7f09001e;
public static final int notification_action=0x7f09001f;
public static final int notification_action_tombstone=0x7f090020;
public static final int notification_media_action=0x7f090021;
public static final int notification_media_cancel_action=0x7f090022;
public static final int notification_template_big_media=0x7f090023;
public static final int notification_template_big_media_custom=0x7f090024;
public static final int notification_template_big_media_narrow=0x7f090025;
public static final int notification_template_big_media_narrow_custom=0x7f090026;
public static final int notification_template_custom_big=0x7f090027;
public static final int notification_template_icon_group=0x7f090028;
public static final int notification_template_lines_media=0x7f090029;
public static final int notification_template_media=0x7f09002a;
public static final int notification_template_media_custom=0x7f09002b;
public static final int notification_template_part_chronometer=0x7f09002c;
public static final int notification_template_part_time=0x7f09002d;
public static final int select_dialog_item_material=0x7f09002e;
public static final int select_dialog_multichoice_material=0x7f09002f;
public static final int select_dialog_singlechoice_material=0x7f090030;
public static final int support_simple_spinner_dropdown_item=0x7f090031;
}
public static final class menu {
public static final int activity_main=0x7f0a0000;
public static final int global=0x7f0a0001;
public static final int main2=0x7f0a0002;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f0b0000;
public static final int abc_action_bar_up_description=0x7f0b0001;
public static final int abc_action_menu_overflow_description=0x7f0b0002;
public static final int abc_action_mode_done=0x7f0b0003;
public static final int abc_activity_chooser_view_see_all=0x7f0b0004;
public static final int abc_activitychooserview_choose_application=0x7f0b0005;
public static final int abc_capital_off=0x7f0b0006;
public static final int abc_capital_on=0x7f0b0007;
public static final int abc_font_family_body_1_material=0x7f0b0008;
public static final int abc_font_family_body_2_material=0x7f0b0009;
public static final int abc_font_family_button_material=0x7f0b000a;
public static final int abc_font_family_caption_material=0x7f0b000b;
public static final int abc_font_family_display_1_material=0x7f0b000c;
public static final int abc_font_family_display_2_material=0x7f0b000d;
public static final int abc_font_family_display_3_material=0x7f0b000e;
public static final int abc_font_family_display_4_material=0x7f0b000f;
public static final int abc_font_family_headline_material=0x7f0b0010;
public static final int abc_font_family_menu_material=0x7f0b0011;
public static final int abc_font_family_subhead_material=0x7f0b0012;
public static final int abc_font_family_title_material=0x7f0b0013;
public static final int abc_search_hint=0x7f0b0014;
public static final int abc_searchview_description_clear=0x7f0b0015;
public static final int abc_searchview_description_query=0x7f0b0016;
public static final int abc_searchview_description_search=0x7f0b0017;
public static final int abc_searchview_description_submit=0x7f0b0018;
public static final int abc_searchview_description_voice=0x7f0b0019;
public static final int abc_shareactionprovider_share_with=0x7f0b001a;
public static final int abc_shareactionprovider_share_with_application=0x7f0b001b;
public static final int abc_toolbar_collapse_description=0x7f0b001c;
public static final int action_example=0x7f0b001d;
public static final int action_settings=0x7f0b001e;
public static final int app_name=0x7f0b001f;
public static final int default_message=0x7f0b0020;
public static final int login_button_content_description=0x7f0b0021;
public static final int login_with_amazon=0x7f0b0022;
public static final int logout=0x7f0b0023;
public static final int menu_settings=0x7f0b0024;
public static final int navigation_drawer_close=0x7f0b0025;
public static final int navigation_drawer_open=0x7f0b0026;
public static final int return_to_app=0x7f0b0027;
public static final int search_menu_title=0x7f0b0028;
public static final int status_bar_notification_info_overflow=0x7f0b0029;
public static final int title_activity_main2=0x7f0b002a;
public static final int title_section1=0x7f0b002b;
public static final int title_section2=0x7f0b002c;
public static final int title_section3=0x7f0b002d;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0c0000;
public static final int AlertDialog_AppCompat_Light=0x7f0c0001;
public static final int Animation_AppCompat_Dialog=0x7f0c0002;
public static final int Animation_AppCompat_DropDownUp=0x7f0c0003;
public static final int Animation_AppCompat_Tooltip=0x7f0c0004;
public static final int AppBaseTheme=0x7f0c0005;
public static final int AppTheme=0x7f0c0006;
public static final int Base_AlertDialog_AppCompat=0x7f0c0007;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0c0008;
public static final int Base_Animation_AppCompat_Dialog=0x7f0c0009;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0c000a;
public static final int Base_Animation_AppCompat_Tooltip=0x7f0c000b;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0c000c;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0c000d;
public static final int Base_TextAppearance_AppCompat=0x7f0c000e;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0c000f;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0c0010;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0c0011;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0c0012;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0c0013;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0c0014;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0c0015;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0c0016;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0c0017;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0c0018;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0c0019;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c001a;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c001b;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c001c;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0c001d;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c001e;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0c001f;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0c0020;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0021;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c0022;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0c0023;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c0024;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0c0025;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c0026;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0c0027;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c0028;
public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0c0029;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c002a;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c002b;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c002c;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c002d;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c002e;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c002f;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c0030;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0c0031;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c0032;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c0033;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c0034;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c0035;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0036;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0037;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0038;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c0039;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c003a;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c003b;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c003c;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c003d;
public static final int Base_Theme_AppCompat=0x7f0c003e;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0c003f;
public static final int Base_Theme_AppCompat_Dialog=0x7f0c0040;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0c0041;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c0042;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0c0043;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c0044;
public static final int Base_Theme_AppCompat_Light=0x7f0c0045;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c0046;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0c0047;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0c0048;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c0049;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c004a;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c004b;
public static final int Base_ThemeOverlay_AppCompat=0x7f0c004c;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c004d;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0c004e;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c004f;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0c0050;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0051;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0c0052;
public static final int Base_V21_Theme_AppCompat=0x7f0c0053;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0c0054;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0c0055;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c0056;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0c0057;
public static final int Base_V22_Theme_AppCompat=0x7f0c0058;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0c0059;
public static final int Base_V23_Theme_AppCompat=0x7f0c005a;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0c005b;
public static final int Base_V26_Theme_AppCompat=0x7f0c005c;
public static final int Base_V26_Theme_AppCompat_Light=0x7f0c005d;
public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0c005e;
public static final int Base_V7_Theme_AppCompat=0x7f0c005f;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0c0060;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0c0061;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0c0062;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0c0063;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0c0064;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0c0065;
public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0c0066;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0c0067;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c0068;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c0069;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c006a;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c006b;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0c006c;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c006d;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c006e;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0c006f;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0c0070;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0071;
public static final int Base_Widget_AppCompat_Button=0x7f0c0072;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0c0073;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0c0074;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c0075;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0c0076;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0c0077;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0c0078;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c0079;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0c007a;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0c007b;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c007c;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c007d;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c007e;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c007f;
public static final int Base_Widget_AppCompat_EditText=0x7f0c0080;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0c0081;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0c0082;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0083;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c0084;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0085;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0086;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0087;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c0088;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0089;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0c008a;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0c008b;
public static final int Base_Widget_AppCompat_ListView=0x7f0c008c;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0c008d;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0c008e;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0c008f;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0090;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0c0091;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0c0092;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0093;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0c0094;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0c0095;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0c0096;
public static final int Base_Widget_AppCompat_SearchView=0x7f0c0097;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0c0098;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0c0099;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0c009a;
public static final int Base_Widget_AppCompat_Spinner=0x7f0c009b;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c009c;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c009d;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0c009e;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c009f;
public static final int Platform_AppCompat=0x7f0c00a0;
public static final int Platform_AppCompat_Light=0x7f0c00a1;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0c00a2;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0c00a3;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0c00a4;
public static final int Platform_V21_AppCompat=0x7f0c00a5;
public static final int Platform_V21_AppCompat_Light=0x7f0c00a6;
public static final int Platform_V25_AppCompat=0x7f0c00a7;
public static final int Platform_V25_AppCompat_Light=0x7f0c00a8;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0c00a9;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0c00aa;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c00ab;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0c00ac;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c00ad;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c00ae;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c00af;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c00b0;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c00b1;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c00b2;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c00b3;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c00b4;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c00b5;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0c00b6;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c00b7;
public static final int TextAppearance_AppCompat=0x7f0c00b8;
public static final int TextAppearance_AppCompat_Body1=0x7f0c00b9;
public static final int TextAppearance_AppCompat_Body2=0x7f0c00ba;
public static final int TextAppearance_AppCompat_Button=0x7f0c00bb;
public static final int TextAppearance_AppCompat_Caption=0x7f0c00bc;
public static final int TextAppearance_AppCompat_Display1=0x7f0c00bd;
public static final int TextAppearance_AppCompat_Display2=0x7f0c00be;
public static final int TextAppearance_AppCompat_Display3=0x7f0c00bf;
public static final int TextAppearance_AppCompat_Display4=0x7f0c00c0;
public static final int TextAppearance_AppCompat_Headline=0x7f0c00c1;
public static final int TextAppearance_AppCompat_Inverse=0x7f0c00c2;
public static final int TextAppearance_AppCompat_Large=0x7f0c00c3;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0c00c4;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c00c5;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c00c6;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c00c7;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c00c8;
public static final int TextAppearance_AppCompat_Medium=0x7f0c00c9;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0c00ca;
public static final int TextAppearance_AppCompat_Menu=0x7f0c00cb;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c00cc;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0c00cd;
public static final int TextAppearance_AppCompat_Small=0x7f0c00ce;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0c00cf;
public static final int TextAppearance_AppCompat_Subhead=0x7f0c00d0;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00d1;
public static final int TextAppearance_AppCompat_Title=0x7f0c00d2;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0c00d3;
public static final int TextAppearance_AppCompat_Tooltip=0x7f0c00d4;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c00d5;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c00d6;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c00d7;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c00d8;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c00d9;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c00da;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c00db;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c00dc;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c00dd;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0c00de;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c00df;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c00e0;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c00e1;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00e2;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c00e3;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c00e4;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c00e5;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0c00e6;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c00e7;
public static final int TextAppearance_Compat_Notification=0x7f0c00e8;
public static final int TextAppearance_Compat_Notification_Info=0x7f0c00e9;
public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0c00ea;
public static final int TextAppearance_Compat_Notification_Line2=0x7f0c00eb;
public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0c00ec;
public static final int TextAppearance_Compat_Notification_Media=0x7f0c00ed;
public static final int TextAppearance_Compat_Notification_Time=0x7f0c00ee;
public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0c00ef;
public static final int TextAppearance_Compat_Notification_Title=0x7f0c00f0;
public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0c00f1;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c00f2;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c00f3;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c00f4;
public static final int Theme_AppCompat=0x7f0c00f5;
public static final int Theme_AppCompat_CompactMenu=0x7f0c00f6;
public static final int Theme_AppCompat_DayNight=0x7f0c00f7;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0c00f8;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f0c00f9;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0c00fa;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0c00fb;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0c00fc;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0c00fd;
public static final int Theme_AppCompat_Dialog=0x7f0c00fe;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0c00ff;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0c0100;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0c0101;
public static final int Theme_AppCompat_Light=0x7f0c0102;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0c0103;
public static final int Theme_AppCompat_Light_Dialog=0x7f0c0104;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0c0105;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0106;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0107;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0c0108;
public static final int Theme_AppCompat_NoActionBar=0x7f0c0109;
public static final int ThemeOverlay_AppCompat=0x7f0c010a;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0c010b;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0c010c;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c010d;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f0c010e;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c010f;
public static final int ThemeOverlay_AppCompat_Light=0x7f0c0110;
public static final int Widget_AppCompat_ActionBar=0x7f0c0111;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0c0112;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0c0113;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0c0114;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0c0115;
public static final int Widget_AppCompat_ActionButton=0x7f0c0116;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0c0117;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0c0118;
public static final int Widget_AppCompat_ActionMode=0x7f0c0119;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0c011a;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0c011b;
public static final int Widget_AppCompat_Button=0x7f0c011c;
public static final int Widget_AppCompat_Button_Borderless=0x7f0c011d;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0c011e;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c011f;
public static final int Widget_AppCompat_Button_Colored=0x7f0c0120;
public static final int Widget_AppCompat_Button_Small=0x7f0c0121;
public static final int Widget_AppCompat_ButtonBar=0x7f0c0122;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c0123;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0c0124;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0c0125;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0c0126;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0c0127;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0c0128;
public static final int Widget_AppCompat_EditText=0x7f0c0129;
public static final int Widget_AppCompat_ImageButton=0x7f0c012a;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0c012b;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c012c;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c012d;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c012e;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c012f;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0130;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0131;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0132;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c0133;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0c0134;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c0135;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c0136;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c0137;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0c0138;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c0139;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c013a;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0c013b;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0c013c;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0c013d;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c013e;
public static final int Widget_AppCompat_Light_SearchView=0x7f0c013f;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c0140;
public static final int Widget_AppCompat_ListMenuView=0x7f0c0141;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0c0142;
public static final int Widget_AppCompat_ListView=0x7f0c0143;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0c0144;
public static final int Widget_AppCompat_ListView_Menu=0x7f0c0145;
public static final int Widget_AppCompat_PopupMenu=0x7f0c0146;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0c0147;
public static final int Widget_AppCompat_PopupWindow=0x7f0c0148;
public static final int Widget_AppCompat_ProgressBar=0x7f0c0149;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c014a;
public static final int Widget_AppCompat_RatingBar=0x7f0c014b;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0c014c;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0c014d;
public static final int Widget_AppCompat_SearchView=0x7f0c014e;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0c014f;
public static final int Widget_AppCompat_SeekBar=0x7f0c0150;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0c0151;
public static final int Widget_AppCompat_Spinner=0x7f0c0152;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0c0153;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c0154;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0c0155;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0c0156;
public static final int Widget_AppCompat_Toolbar=0x7f0c0157;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c0158;
public static final int Widget_Compat_NotificationActionContainer=0x7f0c0159;
public static final int Widget_Compat_NotificationActionText=0x7f0c015a;
public static final int Widget_Support_CoordinatorLayout=0x7f0c015b;
}
public static final class styleable {
/**
* Attributes that can be used with a ActionBar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionBar_background com.amazon.identity.auth.device.lwaapp:background}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_backgroundSplit com.amazon.identity.auth.device.lwaapp:backgroundSplit}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_backgroundStacked com.amazon.identity.auth.device.lwaapp:backgroundStacked}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetEnd com.amazon.identity.auth.device.lwaapp:contentInsetEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.amazon.identity.auth.device.lwaapp:contentInsetEndWithActions}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetLeft com.amazon.identity.auth.device.lwaapp:contentInsetLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetRight com.amazon.identity.auth.device.lwaapp:contentInsetRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetStart com.amazon.identity.auth.device.lwaapp:contentInsetStart}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.amazon.identity.auth.device.lwaapp:contentInsetStartWithNavigation}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_customNavigationLayout com.amazon.identity.auth.device.lwaapp:customNavigationLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_displayOptions com.amazon.identity.auth.device.lwaapp:displayOptions}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_divider com.amazon.identity.auth.device.lwaapp:divider}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_elevation com.amazon.identity.auth.device.lwaapp:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_height com.amazon.identity.auth.device.lwaapp:height}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_hideOnContentScroll com.amazon.identity.auth.device.lwaapp:hideOnContentScroll}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.amazon.identity.auth.device.lwaapp:homeAsUpIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_homeLayout com.amazon.identity.auth.device.lwaapp:homeLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_icon com.amazon.identity.auth.device.lwaapp:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.amazon.identity.auth.device.lwaapp:indeterminateProgressStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_itemPadding com.amazon.identity.auth.device.lwaapp:itemPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_logo com.amazon.identity.auth.device.lwaapp:logo}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_navigationMode com.amazon.identity.auth.device.lwaapp:navigationMode}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_popupTheme com.amazon.identity.auth.device.lwaapp:popupTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_progressBarPadding com.amazon.identity.auth.device.lwaapp:progressBarPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_progressBarStyle com.amazon.identity.auth.device.lwaapp:progressBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_subtitle com.amazon.identity.auth.device.lwaapp:subtitle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_subtitleTextStyle com.amazon.identity.auth.device.lwaapp:subtitleTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_title com.amazon.identity.auth.device.lwaapp:title}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_titleTextStyle com.amazon.identity.auth.device.lwaapp: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={
0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005d,
0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061,
0x7f020062, 0x7f020065, 0x7f020069, 0x7f02006a,
0x7f020075, 0x7f020084, 0x7f020085, 0x7f020086,
0x7f020087, 0x7f020088, 0x7f02008d, 0x7f020090,
0x7f0200d6, 0x7f0200dd, 0x7f0200e8, 0x7f0200eb,
0x7f0200ec, 0x7f020107, 0x7f02010a, 0x7f020125,
0x7f02012e
};
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:background
*/
public static final int ActionBar_background=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:backgroundSplit
*/
public static final int ActionBar_backgroundSplit=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:backgroundStacked
*/
public static final int ActionBar_backgroundStacked=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetRight
*/
public static final int ActionBar_contentInsetRight=6;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetStart
*/
public static final int ActionBar_contentInsetStart=7;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation=8;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout=9;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:displayOptions
*/
public static final int ActionBar_displayOptions=10;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:divider
*/
public static final int ActionBar_divider=11;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:elevation
*/
public static final int ActionBar_elevation=12;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:height
*/
public static final int ActionBar_height=13;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll=14;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator=15;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:homeLayout
*/
public static final int ActionBar_homeLayout=16;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:icon
*/
public static final int ActionBar_icon=17;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle=18;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:itemPadding
*/
public static final int ActionBar_itemPadding=19;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:logo
*/
public static final int ActionBar_logo=20;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:navigationMode
*/
public static final int ActionBar_navigationMode=21;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:popupTheme
*/
public static final int ActionBar_popupTheme=22;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:progressBarPadding
*/
public static final int ActionBar_progressBarPadding=23;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:progressBarStyle
*/
public static final int ActionBar_progressBarStyle=24;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:subtitle
*/
public static final int ActionBar_subtitle=25;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle=26;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:title
*/
public static final int ActionBar_title=27;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:titleTextStyle
*/
public static final int ActionBar_titleTextStyle=28;
/**
* Attributes that can be used with a ActionBarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* </table>
* @see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout={
0x010100b3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #ActionBarLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity=0;
/**
* Attributes that can be used with a ActionMenuItemView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
* </table>
* @see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView={
0x0101013f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#minWidth}
* attribute's value can be found in the {@link #ActionMenuItemView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth=0;
public static final int[] ActionMenuView={
};
/**
* Attributes that can be used with a ActionMode.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionMode_background com.amazon.identity.auth.device.lwaapp:background}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_backgroundSplit com.amazon.identity.auth.device.lwaapp:backgroundSplit}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_closeItemLayout com.amazon.identity.auth.device.lwaapp:closeItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_height com.amazon.identity.auth.device.lwaapp:height}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_subtitleTextStyle com.amazon.identity.auth.device.lwaapp:subtitleTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_titleTextStyle com.amazon.identity.auth.device.lwaapp: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={
0x7f020031, 0x7f020032, 0x7f02004a, 0x7f020084,
0x7f02010a, 0x7f02012e
};
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:background
*/
public static final int ActionMode_background=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:backgroundSplit
*/
public static final int ActionMode_backgroundSplit=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:closeItemLayout
*/
public static final int ActionMode_closeItemLayout=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:height
*/
public static final int ActionMode_height=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:titleTextStyle
*/
public static final int ActionMode_titleTextStyle=5;
/**
* Attributes that can be used with a ActivityChooserView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.amazon.identity.auth.device.lwaapp:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.amazon.identity.auth.device.lwaapp:initialActivityCount}</code></td><td></td></tr>
* </table>
* @see #ActivityChooserView_expandActivityOverflowButtonDrawable
* @see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView={
0x7f020077, 0x7f02008e
};
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount=1;
/**
* Attributes that can be used with a AlertDialog.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_buttonIconDimen com.amazon.identity.auth.device.lwaapp:buttonIconDimen}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.amazon.identity.auth.device.lwaapp:buttonPanelSideLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_listItemLayout com.amazon.identity.auth.device.lwaapp:listItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_listLayout com.amazon.identity.auth.device.lwaapp:listLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.amazon.identity.auth.device.lwaapp:multiChoiceItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_showTitle com.amazon.identity.auth.device.lwaapp:showTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.amazon.identity.auth.device.lwaapp:singleChoiceItemLayout}</code></td><td></td></tr>
* </table>
* @see #AlertDialog_android_layout
* @see #AlertDialog_buttonIconDimen
* @see #AlertDialog_buttonPanelSideLayout
* @see #AlertDialog_listItemLayout
* @see #AlertDialog_listLayout
* @see #AlertDialog_multiChoiceItemLayout
* @see #AlertDialog_showTitle
* @see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog={
0x010100f2, 0x7f020040, 0x7f020041, 0x7f0200cd,
0x7f0200ce, 0x7f0200da, 0x7f0200fc, 0x7f0200fd
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int AlertDialog_android_layout=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#buttonIconDimen}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:buttonIconDimen
*/
public static final int AlertDialog_buttonIconDimen=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#buttonPanelSideLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#listItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:listItemLayout
*/
public static final int AlertDialog_listItemLayout=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#listLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:listLayout
*/
public static final int AlertDialog_listLayout=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#multiChoiceItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#showTitle}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:showTitle
*/
public static final int AlertDialog_showTitle=6;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#singleChoiceItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout=7;
/**
* Attributes that can be used with a AppCompatImageView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatImageView_srcCompat com.amazon.identity.auth.device.lwaapp:srcCompat}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatImageView_tint com.amazon.identity.auth.device.lwaapp:tint}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatImageView_tintMode com.amazon.identity.auth.device.lwaapp:tintMode}</code></td><td></td></tr>
* </table>
* @see #AppCompatImageView_android_src
* @see #AppCompatImageView_srcCompat
* @see #AppCompatImageView_tint
* @see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView={
0x01010119, 0x7f020102, 0x7f020123, 0x7f020124
};
/**
* <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 com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:srcCompat
*/
public static final int AppCompatImageView_srcCompat=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#tint}
* attribute's value can be found in the {@link #AppCompatImageView} 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 com.amazon.identity.auth.device.lwaapp:tint
*/
public static final int AppCompatImageView_tint=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#tintMode}
* attribute's value can be found in the {@link #AppCompatImageView} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>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 com.amazon.identity.auth.device.lwaapp:tintMode
*/
public static final int AppCompatImageView_tintMode=3;
/**
* Attributes that can be used with a AppCompatSeekBar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMark com.amazon.identity.auth.device.lwaapp:tickMark}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.amazon.identity.auth.device.lwaapp:tickMarkTint}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.amazon.identity.auth.device.lwaapp: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, 0x7f020120, 0x7f020121, 0x7f020122
};
/**
* <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 com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:tickMark
*/
public static final int AppCompatSeekBar_tickMark=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode=3;
/**
* Attributes that can be used with a AppCompatTextHelper.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
* </table>
* @see #AppCompatTextHelper_android_textAppearance
* @see #AppCompatTextHelper_android_drawableTop
* @see #AppCompatTextHelper_android_drawableBottom
* @see #AppCompatTextHelper_android_drawableLeft
* @see #AppCompatTextHelper_android_drawableRight
* @see #AppCompatTextHelper_android_drawableStart
* @see #AppCompatTextHelper_android_drawableEnd
*/
public static final int[] AppCompatTextHelper={
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableTop}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableRight}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableStart}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd=6;
/**
* Attributes that can be used with a AppCompatTextView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize com.amazon.identity.auth.device.lwaapp:autoSizeMaxTextSize}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.amazon.identity.auth.device.lwaapp:autoSizeMinTextSize}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.amazon.identity.auth.device.lwaapp:autoSizePresetSizes}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.amazon.identity.auth.device.lwaapp:autoSizeStepGranularity}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.amazon.identity.auth.device.lwaapp:autoSizeTextType}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_fontFamily com.amazon.identity.auth.device.lwaapp:fontFamily}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_textAllCaps com.amazon.identity.auth.device.lwaapp:textAllCaps}</code></td><td></td></tr>
* </table>
* @see #AppCompatTextView_android_textAppearance
* @see #AppCompatTextView_autoSizeMaxTextSize
* @see #AppCompatTextView_autoSizeMinTextSize
* @see #AppCompatTextView_autoSizePresetSizes
* @see #AppCompatTextView_autoSizeStepGranularity
* @see #AppCompatTextView_autoSizeTextType
* @see #AppCompatTextView_fontFamily
* @see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView={
0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e,
0x7f02002f, 0x7f020030, 0x7f020079, 0x7f020110
};
/**
* <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 com.amazon.identity.auth.device.lwaapp.R.attr#autoSizeMaxTextSize}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:autoSizeMaxTextSize
*/
public static final int AppCompatTextView_autoSizeMaxTextSize=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#autoSizeMinTextSize}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:autoSizeMinTextSize
*/
public static final int AppCompatTextView_autoSizeMinTextSize=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#autoSizePresetSizes}
* 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 com.amazon.identity.auth.device.lwaapp:autoSizePresetSizes
*/
public static final int AppCompatTextView_autoSizePresetSizes=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#autoSizeStepGranularity}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:autoSizeStepGranularity
*/
public static final int AppCompatTextView_autoSizeStepGranularity=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#autoSizeTextType}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>uniform</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:autoSizeTextType
*/
public static final int AppCompatTextView_autoSizeTextType=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#fontFamily}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.amazon.identity.auth.device.lwaapp:fontFamily
*/
public static final int AppCompatTextView_fontFamily=6;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps=7;
/**
* Attributes that can be used with a AppCompatTheme.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.amazon.identity.auth.device.lwaapp:actionBarDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.amazon.identity.auth.device.lwaapp:actionBarItemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.amazon.identity.auth.device.lwaapp:actionBarPopupTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarSize com.amazon.identity.auth.device.lwaapp:actionBarSize}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.amazon.identity.auth.device.lwaapp:actionBarSplitStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.amazon.identity.auth.device.lwaapp:actionBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.amazon.identity.auth.device.lwaapp:actionBarTabBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.amazon.identity.auth.device.lwaapp:actionBarTabStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.amazon.identity.auth.device.lwaapp:actionBarTabTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.amazon.identity.auth.device.lwaapp:actionBarTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.amazon.identity.auth.device.lwaapp:actionBarWidgetTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.amazon.identity.auth.device.lwaapp:actionButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.amazon.identity.auth.device.lwaapp:actionDropDownStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.amazon.identity.auth.device.lwaapp:actionMenuTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.amazon.identity.auth.device.lwaapp:actionMenuTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.amazon.identity.auth.device.lwaapp:actionModeBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.amazon.identity.auth.device.lwaapp:actionModeCloseButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.amazon.identity.auth.device.lwaapp:actionModeCloseDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.amazon.identity.auth.device.lwaapp:actionModeCopyDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.amazon.identity.auth.device.lwaapp:actionModeCutDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.amazon.identity.auth.device.lwaapp:actionModeFindDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.amazon.identity.auth.device.lwaapp:actionModePasteDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.amazon.identity.auth.device.lwaapp:actionModePopupWindowStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.amazon.identity.auth.device.lwaapp:actionModeSelectAllDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.amazon.identity.auth.device.lwaapp:actionModeShareDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.amazon.identity.auth.device.lwaapp:actionModeSplitBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.amazon.identity.auth.device.lwaapp:actionModeStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.amazon.identity.auth.device.lwaapp:actionModeWebSearchDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.amazon.identity.auth.device.lwaapp:actionOverflowButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.amazon.identity.auth.device.lwaapp:actionOverflowMenuStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.amazon.identity.auth.device.lwaapp:activityChooserViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.amazon.identity.auth.device.lwaapp:alertDialogButtonGroupStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.amazon.identity.auth.device.lwaapp:alertDialogCenterButtons}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.amazon.identity.auth.device.lwaapp:alertDialogStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.amazon.identity.auth.device.lwaapp:alertDialogTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.amazon.identity.auth.device.lwaapp:autoCompleteTextViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.amazon.identity.auth.device.lwaapp:borderlessButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.amazon.identity.auth.device.lwaapp:buttonBarButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.amazon.identity.auth.device.lwaapp:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.amazon.identity.auth.device.lwaapp:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.amazon.identity.auth.device.lwaapp:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.amazon.identity.auth.device.lwaapp:buttonBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonStyle com.amazon.identity.auth.device.lwaapp:buttonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.amazon.identity.auth.device.lwaapp:buttonStyleSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.amazon.identity.auth.device.lwaapp:checkboxStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.amazon.identity.auth.device.lwaapp:checkedTextViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorAccent com.amazon.identity.auth.device.lwaapp:colorAccent}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.amazon.identity.auth.device.lwaapp:colorBackgroundFloating}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.amazon.identity.auth.device.lwaapp:colorButtonNormal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.amazon.identity.auth.device.lwaapp:colorControlActivated}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.amazon.identity.auth.device.lwaapp:colorControlHighlight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.amazon.identity.auth.device.lwaapp:colorControlNormal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorError com.amazon.identity.auth.device.lwaapp:colorError}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorPrimary com.amazon.identity.auth.device.lwaapp:colorPrimary}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.amazon.identity.auth.device.lwaapp:colorPrimaryDark}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.amazon.identity.auth.device.lwaapp:colorSwitchThumbNormal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_controlBackground com.amazon.identity.auth.device.lwaapp:controlBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.amazon.identity.auth.device.lwaapp:dialogPreferredPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dialogTheme com.amazon.identity.auth.device.lwaapp:dialogTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.amazon.identity.auth.device.lwaapp:dividerHorizontal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dividerVertical com.amazon.identity.auth.device.lwaapp:dividerVertical}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.amazon.identity.auth.device.lwaapp:dropDownListViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.amazon.identity.auth.device.lwaapp:dropdownListPreferredItemHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextBackground com.amazon.identity.auth.device.lwaapp:editTextBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextColor com.amazon.identity.auth.device.lwaapp:editTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextStyle com.amazon.identity.auth.device.lwaapp:editTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.amazon.identity.auth.device.lwaapp:homeAsUpIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.amazon.identity.auth.device.lwaapp:imageButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.amazon.identity.auth.device.lwaapp:listChoiceBackgroundIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.amazon.identity.auth.device.lwaapp:listDividerAlertDialog}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.amazon.identity.auth.device.lwaapp:listMenuViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.amazon.identity.auth.device.lwaapp:listPopupWindowStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.amazon.identity.auth.device.lwaapp:listPreferredItemHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.amazon.identity.auth.device.lwaapp:listPreferredItemHeightLarge}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.amazon.identity.auth.device.lwaapp:listPreferredItemHeightSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.amazon.identity.auth.device.lwaapp:listPreferredItemPaddingLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.amazon.identity.auth.device.lwaapp:listPreferredItemPaddingRight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelBackground com.amazon.identity.auth.device.lwaapp:panelBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.amazon.identity.auth.device.lwaapp:panelMenuListTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.amazon.identity.auth.device.lwaapp:panelMenuListWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.amazon.identity.auth.device.lwaapp:popupMenuStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.amazon.identity.auth.device.lwaapp:popupWindowStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.amazon.identity.auth.device.lwaapp:radioButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.amazon.identity.auth.device.lwaapp:ratingBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.amazon.identity.auth.device.lwaapp:ratingBarStyleIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.amazon.identity.auth.device.lwaapp:ratingBarStyleSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.amazon.identity.auth.device.lwaapp:searchViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.amazon.identity.auth.device.lwaapp:seekBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.amazon.identity.auth.device.lwaapp:selectableItemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.amazon.identity.auth.device.lwaapp:selectableItemBackgroundBorderless}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.amazon.identity.auth.device.lwaapp:spinnerDropDownItemStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.amazon.identity.auth.device.lwaapp:spinnerStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_switchStyle com.amazon.identity.auth.device.lwaapp:switchStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.amazon.identity.auth.device.lwaapp:textAppearanceLargePopupMenu}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.amazon.identity.auth.device.lwaapp:textAppearanceListItem}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.amazon.identity.auth.device.lwaapp:textAppearanceListItemSecondary}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.amazon.identity.auth.device.lwaapp:textAppearanceListItemSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.amazon.identity.auth.device.lwaapp:textAppearancePopupMenuHeader}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.amazon.identity.auth.device.lwaapp:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.amazon.identity.auth.device.lwaapp:textAppearanceSearchResultTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.amazon.identity.auth.device.lwaapp:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.amazon.identity.auth.device.lwaapp:textColorAlertDialogListItem}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.amazon.identity.auth.device.lwaapp:textColorSearchUrl}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.amazon.identity.auth.device.lwaapp:toolbarNavigationButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.amazon.identity.auth.device.lwaapp:toolbarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.amazon.identity.auth.device.lwaapp:tooltipForegroundColor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.amazon.identity.auth.device.lwaapp:tooltipFrameBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_viewInflaterClass com.amazon.identity.auth.device.lwaapp:viewInflaterClass}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionBar com.amazon.identity.auth.device.lwaapp:windowActionBar}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.amazon.identity.auth.device.lwaapp:windowActionBarOverlay}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.amazon.identity.auth.device.lwaapp:windowActionModeOverlay}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.amazon.identity.auth.device.lwaapp:windowFixedHeightMajor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.amazon.identity.auth.device.lwaapp:windowFixedHeightMinor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.amazon.identity.auth.device.lwaapp:windowFixedWidthMajor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.amazon.identity.auth.device.lwaapp:windowFixedWidthMinor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.amazon.identity.auth.device.lwaapp:windowMinWidthMajor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.amazon.identity.auth.device.lwaapp:windowMinWidthMinor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.amazon.identity.auth.device.lwaapp: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_colorError
* @see #AppCompatTheme_colorPrimary
* @see #AppCompatTheme_colorPrimaryDark
* @see #AppCompatTheme_colorSwitchThumbNormal
* @see #AppCompatTheme_controlBackground
* @see #AppCompatTheme_dialogPreferredPadding
* @see #AppCompatTheme_dialogTheme
* @see #AppCompatTheme_dividerHorizontal
* @see #AppCompatTheme_dividerVertical
* @see #AppCompatTheme_dropDownListViewStyle
* @see #AppCompatTheme_dropdownListPreferredItemHeight
* @see #AppCompatTheme_editTextBackground
* @see #AppCompatTheme_editTextColor
* @see #AppCompatTheme_editTextStyle
* @see #AppCompatTheme_homeAsUpIndicator
* @see #AppCompatTheme_imageButtonStyle
* @see #AppCompatTheme_listChoiceBackgroundIndicator
* @see #AppCompatTheme_listDividerAlertDialog
* @see #AppCompatTheme_listMenuViewStyle
* @see #AppCompatTheme_listPopupWindowStyle
* @see #AppCompatTheme_listPreferredItemHeight
* @see #AppCompatTheme_listPreferredItemHeightLarge
* @see #AppCompatTheme_listPreferredItemHeightSmall
* @see #AppCompatTheme_listPreferredItemPaddingLeft
* @see #AppCompatTheme_listPreferredItemPaddingRight
* @see #AppCompatTheme_panelBackground
* @see #AppCompatTheme_panelMenuListTheme
* @see #AppCompatTheme_panelMenuListWidth
* @see #AppCompatTheme_popupMenuStyle
* @see #AppCompatTheme_popupWindowStyle
* @see #AppCompatTheme_radioButtonStyle
* @see #AppCompatTheme_ratingBarStyle
* @see #AppCompatTheme_ratingBarStyleIndicator
* @see #AppCompatTheme_ratingBarStyleSmall
* @see #AppCompatTheme_searchViewStyle
* @see #AppCompatTheme_seekBarStyle
* @see #AppCompatTheme_selectableItemBackground
* @see #AppCompatTheme_selectableItemBackgroundBorderless
* @see #AppCompatTheme_spinnerDropDownItemStyle
* @see #AppCompatTheme_spinnerStyle
* @see #AppCompatTheme_switchStyle
* @see #AppCompatTheme_textAppearanceLargePopupMenu
* @see #AppCompatTheme_textAppearanceListItem
* @see #AppCompatTheme_textAppearanceListItemSecondary
* @see #AppCompatTheme_textAppearanceListItemSmall
* @see #AppCompatTheme_textAppearancePopupMenuHeader
* @see #AppCompatTheme_textAppearanceSearchResultSubtitle
* @see #AppCompatTheme_textAppearanceSearchResultTitle
* @see #AppCompatTheme_textAppearanceSmallPopupMenu
* @see #AppCompatTheme_textColorAlertDialogListItem
* @see #AppCompatTheme_textColorSearchUrl
* @see #AppCompatTheme_toolbarNavigationButtonStyle
* @see #AppCompatTheme_toolbarStyle
* @see #AppCompatTheme_tooltipForegroundColor
* @see #AppCompatTheme_tooltipFrameBackground
* @see #AppCompatTheme_viewInflaterClass
* @see #AppCompatTheme_windowActionBar
* @see #AppCompatTheme_windowActionBarOverlay
* @see #AppCompatTheme_windowActionModeOverlay
* @see #AppCompatTheme_windowFixedHeightMajor
* @see #AppCompatTheme_windowFixedHeightMinor
* @see #AppCompatTheme_windowFixedWidthMajor
* @see #AppCompatTheme_windowFixedWidthMinor
* @see #AppCompatTheme_windowMinWidthMajor
* @see #AppCompatTheme_windowMinWidthMinor
* @see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme={
0x01010057, 0x010100ae, 0x7f020000, 0x7f020001,
0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005,
0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009,
0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e,
0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012,
0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016,
0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a,
0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e,
0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024,
0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a,
0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e,
0x7f020042, 0x7f020043, 0x7f020047, 0x7f020048,
0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051,
0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055,
0x7f020056, 0x7f020057, 0x7f020063, 0x7f020067,
0x7f020068, 0x7f02006b, 0x7f02006d, 0x7f020070,
0x7f020071, 0x7f020072, 0x7f020073, 0x7f020074,
0x7f020086, 0x7f02008c, 0x7f0200cb, 0x7f0200cc,
0x7f0200cf, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2,
0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200e4,
0x7f0200e5, 0x7f0200e6, 0x7f0200e7, 0x7f0200e9,
0x7f0200ef, 0x7f0200f0, 0x7f0200f1, 0x7f0200f2,
0x7f0200f5, 0x7f0200f6, 0x7f0200f7, 0x7f0200f8,
0x7f0200ff, 0x7f020100, 0x7f02010e, 0x7f020111,
0x7f020112, 0x7f020113, 0x7f020114, 0x7f020115,
0x7f020116, 0x7f020117, 0x7f020118, 0x7f020119,
0x7f02011a, 0x7f02012f, 0x7f020130, 0x7f020131,
0x7f020132, 0x7f020137, 0x7f020139, 0x7f02013a,
0x7f02013b, 0x7f02013c, 0x7f02013d, 0x7f02013e,
0x7f02013f, 0x7f020140, 0x7f020141, 0x7f020142
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle=6;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle=7;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#actionBarTabBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle=8;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle=9;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#actionBarTabTextStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle=10;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme=11;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme=12;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle=13;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle=14;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance=15;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor=16;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground=17;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#actionModeCloseButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle=18;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable=19;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable=20;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable=21;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable=22;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable=23;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle=24;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable=25;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable=26;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground=27;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#actionModeStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle=28;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable=29;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#actionOverflowButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle=30;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#actionOverflowMenuStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle=31;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle=32;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#alertDialogButtonGroupStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle=33;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#alertDialogCenterButtons}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons=34;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#alertDialogStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle=35;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme=36;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle=37;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle=38;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle=39;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle=43;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle=44;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall=45;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle=46;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle=47;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:colorAccent
*/
public static final int AppCompatTheme_colorAccent=48;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating=49;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal=50;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated=51;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight=52;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal=53;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#colorError}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:colorError
*/
public static final int AppCompatTheme_colorError=54;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary=55;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark=56;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal=57;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:controlBackground
*/
public static final int AppCompatTheme_controlBackground=58;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding=59;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme=60;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal=61;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical=62;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle=63;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight=64;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground=65;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:editTextColor
*/
public static final int AppCompatTheme_editTextColor=66;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle=67;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator=68;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle=69;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator=70;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog=71;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle=72;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#listPopupWindowStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle=73;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight=74;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge=75;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall=76;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft=77;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight=78;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:panelBackground
*/
public static final int AppCompatTheme_panelBackground=79;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme=80;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth=81;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle=82;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle=83;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle=84;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle=85;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator=86;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall=87;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle=88;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle=89;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground=90;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless=91;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle=92;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle=93;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:switchStyle
*/
public static final int AppCompatTheme_switchStyle=94;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu=95;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem=96;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#textAppearanceListItemSecondary}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary=97;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall=98;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader=99;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=100;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle=101;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu=102;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem=103;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl=104;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle=105;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle=106;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#tooltipForegroundColor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:tooltipForegroundColor
*/
public static final int AppCompatTheme_tooltipForegroundColor=107;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#tooltipFrameBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:tooltipFrameBackground
*/
public static final int AppCompatTheme_tooltipFrameBackground=108;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#viewInflaterClass}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.amazon.identity.auth.device.lwaapp:viewInflaterClass
*/
public static final int AppCompatTheme_viewInflaterClass=109;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar=110;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay=111;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay=112;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor=113;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor=114;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor=115;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor=116;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor=117;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor=118;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle=119;
/**
* Attributes that can be used with a ButtonBarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ButtonBarLayout_allowStacking com.amazon.identity.auth.device.lwaapp:allowStacking}</code></td><td></td></tr>
* </table>
* @see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout={
0x7f020026
};
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:allowStacking
*/
public static final int ButtonBarLayout_allowStacking=0;
/**
* Attributes that can be used with a ColorStateListItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
* <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
* <tr><td><code>{@link #ColorStateListItem_alpha com.amazon.identity.auth.device.lwaapp: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, 0x7f020027
};
/**
* <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;
/**
* <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 com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:alpha
*/
public static final int ColorStateListItem_alpha=2;
/**
* Attributes that can be used with a CompoundButton.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
* <tr><td><code>{@link #CompoundButton_buttonTint com.amazon.identity.auth.device.lwaapp:buttonTint}</code></td><td></td></tr>
* <tr><td><code>{@link #CompoundButton_buttonTintMode com.amazon.identity.auth.device.lwaapp:buttonTintMode}</code></td><td></td></tr>
* </table>
* @see #CompoundButton_android_button
* @see #CompoundButton_buttonTint
* @see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton={
0x01010107, 0x7f020044, 0x7f020045
};
/**
* <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 com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:buttonTint
*/
public static final int CompoundButton_buttonTint=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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>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 com.amazon.identity.auth.device.lwaapp:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode=2;
/**
* Attributes that can be used with a ConstraintLayout_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 #ConstraintLayout_Layout_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_barrierAllowsGoneWidgets com.amazon.identity.auth.device.lwaapp:barrierAllowsGoneWidgets}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_barrierDirection com.amazon.identity.auth.device.lwaapp:barrierDirection}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_chainUseRtl com.amazon.identity.auth.device.lwaapp:chainUseRtl}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_constraintSet com.amazon.identity.auth.device.lwaapp:constraintSet}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_constraint_referenced_ids com.amazon.identity.auth.device.lwaapp:constraint_referenced_ids}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constrainedHeight com.amazon.identity.auth.device.lwaapp:layout_constrainedHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constrainedWidth com.amazon.identity.auth.device.lwaapp:layout_constrainedWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.amazon.identity.auth.device.lwaapp:layout_constraintBaseline_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.amazon.identity.auth.device.lwaapp:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_toBottomOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_toTopOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircle com.amazon.identity.auth.device.lwaapp:layout_constraintCircle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircleAngle com.amazon.identity.auth.device.lwaapp:layout_constraintCircleAngle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircleRadius com.amazon.identity.auth.device.lwaapp:layout_constraintCircleRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.amazon.identity.auth.device.lwaapp:layout_constraintDimensionRatio}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.amazon.identity.auth.device.lwaapp:layout_constraintEnd_toEndOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.amazon.identity.auth.device.lwaapp:layout_constraintEnd_toStartOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_begin}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_end}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_default}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_max}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_min}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_percent com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_bias}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_weight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_toLeftOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_toRightOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.amazon.identity.auth.device.lwaapp:layout_constraintRight_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.amazon.identity.auth.device.lwaapp:layout_constraintRight_toLeftOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.amazon.identity.auth.device.lwaapp:layout_constraintRight_toRightOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.amazon.identity.auth.device.lwaapp:layout_constraintStart_toEndOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.amazon.identity.auth.device.lwaapp:layout_constraintStart_toStartOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.amazon.identity.auth.device.lwaapp:layout_constraintTop_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.amazon.identity.auth.device.lwaapp:layout_constraintTop_toBottomOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.amazon.identity.auth.device.lwaapp:layout_constraintTop_toTopOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_bias}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_chainStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_weight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_default}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_max}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_min}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_percent com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.amazon.identity.auth.device.lwaapp:layout_editor_absoluteX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.amazon.identity.auth.device.lwaapp:layout_editor_absoluteY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.amazon.identity.auth.device.lwaapp:layout_goneMarginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.amazon.identity.auth.device.lwaapp:layout_goneMarginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.amazon.identity.auth.device.lwaapp:layout_goneMarginLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.amazon.identity.auth.device.lwaapp:layout_goneMarginRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.amazon.identity.auth.device.lwaapp:layout_goneMarginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.amazon.identity.auth.device.lwaapp:layout_goneMarginTop}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.amazon.identity.auth.device.lwaapp:layout_optimizationLevel}</code></td><td></td></tr>
* </table>
* @see #ConstraintLayout_Layout_android_orientation
* @see #ConstraintLayout_Layout_android_maxWidth
* @see #ConstraintLayout_Layout_android_maxHeight
* @see #ConstraintLayout_Layout_android_minWidth
* @see #ConstraintLayout_Layout_android_minHeight
* @see #ConstraintLayout_Layout_barrierAllowsGoneWidgets
* @see #ConstraintLayout_Layout_barrierDirection
* @see #ConstraintLayout_Layout_chainUseRtl
* @see #ConstraintLayout_Layout_constraintSet
* @see #ConstraintLayout_Layout_constraint_referenced_ids
* @see #ConstraintLayout_Layout_layout_constrainedHeight
* @see #ConstraintLayout_Layout_layout_constrainedWidth
* @see #ConstraintLayout_Layout_layout_constraintBaseline_creator
* @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
* @see #ConstraintLayout_Layout_layout_constraintBottom_creator
* @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
* @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf
* @see #ConstraintLayout_Layout_layout_constraintCircle
* @see #ConstraintLayout_Layout_layout_constraintCircleAngle
* @see #ConstraintLayout_Layout_layout_constraintCircleRadius
* @see #ConstraintLayout_Layout_layout_constraintDimensionRatio
* @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf
* @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf
* @see #ConstraintLayout_Layout_layout_constraintGuide_begin
* @see #ConstraintLayout_Layout_layout_constraintGuide_end
* @see #ConstraintLayout_Layout_layout_constraintGuide_percent
* @see #ConstraintLayout_Layout_layout_constraintHeight_default
* @see #ConstraintLayout_Layout_layout_constraintHeight_max
* @see #ConstraintLayout_Layout_layout_constraintHeight_min
* @see #ConstraintLayout_Layout_layout_constraintHeight_percent
* @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias
* @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
* @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight
* @see #ConstraintLayout_Layout_layout_constraintLeft_creator
* @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
* @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf
* @see #ConstraintLayout_Layout_layout_constraintRight_creator
* @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf
* @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf
* @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf
* @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf
* @see #ConstraintLayout_Layout_layout_constraintTop_creator
* @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf
* @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf
* @see #ConstraintLayout_Layout_layout_constraintVertical_bias
* @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle
* @see #ConstraintLayout_Layout_layout_constraintVertical_weight
* @see #ConstraintLayout_Layout_layout_constraintWidth_default
* @see #ConstraintLayout_Layout_layout_constraintWidth_max
* @see #ConstraintLayout_Layout_layout_constraintWidth_min
* @see #ConstraintLayout_Layout_layout_constraintWidth_percent
* @see #ConstraintLayout_Layout_layout_editor_absoluteX
* @see #ConstraintLayout_Layout_layout_editor_absoluteY
* @see #ConstraintLayout_Layout_layout_goneMarginBottom
* @see #ConstraintLayout_Layout_layout_goneMarginEnd
* @see #ConstraintLayout_Layout_layout_goneMarginLeft
* @see #ConstraintLayout_Layout_layout_goneMarginRight
* @see #ConstraintLayout_Layout_layout_goneMarginStart
* @see #ConstraintLayout_Layout_layout_goneMarginTop
* @see #ConstraintLayout_Layout_layout_optimizationLevel
*/
public static final int[] ConstraintLayout_Layout={
0x010100c4, 0x0101011f, 0x01010120, 0x0101013f,
0x01010140, 0x7f020037, 0x7f020038, 0x7f020046,
0x7f020059, 0x7f02005a, 0x7f020096, 0x7f020097,
0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b,
0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f,
0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3,
0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7,
0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab,
0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af,
0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3,
0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7,
0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb,
0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200c0,
0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4,
0x7f0200c5, 0x7f0200c6, 0x7f0200c7, 0x7f0200ca
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #ConstraintLayout_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>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 ConstraintLayout_Layout_android_orientation=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #ConstraintLayout_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 android:maxWidth
*/
public static final int ConstraintLayout_Layout_android_maxWidth=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxHeight}
* attribute's value can be found in the {@link #ConstraintLayout_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 android:maxHeight
*/
public static final int ConstraintLayout_Layout_android_maxHeight=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#minWidth}
* attribute's value can be found in the {@link #ConstraintLayout_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 android:minWidth
*/
public static final int ConstraintLayout_Layout_android_minWidth=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#minHeight}
* attribute's value can be found in the {@link #ConstraintLayout_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 android:minHeight
*/
public static final int ConstraintLayout_Layout_android_minHeight=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#barrierAllowsGoneWidgets}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:barrierAllowsGoneWidgets
*/
public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#barrierDirection}
* attribute's value can be found in the {@link #ConstraintLayout_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>3</td><td></td></tr>
* <tr><td>end</td><td>6</td><td></td></tr>
* <tr><td>left</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>1</td><td></td></tr>
* <tr><td>start</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>2</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:barrierDirection
*/
public static final int ConstraintLayout_Layout_barrierDirection=6;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#chainUseRtl}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:chainUseRtl
*/
public static final int ConstraintLayout_Layout_chainUseRtl=7;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#constraintSet}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:constraintSet
*/
public static final int ConstraintLayout_Layout_constraintSet=8;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#constraint_referenced_ids}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.amazon.identity.auth.device.lwaapp:constraint_referenced_ids
*/
public static final int ConstraintLayout_Layout_constraint_referenced_ids=9;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constrainedHeight}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constrainedHeight
*/
public static final int ConstraintLayout_Layout_layout_constrainedHeight=10;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constrainedWidth}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constrainedWidth
*/
public static final int ConstraintLayout_Layout_layout_constrainedWidth=11;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintBaseline_creator}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintBaseline_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator=12;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintBaseline_toBaselineOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintBaseline_toBaselineOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf=13;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintBottom_creator}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_creator=14;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintBottom_toBottomOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_toBottomOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf=15;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintBottom_toTopOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_toTopOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf=16;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintCircle}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_constraintCircle
*/
public static final int ConstraintLayout_Layout_layout_constraintCircle=17;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintCircleAngle}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintCircleAngle
*/
public static final int ConstraintLayout_Layout_layout_constraintCircleAngle=18;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintCircleRadius}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_constraintCircleRadius
*/
public static final int ConstraintLayout_Layout_layout_constraintCircleRadius=19;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintDimensionRatio}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintDimensionRatio
*/
public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio=20;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintEnd_toEndOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintEnd_toEndOf
*/
public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf=21;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintEnd_toStartOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintEnd_toStartOf
*/
public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf=22;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintGuide_begin}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_begin
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_begin=23;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintGuide_end}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_end
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_end=24;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintGuide_percent}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_percent
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_percent=25;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHeight_default}
* attribute's value can be found in the {@link #ConstraintLayout_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>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_default
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_default=26;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHeight_max}
* attribute's value can be found in the {@link #ConstraintLayout_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</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_max
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_max=27;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHeight_min}
* attribute's value can be found in the {@link #ConstraintLayout_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</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_min
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_min=28;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHeight_percent}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_percent
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_percent=29;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHorizontal_bias}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_bias
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias=30;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHorizontal_chainStyle}
* attribute's value can be found in the {@link #ConstraintLayout_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>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_chainStyle
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle=31;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHorizontal_weight}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_weight
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight=32;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintLeft_creator}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_creator=33;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintLeft_toLeftOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_toLeftOf
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf=34;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintLeft_toRightOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_toRightOf
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf=35;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintRight_creator}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintRight_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_creator=36;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintRight_toLeftOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintRight_toLeftOf
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf=37;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintRight_toRightOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintRight_toRightOf
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf=38;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintStart_toEndOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintStart_toEndOf
*/
public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf=39;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintStart_toStartOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintStart_toStartOf
*/
public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf=40;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintTop_creator}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintTop_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_creator=41;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintTop_toBottomOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintTop_toBottomOf
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf=42;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintTop_toTopOf}
* attribute's value can be found in the {@link #ConstraintLayout_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>".
* <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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintTop_toTopOf
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf=43;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintVertical_bias}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_bias
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_bias=44;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintVertical_chainStyle}
* attribute's value can be found in the {@link #ConstraintLayout_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>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_chainStyle
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle=45;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintVertical_weight}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_weight
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_weight=46;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintWidth_default}
* attribute's value can be found in the {@link #ConstraintLayout_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>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_default
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_default=47;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintWidth_max}
* attribute's value can be found in the {@link #ConstraintLayout_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</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_max
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_max=48;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintWidth_min}
* attribute's value can be found in the {@link #ConstraintLayout_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</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_min
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_min=49;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintWidth_percent}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_percent
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_percent=50;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_editor_absoluteX}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_editor_absoluteX
*/
public static final int ConstraintLayout_Layout_layout_editor_absoluteX=51;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_editor_absoluteY}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_editor_absoluteY
*/
public static final int ConstraintLayout_Layout_layout_editor_absoluteY=52;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginBottom}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_goneMarginBottom
*/
public static final int ConstraintLayout_Layout_layout_goneMarginBottom=53;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginEnd}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_goneMarginEnd
*/
public static final int ConstraintLayout_Layout_layout_goneMarginEnd=54;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginLeft}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_goneMarginLeft
*/
public static final int ConstraintLayout_Layout_layout_goneMarginLeft=55;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginRight}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_goneMarginRight
*/
public static final int ConstraintLayout_Layout_layout_goneMarginRight=56;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginStart}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_goneMarginStart
*/
public static final int ConstraintLayout_Layout_layout_goneMarginStart=57;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginTop}
* attribute's value can be found in the {@link #ConstraintLayout_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 com.amazon.identity.auth.device.lwaapp:layout_goneMarginTop
*/
public static final int ConstraintLayout_Layout_layout_goneMarginTop=58;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_optimizationLevel}
* attribute's value can be found in the {@link #ConstraintLayout_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>barrier</td><td>2</td><td></td></tr>
* <tr><td>chains</td><td>4</td><td></td></tr>
* <tr><td>dimensions</td><td>8</td><td></td></tr>
* <tr><td>direct</td><td>1</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>standard</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_optimizationLevel
*/
public static final int ConstraintLayout_Layout_layout_optimizationLevel=59;
/**
* Attributes that can be used with a ConstraintLayout_placeholder.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ConstraintLayout_placeholder_content com.amazon.identity.auth.device.lwaapp:content}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_placeholder_emptyVisibility com.amazon.identity.auth.device.lwaapp:emptyVisibility}</code></td><td></td></tr>
* </table>
* @see #ConstraintLayout_placeholder_content
* @see #ConstraintLayout_placeholder_emptyVisibility
*/
public static final int[] ConstraintLayout_placeholder={
0x7f02005b, 0x7f020076
};
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#content}
* attribute's value can be found in the {@link #ConstraintLayout_placeholder} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:content
*/
public static final int ConstraintLayout_placeholder_content=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#emptyVisibility}
* attribute's value can be found in the {@link #ConstraintLayout_placeholder} 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>gone</td><td>0</td><td></td></tr>
* <tr><td>invisible</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:emptyVisibility
*/
public static final int ConstraintLayout_placeholder_emptyVisibility=1;
/**
* Attributes that can be used with a ConstraintSet.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ConstraintSet_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_visibility android:visibility}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_width android:layout_width}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_height android:layout_height}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_alpha android:alpha}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_transformPivotX android:transformPivotX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_transformPivotY android:transformPivotY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_translationX android:translationX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_translationY android:translationY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_scaleX android:scaleX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_scaleY android:scaleY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_rotation android:rotation}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_rotationX android:rotationX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_rotationY android:rotationY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_translationZ android:translationZ}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_elevation android:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constrainedHeight com.amazon.identity.auth.device.lwaapp:layout_constrainedHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constrainedWidth com.amazon.identity.auth.device.lwaapp:layout_constrainedWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_creator com.amazon.identity.auth.device.lwaapp:layout_constraintBaseline_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.amazon.identity.auth.device.lwaapp:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_toBottomOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_toTopOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintCircle com.amazon.identity.auth.device.lwaapp:layout_constraintCircle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintCircleAngle com.amazon.identity.auth.device.lwaapp:layout_constraintCircleAngle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintCircleRadius com.amazon.identity.auth.device.lwaapp:layout_constraintCircleRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.amazon.identity.auth.device.lwaapp:layout_constraintDimensionRatio}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.amazon.identity.auth.device.lwaapp:layout_constraintEnd_toEndOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.amazon.identity.auth.device.lwaapp:layout_constraintEnd_toStartOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_begin}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_end}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_default}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_max}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_min}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_percent com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_bias}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_weight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_toLeftOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_toRightOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.amazon.identity.auth.device.lwaapp:layout_constraintRight_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.amazon.identity.auth.device.lwaapp:layout_constraintRight_toLeftOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.amazon.identity.auth.device.lwaapp:layout_constraintRight_toRightOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.amazon.identity.auth.device.lwaapp:layout_constraintStart_toEndOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.amazon.identity.auth.device.lwaapp:layout_constraintStart_toStartOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.amazon.identity.auth.device.lwaapp:layout_constraintTop_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.amazon.identity.auth.device.lwaapp:layout_constraintTop_toBottomOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.amazon.identity.auth.device.lwaapp:layout_constraintTop_toTopOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_bias}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_chainStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_weight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_default}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_max}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_min}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_percent com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.amazon.identity.auth.device.lwaapp:layout_editor_absoluteX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.amazon.identity.auth.device.lwaapp:layout_editor_absoluteY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.amazon.identity.auth.device.lwaapp:layout_goneMarginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.amazon.identity.auth.device.lwaapp:layout_goneMarginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.amazon.identity.auth.device.lwaapp:layout_goneMarginLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.amazon.identity.auth.device.lwaapp:layout_goneMarginRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.amazon.identity.auth.device.lwaapp:layout_goneMarginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.amazon.identity.auth.device.lwaapp:layout_goneMarginTop}</code></td><td></td></tr>
* </table>
* @see #ConstraintSet_android_orientation
* @see #ConstraintSet_android_id
* @see #ConstraintSet_android_visibility
* @see #ConstraintSet_android_layout_width
* @see #ConstraintSet_android_layout_height
* @see #ConstraintSet_android_layout_marginLeft
* @see #ConstraintSet_android_layout_marginTop
* @see #ConstraintSet_android_layout_marginRight
* @see #ConstraintSet_android_layout_marginBottom
* @see #ConstraintSet_android_alpha
* @see #ConstraintSet_android_transformPivotX
* @see #ConstraintSet_android_transformPivotY
* @see #ConstraintSet_android_translationX
* @see #ConstraintSet_android_translationY
* @see #ConstraintSet_android_scaleX
* @see #ConstraintSet_android_scaleY
* @see #ConstraintSet_android_rotation
* @see #ConstraintSet_android_rotationX
* @see #ConstraintSet_android_rotationY
* @see #ConstraintSet_android_layout_marginStart
* @see #ConstraintSet_android_layout_marginEnd
* @see #ConstraintSet_android_translationZ
* @see #ConstraintSet_android_elevation
* @see #ConstraintSet_layout_constrainedHeight
* @see #ConstraintSet_layout_constrainedWidth
* @see #ConstraintSet_layout_constraintBaseline_creator
* @see #ConstraintSet_layout_constraintBaseline_toBaselineOf
* @see #ConstraintSet_layout_constraintBottom_creator
* @see #ConstraintSet_layout_constraintBottom_toBottomOf
* @see #ConstraintSet_layout_constraintBottom_toTopOf
* @see #ConstraintSet_layout_constraintCircle
* @see #ConstraintSet_layout_constraintCircleAngle
* @see #ConstraintSet_layout_constraintCircleRadius
* @see #ConstraintSet_layout_constraintDimensionRatio
* @see #ConstraintSet_layout_constraintEnd_toEndOf
* @see #ConstraintSet_layout_constraintEnd_toStartOf
* @see #ConstraintSet_layout_constraintGuide_begin
* @see #ConstraintSet_layout_constraintGuide_end
* @see #ConstraintSet_layout_constraintGuide_percent
* @see #ConstraintSet_layout_constraintHeight_default
* @see #ConstraintSet_layout_constraintHeight_max
* @see #ConstraintSet_layout_constraintHeight_min
* @see #ConstraintSet_layout_constraintHeight_percent
* @see #ConstraintSet_layout_constraintHorizontal_bias
* @see #ConstraintSet_layout_constraintHorizontal_chainStyle
* @see #ConstraintSet_layout_constraintHorizontal_weight
* @see #ConstraintSet_layout_constraintLeft_creator
* @see #ConstraintSet_layout_constraintLeft_toLeftOf
* @see #ConstraintSet_layout_constraintLeft_toRightOf
* @see #ConstraintSet_layout_constraintRight_creator
* @see #ConstraintSet_layout_constraintRight_toLeftOf
* @see #ConstraintSet_layout_constraintRight_toRightOf
* @see #ConstraintSet_layout_constraintStart_toEndOf
* @see #ConstraintSet_layout_constraintStart_toStartOf
* @see #ConstraintSet_layout_constraintTop_creator
* @see #ConstraintSet_layout_constraintTop_toBottomOf
* @see #ConstraintSet_layout_constraintTop_toTopOf
* @see #ConstraintSet_layout_constraintVertical_bias
* @see #ConstraintSet_layout_constraintVertical_chainStyle
* @see #ConstraintSet_layout_constraintVertical_weight
* @see #ConstraintSet_layout_constraintWidth_default
* @see #ConstraintSet_layout_constraintWidth_max
* @see #ConstraintSet_layout_constraintWidth_min
* @see #ConstraintSet_layout_constraintWidth_percent
* @see #ConstraintSet_layout_editor_absoluteX
* @see #ConstraintSet_layout_editor_absoluteY
* @see #ConstraintSet_layout_goneMarginBottom
* @see #ConstraintSet_layout_goneMarginEnd
* @see #ConstraintSet_layout_goneMarginLeft
* @see #ConstraintSet_layout_goneMarginRight
* @see #ConstraintSet_layout_goneMarginStart
* @see #ConstraintSet_layout_goneMarginTop
*/
public static final int[] ConstraintSet={
0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4,
0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9,
0x010100fa, 0x0101031f, 0x01010320, 0x01010321,
0x01010322, 0x01010323, 0x01010324, 0x01010325,
0x01010326, 0x01010327, 0x01010328, 0x010103b5,
0x010103b6, 0x010103fa, 0x01010440, 0x7f020096,
0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a,
0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e,
0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2,
0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6,
0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa,
0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae,
0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2,
0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6,
0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba,
0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be,
0x7f0200c0, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3,
0x7f0200c4, 0x7f0200c5, 0x7f0200c6, 0x7f0200c7
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #ConstraintSet} 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 ConstraintSet_android_orientation=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#id}
* attribute's value can be found in the {@link #ConstraintSet} 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 ConstraintSet_android_id=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#visibility}
* attribute's value can be found in the {@link #ConstraintSet} 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>gone</td><td>2</td><td></td></tr>
* <tr><td>invisible</td><td>1</td><td></td></tr>
* <tr><td>visible</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:visibility
*/
public static final int ConstraintSet_android_visibility=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_width}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:layout_width
*/
public static final int ConstraintSet_android_layout_width=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_height}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:layout_height
*/
public static final int ConstraintSet_android_layout_height=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginLeft}
* attribute's value can be found in the {@link #ConstraintSet} 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:layout_marginLeft
*/
public static final int ConstraintSet_android_layout_marginLeft=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginTop}
* attribute's value can be found in the {@link #ConstraintSet} 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:layout_marginTop
*/
public static final int ConstraintSet_android_layout_marginTop=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginRight}
* attribute's value can be found in the {@link #ConstraintSet} 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:layout_marginRight
*/
public static final int ConstraintSet_android_layout_marginRight=7;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginBottom}
* attribute's value can be found in the {@link #ConstraintSet} 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:layout_marginBottom
*/
public static final int ConstraintSet_android_layout_marginBottom=8;
/**
* <p>This symbol is the offset where the {@link android.R.attr#alpha}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:alpha
*/
public static final int ConstraintSet_android_alpha=9;
/**
* <p>This symbol is the offset where the {@link android.R.attr#transformPivotX}
* attribute's value can be found in the {@link #ConstraintSet} 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:transformPivotX
*/
public static final int ConstraintSet_android_transformPivotX=10;
/**
* <p>This symbol is the offset where the {@link android.R.attr#transformPivotY}
* attribute's value can be found in the {@link #ConstraintSet} 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:transformPivotY
*/
public static final int ConstraintSet_android_transformPivotY=11;
/**
* <p>This symbol is the offset where the {@link android.R.attr#translationX}
* attribute's value can be found in the {@link #ConstraintSet} 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:translationX
*/
public static final int ConstraintSet_android_translationX=12;
/**
* <p>This symbol is the offset where the {@link android.R.attr#translationY}
* attribute's value can be found in the {@link #ConstraintSet} 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:translationY
*/
public static final int ConstraintSet_android_translationY=13;
/**
* <p>This symbol is the offset where the {@link android.R.attr#scaleX}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:scaleX
*/
public static final int ConstraintSet_android_scaleX=14;
/**
* <p>This symbol is the offset where the {@link android.R.attr#scaleY}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:scaleY
*/
public static final int ConstraintSet_android_scaleY=15;
/**
* <p>This symbol is the offset where the {@link android.R.attr#rotation}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:rotation
*/
public static final int ConstraintSet_android_rotation=16;
/**
* <p>This symbol is the offset where the {@link android.R.attr#rotationX}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:rotationX
*/
public static final int ConstraintSet_android_rotationX=17;
/**
* <p>This symbol is the offset where the {@link android.R.attr#rotationY}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:rotationY
*/
public static final int ConstraintSet_android_rotationY=18;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginStart}
* attribute's value can be found in the {@link #ConstraintSet} 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:layout_marginStart
*/
public static final int ConstraintSet_android_layout_marginStart=19;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginEnd}
* attribute's value can be found in the {@link #ConstraintSet} 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:layout_marginEnd
*/
public static final int ConstraintSet_android_layout_marginEnd=20;
/**
* <p>This symbol is the offset where the {@link android.R.attr#translationZ}
* attribute's value can be found in the {@link #ConstraintSet} 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:translationZ
*/
public static final int ConstraintSet_android_translationZ=21;
/**
* <p>This symbol is the offset where the {@link android.R.attr#elevation}
* attribute's value can be found in the {@link #ConstraintSet} 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:elevation
*/
public static final int ConstraintSet_android_elevation=22;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constrainedHeight}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constrainedHeight
*/
public static final int ConstraintSet_layout_constrainedHeight=23;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constrainedWidth}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constrainedWidth
*/
public static final int ConstraintSet_layout_constrainedWidth=24;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintBaseline_creator}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintBaseline_creator
*/
public static final int ConstraintSet_layout_constraintBaseline_creator=25;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintBaseline_toBaselineOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintBaseline_toBaselineOf
*/
public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf=26;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintBottom_creator}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_creator
*/
public static final int ConstraintSet_layout_constraintBottom_creator=27;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintBottom_toBottomOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_toBottomOf
*/
public static final int ConstraintSet_layout_constraintBottom_toBottomOf=28;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintBottom_toTopOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintBottom_toTopOf
*/
public static final int ConstraintSet_layout_constraintBottom_toTopOf=29;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintCircle}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintCircle
*/
public static final int ConstraintSet_layout_constraintCircle=30;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintCircleAngle}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintCircleAngle
*/
public static final int ConstraintSet_layout_constraintCircleAngle=31;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintCircleRadius}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintCircleRadius
*/
public static final int ConstraintSet_layout_constraintCircleRadius=32;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintDimensionRatio}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintDimensionRatio
*/
public static final int ConstraintSet_layout_constraintDimensionRatio=33;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintEnd_toEndOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintEnd_toEndOf
*/
public static final int ConstraintSet_layout_constraintEnd_toEndOf=34;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintEnd_toStartOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintEnd_toStartOf
*/
public static final int ConstraintSet_layout_constraintEnd_toStartOf=35;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintGuide_begin}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_begin
*/
public static final int ConstraintSet_layout_constraintGuide_begin=36;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintGuide_end}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_end
*/
public static final int ConstraintSet_layout_constraintGuide_end=37;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintGuide_percent}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintGuide_percent
*/
public static final int ConstraintSet_layout_constraintGuide_percent=38;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHeight_default}
* attribute's value can be found in the {@link #ConstraintSet} 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>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_default
*/
public static final int ConstraintSet_layout_constraintHeight_default=39;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHeight_max}
* attribute's value can be found in the {@link #ConstraintSet} 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</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_max
*/
public static final int ConstraintSet_layout_constraintHeight_max=40;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHeight_min}
* attribute's value can be found in the {@link #ConstraintSet} 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</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_min
*/
public static final int ConstraintSet_layout_constraintHeight_min=41;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHeight_percent}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHeight_percent
*/
public static final int ConstraintSet_layout_constraintHeight_percent=42;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHorizontal_bias}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_bias
*/
public static final int ConstraintSet_layout_constraintHorizontal_bias=43;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHorizontal_chainStyle}
* attribute's value can be found in the {@link #ConstraintSet} 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>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_chainStyle
*/
public static final int ConstraintSet_layout_constraintHorizontal_chainStyle=44;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintHorizontal_weight}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintHorizontal_weight
*/
public static final int ConstraintSet_layout_constraintHorizontal_weight=45;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintLeft_creator}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_creator
*/
public static final int ConstraintSet_layout_constraintLeft_creator=46;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintLeft_toLeftOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_toLeftOf
*/
public static final int ConstraintSet_layout_constraintLeft_toLeftOf=47;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintLeft_toRightOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintLeft_toRightOf
*/
public static final int ConstraintSet_layout_constraintLeft_toRightOf=48;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintRight_creator}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintRight_creator
*/
public static final int ConstraintSet_layout_constraintRight_creator=49;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintRight_toLeftOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintRight_toLeftOf
*/
public static final int ConstraintSet_layout_constraintRight_toLeftOf=50;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintRight_toRightOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintRight_toRightOf
*/
public static final int ConstraintSet_layout_constraintRight_toRightOf=51;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintStart_toEndOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintStart_toEndOf
*/
public static final int ConstraintSet_layout_constraintStart_toEndOf=52;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintStart_toStartOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintStart_toStartOf
*/
public static final int ConstraintSet_layout_constraintStart_toStartOf=53;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintTop_creator}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintTop_creator
*/
public static final int ConstraintSet_layout_constraintTop_creator=54;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintTop_toBottomOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintTop_toBottomOf
*/
public static final int ConstraintSet_layout_constraintTop_toBottomOf=55;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintTop_toTopOf}
* attribute's value can be found in the {@link #ConstraintSet} 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>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>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintTop_toTopOf
*/
public static final int ConstraintSet_layout_constraintTop_toTopOf=56;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintVertical_bias}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_bias
*/
public static final int ConstraintSet_layout_constraintVertical_bias=57;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintVertical_chainStyle}
* attribute's value can be found in the {@link #ConstraintSet} 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>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_chainStyle
*/
public static final int ConstraintSet_layout_constraintVertical_chainStyle=58;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintVertical_weight}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintVertical_weight
*/
public static final int ConstraintSet_layout_constraintVertical_weight=59;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintWidth_default}
* attribute's value can be found in the {@link #ConstraintSet} 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>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_default
*/
public static final int ConstraintSet_layout_constraintWidth_default=60;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintWidth_max}
* attribute's value can be found in the {@link #ConstraintSet} 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</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_max
*/
public static final int ConstraintSet_layout_constraintWidth_max=61;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintWidth_min}
* attribute's value can be found in the {@link #ConstraintSet} 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</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_min
*/
public static final int ConstraintSet_layout_constraintWidth_min=62;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_constraintWidth_percent}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_constraintWidth_percent
*/
public static final int ConstraintSet_layout_constraintWidth_percent=63;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_editor_absoluteX}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_editor_absoluteX
*/
public static final int ConstraintSet_layout_editor_absoluteX=64;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_editor_absoluteY}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_editor_absoluteY
*/
public static final int ConstraintSet_layout_editor_absoluteY=65;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginBottom}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_goneMarginBottom
*/
public static final int ConstraintSet_layout_goneMarginBottom=66;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginEnd}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_goneMarginEnd
*/
public static final int ConstraintSet_layout_goneMarginEnd=67;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginLeft}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_goneMarginLeft
*/
public static final int ConstraintSet_layout_goneMarginLeft=68;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginRight}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_goneMarginRight
*/
public static final int ConstraintSet_layout_goneMarginRight=69;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginStart}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_goneMarginStart
*/
public static final int ConstraintSet_layout_goneMarginStart=70;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#layout_goneMarginTop}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:layout_goneMarginTop
*/
public static final int ConstraintSet_layout_goneMarginTop=71;
/**
* Attributes that can be used with a CoordinatorLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CoordinatorLayout_keylines com.amazon.identity.auth.device.lwaapp:keylines}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.amazon.identity.auth.device.lwaapp:statusBarBackground}</code></td><td></td></tr>
* </table>
* @see #CoordinatorLayout_keylines
* @see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout={
0x7f020091, 0x7f020104
};
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:keylines
*/
public static final int CoordinatorLayout_keylines=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground=1;
/**
* Attributes that can be used with a CoordinatorLayout_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.amazon.identity.auth.device.lwaapp:layout_anchor}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.amazon.identity.auth.device.lwaapp:layout_anchorGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.amazon.identity.auth.device.lwaapp:layout_behavior}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.amazon.identity.auth.device.lwaapp:layout_dodgeInsetEdges}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.amazon.identity.auth.device.lwaapp:layout_insetEdge}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.amazon.identity.auth.device.lwaapp: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, 0x7f020093, 0x7f020094, 0x7f020095,
0x7f0200bf, 0x7f0200c8, 0x7f0200c9
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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>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 com.amazon.identity.auth.device.lwaapp:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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>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 com.amazon.identity.auth.device.lwaapp:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline=6;
/**
* Attributes that can be used with a DrawerArrowToggle.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.amazon.identity.auth.device.lwaapp:arrowHeadLength}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.amazon.identity.auth.device.lwaapp:arrowShaftLength}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_barLength com.amazon.identity.auth.device.lwaapp:barLength}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_color com.amazon.identity.auth.device.lwaapp:color}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.amazon.identity.auth.device.lwaapp:drawableSize}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.amazon.identity.auth.device.lwaapp:gapBetweenBars}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_spinBars com.amazon.identity.auth.device.lwaapp:spinBars}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_thickness com.amazon.identity.auth.device.lwaapp: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={
0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004d,
0x7f02006e, 0x7f020082, 0x7f0200fe, 0x7f02011c
};
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:barLength
*/
public static final int DrawerArrowToggle_barLength=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:color
*/
public static final int DrawerArrowToggle_color=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:spinBars
*/
public static final int DrawerArrowToggle_spinBars=6;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:thickness
*/
public static final int DrawerArrowToggle_thickness=7;
/**
* Attributes that can be used with a FontFamily.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FontFamily_fontProviderAuthority com.amazon.identity.auth.device.lwaapp:fontProviderAuthority}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderCerts com.amazon.identity.auth.device.lwaapp:fontProviderCerts}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.amazon.identity.auth.device.lwaapp:fontProviderFetchStrategy}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.amazon.identity.auth.device.lwaapp:fontProviderFetchTimeout}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderPackage com.amazon.identity.auth.device.lwaapp:fontProviderPackage}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderQuery com.amazon.identity.auth.device.lwaapp:fontProviderQuery}</code></td><td></td></tr>
* </table>
* @see #FontFamily_fontProviderAuthority
* @see #FontFamily_fontProviderCerts
* @see #FontFamily_fontProviderFetchStrategy
* @see #FontFamily_fontProviderFetchTimeout
* @see #FontFamily_fontProviderPackage
* @see #FontFamily_fontProviderQuery
*/
public static final int[] FontFamily={
0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d,
0x7f02007e, 0x7f02007f
};
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#fontProviderAuthority}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.amazon.identity.auth.device.lwaapp:fontProviderAuthority
*/
public static final int FontFamily_fontProviderAuthority=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#fontProviderCerts}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:fontProviderCerts
*/
public static final int FontFamily_fontProviderCerts=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#fontProviderFetchStrategy}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>async</td><td>1</td><td></td></tr>
* <tr><td>blocking</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:fontProviderFetchStrategy
*/
public static final int FontFamily_fontProviderFetchStrategy=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#fontProviderFetchTimeout}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>May be an integer value, such as "<code>100</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>forever</td><td>ffffffff</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:fontProviderFetchTimeout
*/
public static final int FontFamily_fontProviderFetchTimeout=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#fontProviderPackage}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.amazon.identity.auth.device.lwaapp:fontProviderPackage
*/
public static final int FontFamily_fontProviderPackage=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#fontProviderQuery}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.amazon.identity.auth.device.lwaapp:fontProviderQuery
*/
public static final int FontFamily_fontProviderQuery=5;
/**
* Attributes that can be used with a FontFamilyFont.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_font com.amazon.identity.auth.device.lwaapp:font}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_fontStyle com.amazon.identity.auth.device.lwaapp:fontStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_fontWeight com.amazon.identity.auth.device.lwaapp:fontWeight}</code></td><td></td></tr>
* </table>
* @see #FontFamilyFont_android_font
* @see #FontFamilyFont_android_fontWeight
* @see #FontFamilyFont_android_fontStyle
* @see #FontFamilyFont_font
* @see #FontFamilyFont_fontStyle
* @see #FontFamilyFont_fontWeight
*/
public static final int[] FontFamilyFont={
0x01010532, 0x01010533, 0x0101053f, 0x7f020078,
0x7f020080, 0x7f020081
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#font}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:font
*/
public static final int FontFamilyFont_android_font=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fontWeight}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:fontWeight
*/
public static final int FontFamilyFont_android_fontWeight=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fontStyle}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>italic</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:fontStyle
*/
public static final int FontFamilyFont_android_fontStyle=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#font}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:font
*/
public static final int FontFamilyFont_font=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#fontStyle}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>italic</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:fontStyle
*/
public static final int FontFamilyFont_fontStyle=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#fontWeight}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:fontWeight
*/
public static final int FontFamilyFont_fontWeight=5;
/**
* Attributes that can be used with a LinearConstraintLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #LinearConstraintLayout_android_orientation android:orientation}</code></td><td></td></tr>
* </table>
* @see #LinearConstraintLayout_android_orientation
*/
public static final int[] LinearConstraintLayout={
0x010100c4
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #LinearConstraintLayout} 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 LinearConstraintLayout_android_orientation=0;
/**
* Attributes that can be used with a LinearLayoutCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_divider com.amazon.identity.auth.device.lwaapp:divider}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.amazon.identity.auth.device.lwaapp:dividerPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.amazon.identity.auth.device.lwaapp:measureWithLargestChild}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_showDividers com.amazon.identity.auth.device.lwaapp: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, 0x7f02006a, 0x7f02006c, 0x7f0200d9,
0x7f0200fa
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#gravity}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity=0;
/**
* <p>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#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#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 com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:divider
*/
public static final int LinearLayoutCompat_divider=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding=6;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild=7;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:showDividers
*/
public static final int LinearLayoutCompat_showDividers=8;
/**
* Attributes that can be used with a LinearLayoutCompat_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
* </table>
* @see #LinearLayoutCompat_Layout_android_layout_gravity
* @see #LinearLayoutCompat_Layout_android_layout_width
* @see #LinearLayoutCompat_Layout_android_layout_height
* @see #LinearLayoutCompat_Layout_android_layout_weight
*/
public static final int[] LinearLayoutCompat_Layout={
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_width}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_height}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_weight}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight=3;
/**
* Attributes that can be used with a ListPopupWindow.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
* <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
* </table>
* @see #ListPopupWindow_android_dropDownHorizontalOffset
* @see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow={
0x010102ac, 0x010102ad
};
/**
* <p>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 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#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#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;
/**
* <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#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>all</td><td>1</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>single</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior=5;
/**
* Attributes that can be used with a MenuItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_actionLayout com.amazon.identity.auth.device.lwaapp:actionLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_actionProviderClass com.amazon.identity.auth.device.lwaapp:actionProviderClass}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_actionViewClass com.amazon.identity.auth.device.lwaapp:actionViewClass}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_alphabeticModifiers com.amazon.identity.auth.device.lwaapp:alphabeticModifiers}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_contentDescription com.amazon.identity.auth.device.lwaapp:contentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_iconTint com.amazon.identity.auth.device.lwaapp:iconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_iconTintMode com.amazon.identity.auth.device.lwaapp:iconTintMode}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_numericModifiers com.amazon.identity.auth.device.lwaapp:numericModifiers}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_showAsAction com.amazon.identity.auth.device.lwaapp:showAsAction}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_tooltipText com.amazon.identity.auth.device.lwaapp:tooltipText}</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_alphabeticModifiers
* @see #MenuItem_contentDescription
* @see #MenuItem_iconTint
* @see #MenuItem_iconTintMode
* @see #MenuItem_numericModifiers
* @see #MenuItem_showAsAction
* @see #MenuItem_tooltipText
*/
public static final int[] MenuItem={
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020,
0x7f020028, 0x7f02005c, 0x7f020089, 0x7f02008a,
0x7f0200de, 0x7f0200f9, 0x7f020133
};
/**
* <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#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#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#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#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 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#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#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#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#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#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 com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionLayout
*/
public static final int MenuItem_actionLayout=13;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionProviderClass
*/
public static final int MenuItem_actionProviderClass=14;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:actionViewClass
*/
public static final int MenuItem_actionViewClass=15;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#alphabeticModifiers}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:alphabeticModifiers
*/
public static final int MenuItem_alphabeticModifiers=16;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#contentDescription}
* 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 com.amazon.identity.auth.device.lwaapp:contentDescription
*/
public static final int MenuItem_contentDescription=17;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#iconTint}
* attribute's value can be found in the {@link #MenuItem} 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 com.amazon.identity.auth.device.lwaapp:iconTint
*/
public static final int MenuItem_iconTint=18;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#iconTintMode}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>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 com.amazon.identity.auth.device.lwaapp:iconTintMode
*/
public static final int MenuItem_iconTintMode=19;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#numericModifiers}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*
* @attr name com.amazon.identity.auth.device.lwaapp:numericModifiers
*/
public static final int MenuItem_numericModifiers=20;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:showAsAction
*/
public static final int MenuItem_showAsAction=21;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#tooltipText}
* 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 com.amazon.identity.auth.device.lwaapp:tooltipText
*/
public static final int MenuItem_tooltipText=22;
/**
* Attributes that can be used with a MenuView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_preserveIconSpacing com.amazon.identity.auth.device.lwaapp:preserveIconSpacing}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_subMenuArrow com.amazon.identity.auth.device.lwaapp: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, 0x7f0200ea,
0x7f020105
};
/**
* <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 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#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#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#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#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 com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing=7;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:subMenuArrow
*/
public static final int MenuView_subMenuArrow=8;
/**
* Attributes that can be used with a PopupWindow.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PopupWindow_overlapAnchor com.amazon.identity.auth.device.lwaapp: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, 0x7f0200df
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#popupBackground}
* attribute's value can be found in the {@link #PopupWindow} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
* attribute's value can be found in the {@link #PopupWindow} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor=2;
/**
* Attributes that can be used with a PopupWindowBackgroundState.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.amazon.identity.auth.device.lwaapp:state_above_anchor}</code></td><td></td></tr>
* </table>
* @see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState={
0x7f020103
};
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor=0;
/**
* Attributes that can be used with a RecycleListView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.amazon.identity.auth.device.lwaapp:paddingBottomNoButtons}</code></td><td></td></tr>
* <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.amazon.identity.auth.device.lwaapp:paddingTopNoTitle}</code></td><td></td></tr>
* </table>
* @see #RecycleListView_paddingBottomNoButtons
* @see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView={
0x7f0200e0, 0x7f0200e3
};
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle=1;
/**
* Attributes that can be used with a SearchView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_closeIcon com.amazon.identity.auth.device.lwaapp:closeIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_commitIcon com.amazon.identity.auth.device.lwaapp:commitIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_defaultQueryHint com.amazon.identity.auth.device.lwaapp:defaultQueryHint}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_goIcon com.amazon.identity.auth.device.lwaapp:goIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_iconifiedByDefault com.amazon.identity.auth.device.lwaapp:iconifiedByDefault}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_layout com.amazon.identity.auth.device.lwaapp:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_queryBackground com.amazon.identity.auth.device.lwaapp:queryBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_queryHint com.amazon.identity.auth.device.lwaapp:queryHint}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_searchHintIcon com.amazon.identity.auth.device.lwaapp:searchHintIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_searchIcon com.amazon.identity.auth.device.lwaapp:searchIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_submitBackground com.amazon.identity.auth.device.lwaapp:submitBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_suggestionRowLayout com.amazon.identity.auth.device.lwaapp:suggestionRowLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_voiceIcon com.amazon.identity.auth.device.lwaapp: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,
0x7f020049, 0x7f020058, 0x7f020066, 0x7f020083,
0x7f02008b, 0x7f020092, 0x7f0200ed, 0x7f0200ee,
0x7f0200f3, 0x7f0200f4, 0x7f020106, 0x7f02010b,
0x7f020138
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#focusable}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>10</td><td></td></tr>
* </table>
*
* @attr name android:focusable
*/
public static final int SearchView_android_focusable=0;
/**
* <p>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 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>date</td><td>14</td><td></td></tr>
* <tr><td>datetime</td><td>4</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>number</td><td>2</td><td></td></tr>
* <tr><td>numberDecimal</td><td>2002</td><td></td></tr>
* <tr><td>numberPassword</td><td>12</td><td></td></tr>
* <tr><td>numberSigned</td><td>1002</td><td></td></tr>
* <tr><td>phone</td><td>3</td><td></td></tr>
* <tr><td>text</td><td>1</td><td></td></tr>
* <tr><td>textAutoComplete</td><td>10001</td><td></td></tr>
* <tr><td>textAutoCorrect</td><td>8001</td><td></td></tr>
* <tr><td>textCapCharacters</td><td>1001</td><td></td></tr>
* <tr><td>textCapSentences</td><td>4001</td><td></td></tr>
* <tr><td>textCapWords</td><td>2001</td><td></td></tr>
* <tr><td>textEmailAddress</td><td>21</td><td></td></tr>
* <tr><td>textEmailSubject</td><td>31</td><td></td></tr>
* <tr><td>textFilter</td><td>b1</td><td></td></tr>
* <tr><td>textImeMultiLine</td><td>40001</td><td></td></tr>
* <tr><td>textLongMessage</td><td>51</td><td></td></tr>
* <tr><td>textMultiLine</td><td>20001</td><td></td></tr>
* <tr><td>textNoSuggestions</td><td>80001</td><td></td></tr>
* <tr><td>textPassword</td><td>81</td><td></td></tr>
* <tr><td>textPersonName</td><td>61</td><td></td></tr>
* <tr><td>textPhonetic</td><td>c1</td><td></td></tr>
* <tr><td>textPostalAddress</td><td>71</td><td></td></tr>
* <tr><td>textShortMessage</td><td>41</td><td></td></tr>
* <tr><td>textUri</td><td>11</td><td></td></tr>
* <tr><td>textVisiblePassword</td><td>91</td><td></td></tr>
* <tr><td>textWebEditText</td><td>a1</td><td></td></tr>
* <tr><td>textWebEmailAddress</td><td>d1</td><td></td></tr>
* <tr><td>textWebPassword</td><td>e1</td><td></td></tr>
* <tr><td>time</td><td>24</td><td></td></tr>
* </table>
*
* @attr name android:inputType
*/
public static final int SearchView_android_inputType=2;
/**
* <p>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>actionDone</td><td>6</td><td></td></tr>
* <tr><td>actionGo</td><td>2</td><td></td></tr>
* <tr><td>actionNext</td><td>5</td><td></td></tr>
* <tr><td>actionNone</td><td>1</td><td></td></tr>
* <tr><td>actionPrevious</td><td>7</td><td></td></tr>
* <tr><td>actionSearch</td><td>3</td><td></td></tr>
* <tr><td>actionSend</td><td>4</td><td></td></tr>
* <tr><td>actionUnspecified</td><td>0</td><td></td></tr>
* <tr><td>flagForceAscii</td><td>80000000</td><td></td></tr>
* <tr><td>flagNavigateNext</td><td>8000000</td><td></td></tr>
* <tr><td>flagNavigatePrevious</td><td>4000000</td><td></td></tr>
* <tr><td>flagNoAccessoryAction</td><td>20000000</td><td></td></tr>
* <tr><td>flagNoEnterAction</td><td>40000000</td><td></td></tr>
* <tr><td>flagNoExtractUi</td><td>10000000</td><td></td></tr>
* <tr><td>flagNoFullscreen</td><td>2000000</td><td></td></tr>
* <tr><td>flagNoPersonalizedLearning</td><td>1000000</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:closeIcon
*/
public static final int SearchView_closeIcon=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:commitIcon
*/
public static final int SearchView_commitIcon=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint=6;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:goIcon
*/
public static final int SearchView_goIcon=7;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault=8;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:layout
*/
public static final int SearchView_layout=9;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:queryBackground
*/
public static final int SearchView_queryBackground=10;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:queryHint
*/
public static final int SearchView_queryHint=11;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:searchHintIcon
*/
public static final int SearchView_searchHintIcon=12;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:searchIcon
*/
public static final int SearchView_searchIcon=13;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:submitBackground
*/
public static final int SearchView_submitBackground=14;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout=15;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:voiceIcon
*/
public static final int SearchView_voiceIcon=16;
/**
* Attributes that can be used with a Spinner.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_popupTheme com.amazon.identity.auth.device.lwaapp: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,
0x7f0200e8
};
/**
* <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 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>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:popupTheme
*/
public static final int Spinner_popupTheme=4;
/**
* Attributes that can be used with a SwitchCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_showText com.amazon.identity.auth.device.lwaapp:showText}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_splitTrack com.amazon.identity.auth.device.lwaapp:splitTrack}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_switchMinWidth com.amazon.identity.auth.device.lwaapp:switchMinWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_switchPadding com.amazon.identity.auth.device.lwaapp:switchPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.amazon.identity.auth.device.lwaapp:switchTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.amazon.identity.auth.device.lwaapp:thumbTextPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTint com.amazon.identity.auth.device.lwaapp:thumbTint}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTintMode com.amazon.identity.auth.device.lwaapp:thumbTintMode}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_track com.amazon.identity.auth.device.lwaapp:track}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_trackTint com.amazon.identity.auth.device.lwaapp:trackTint}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_trackTintMode com.amazon.identity.auth.device.lwaapp: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, 0x7f0200fb,
0x7f020101, 0x7f02010c, 0x7f02010d, 0x7f02010f,
0x7f02011d, 0x7f02011e, 0x7f02011f, 0x7f020134,
0x7f020135, 0x7f020136
};
/**
* <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#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#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 com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:showText
*/
public static final int SwitchCompat_showText=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:splitTrack
*/
public static final int SwitchCompat_splitTrack=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:switchPadding
*/
public static final int SwitchCompat_switchPadding=6;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance=7;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding=8;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:thumbTint
*/
public static final int SwitchCompat_thumbTint=9;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode=10;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:track
*/
public static final int SwitchCompat_track=11;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:trackTint
*/
public static final int SwitchCompat_trackTint=12;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:trackTintMode
*/
public static final int SwitchCompat_trackTintMode=13;
/**
* Attributes that can be used with a TextAppearance.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_fontFamily com.amazon.identity.auth.device.lwaapp:fontFamily}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_textAllCaps com.amazon.identity.auth.device.lwaapp: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_textColorLink
* @see #TextAppearance_android_shadowColor
* @see #TextAppearance_android_shadowDx
* @see #TextAppearance_android_shadowDy
* @see #TextAppearance_android_shadowRadius
* @see #TextAppearance_android_fontFamily
* @see #TextAppearance_fontFamily
* @see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance={
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f020079,
0x7f020110
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textSize}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:textSize
*/
public static final int TextAppearance_android_textSize=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#typeface}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>monospace</td><td>3</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* <tr><td>sans</td><td>1</td><td></td></tr>
* <tr><td>serif</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:typeface
*/
public static final int TextAppearance_android_typeface=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textStyle}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bold</td><td>1</td><td></td></tr>
* <tr><td>italic</td><td>2</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColor}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColor
*/
public static final int TextAppearance_android_textColor=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColorHint}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColorLink}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColorLink
*/
public static final int TextAppearance_android_textColorLink=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowColor}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowDx}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx=7;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowDy}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy=8;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius=9;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fontFamily}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:fontFamily
*/
public static final int TextAppearance_android_fontFamily=10;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#fontFamily}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.amazon.identity.auth.device.lwaapp:fontFamily
*/
public static final int TextAppearance_fontFamily=11;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:textAllCaps
*/
public static final int TextAppearance_textAllCaps=12;
/**
* Attributes that can be used with a Toolbar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_buttonGravity com.amazon.identity.auth.device.lwaapp:buttonGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_collapseContentDescription com.amazon.identity.auth.device.lwaapp:collapseContentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_collapseIcon com.amazon.identity.auth.device.lwaapp:collapseIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetEnd com.amazon.identity.auth.device.lwaapp:contentInsetEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.amazon.identity.auth.device.lwaapp:contentInsetEndWithActions}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetLeft com.amazon.identity.auth.device.lwaapp:contentInsetLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetRight com.amazon.identity.auth.device.lwaapp:contentInsetRight}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetStart com.amazon.identity.auth.device.lwaapp:contentInsetStart}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.amazon.identity.auth.device.lwaapp:contentInsetStartWithNavigation}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_logo com.amazon.identity.auth.device.lwaapp:logo}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_logoDescription com.amazon.identity.auth.device.lwaapp:logoDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_maxButtonHeight com.amazon.identity.auth.device.lwaapp:maxButtonHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_navigationContentDescription com.amazon.identity.auth.device.lwaapp:navigationContentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_navigationIcon com.amazon.identity.auth.device.lwaapp:navigationIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_popupTheme com.amazon.identity.auth.device.lwaapp:popupTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_subtitle com.amazon.identity.auth.device.lwaapp:subtitle}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.amazon.identity.auth.device.lwaapp:subtitleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_subtitleTextColor com.amazon.identity.auth.device.lwaapp:subtitleTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_title com.amazon.identity.auth.device.lwaapp:title}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMargin com.amazon.identity.auth.device.lwaapp:titleMargin}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginBottom com.amazon.identity.auth.device.lwaapp:titleMarginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginEnd com.amazon.identity.auth.device.lwaapp:titleMarginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginStart com.amazon.identity.auth.device.lwaapp:titleMarginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginTop com.amazon.identity.auth.device.lwaapp:titleMarginTop}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMargins com.amazon.identity.auth.device.lwaapp:titleMargins}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleTextAppearance com.amazon.identity.auth.device.lwaapp:titleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleTextColor com.amazon.identity.auth.device.lwaapp: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, 0x7f02003f, 0x7f02004b,
0x7f02004c, 0x7f02005d, 0x7f02005e, 0x7f02005f,
0x7f020060, 0x7f020061, 0x7f020062, 0x7f0200d6,
0x7f0200d7, 0x7f0200d8, 0x7f0200db, 0x7f0200dc,
0x7f0200e8, 0x7f020107, 0x7f020108, 0x7f020109,
0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128,
0x7f020129, 0x7f02012a, 0x7f02012b, 0x7f02012c,
0x7f02012d
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#gravity}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:gravity
*/
public static final int Toolbar_android_gravity=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#minHeight}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minHeight
*/
public static final int Toolbar_android_minHeight=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:buttonGravity
*/
public static final int Toolbar_buttonGravity=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:collapseIcon
*/
public static final int Toolbar_collapseIcon=4;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd=5;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions=6;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft=7;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetRight
*/
public static final int Toolbar_contentInsetRight=8;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetStart
*/
public static final int Toolbar_contentInsetStart=9;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation=10;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:logo
*/
public static final int Toolbar_logo=11;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:logoDescription
*/
public static final int Toolbar_logoDescription=12;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#maxButtonHeight}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.amazon.identity.auth.device.lwaapp:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight=13;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription=14;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:navigationIcon
*/
public static final int Toolbar_navigationIcon=15;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:popupTheme
*/
public static final int Toolbar_popupTheme=16;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:subtitle
*/
public static final int Toolbar_subtitle=17;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#subtitleTextAppearance}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance=18;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor=19;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#title}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.amazon.identity.auth.device.lwaapp:title
*/
public static final int Toolbar_title=20;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:titleMargin
*/
public static final int Toolbar_titleMargin=21;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom=22;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd=23;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:titleMarginStart
*/
public static final int Toolbar_titleMarginStart=24;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:titleMarginTop
*/
public static final int Toolbar_titleMarginTop=25;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:titleMargins
*/
public static final int Toolbar_titleMargins=26;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.R.attr#titleTextAppearance}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.amazon.identity.auth.device.lwaapp:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance=27;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:titleTextColor
*/
public static final int Toolbar_titleTextColor=28;
/**
* Attributes that can be used with a View.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
* <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
* <tr><td><code>{@link #View_paddingEnd com.amazon.identity.auth.device.lwaapp:paddingEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #View_paddingStart com.amazon.identity.auth.device.lwaapp:paddingStart}</code></td><td></td></tr>
* <tr><td><code>{@link #View_theme com.amazon.identity.auth.device.lwaapp: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, 0x7f0200e1, 0x7f0200e2,
0x7f02011b
};
/**
* <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 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>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>10</td><td></td></tr>
* </table>
*
* @attr name android:focusable
*/
public static final int View_android_focusable=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:paddingEnd
*/
public static final int View_paddingEnd=2;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:paddingStart
*/
public static final int View_paddingStart=3;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:theme
*/
public static final int View_theme=4;
/**
* Attributes that can be used with a ViewBackgroundHelper.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.amazon.identity.auth.device.lwaapp:backgroundTint}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.amazon.identity.auth.device.lwaapp:backgroundTintMode}</code></td><td></td></tr>
* </table>
* @see #ViewBackgroundHelper_android_background
* @see #ViewBackgroundHelper_backgroundTint
* @see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper={
0x010100d4, 0x7f020034, 0x7f020035
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#background}
* attribute's value can be found in the {@link #ViewBackgroundHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:background
*/
public static final int ViewBackgroundHelper_android_background=0;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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 com.amazon.identity.auth.device.lwaapp:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint=1;
/**
* <p>This symbol is the offset where the {@link com.amazon.identity.auth.device.lwaapp.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>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 com.amazon.identity.auth.device.lwaapp: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#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#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;
}
} | [
"[email protected]"
] | |
f0454a741ded28d423ce255b5a12d98e6c7b5a41 | cdf9511428b7f21ae57592ce8f146e1a95bea750 | /app/src/main/java/com/agenthun/bleecg/activity/MainActivity.java | 279544535d3600335665c32f21f5491da87a300d | [] | no_license | triandamai/BleECG | 1615baa99e148ae1e4fcb79bb03bfecd3ef47ba1 | 6ebd335354f378d974bafbab77bae6979674318a | refs/heads/master | 2022-03-03T13:46:42.657690 | 2019-09-26T18:00:08 | 2019-09-26T18:00:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,029 | java | package com.agenthun.bleecg.activity;
import android.Manifest;
import android.annotation.TargetApi;
import android.app.Activity;
import android.content.Context;
import android.content.pm.PackageManager;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.NavigationView;
import android.support.design.widget.TabLayout;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.support.v4.view.GravityCompat;
import android.support.v4.view.ViewCompat;
import android.support.v4.view.ViewPager;
import android.support.v4.view.ViewPropertyAnimatorListenerAdapter;
import android.support.v4.view.animation.FastOutSlowInInterpolator;
import android.support.v4.view.animation.LinearOutSlowInInterpolator;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import com.agenthun.bleecg.R;
import com.agenthun.bleecg.adapter.SectionsPagerAdapter;
import com.agenthun.bleecg.utils.ApiLevelHelper;
import java.util.ArrayList;
import java.util.List;
/**
* @project MainActivity
* @authors agenthun
* @date 16/3/9 下午7:22.
*/
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
private static final String TAG = "MainActivity";
private final int SDK_PERMISSION_REQUEST = 127;
private SectionsPagerAdapter mSectionsPagerAdapter;
private ViewPager mViewPager;
private FloatingActionButton fab;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
// Set up the ViewPager with the sections adapter.
mViewPager = (ViewPager) findViewById(R.id.container);
mViewPager.setAdapter(mSectionsPagerAdapter);
mViewPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() {
@Override
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
}
@Override
public void onPageSelected(int position) {
Log.d(TAG, "onPageSelected() returned: " + position);
if (position == 0) {
fab.setVisibility(View.VISIBLE);
ViewCompat.animate(fab).scaleX(1).scaleY(1)
.setInterpolator(new LinearOutSlowInInterpolator())
.setListener(new ViewPropertyAnimatorListenerAdapter() {
@Override
public void onAnimationEnd(View view) {
if (isFinishing() || (ApiLevelHelper.isAtLeast(Build.VERSION_CODES.JELLY_BEAN_MR1) && isDestroyed())) {
return;
}
fab.setVisibility(View.VISIBLE);
}
})
.start();
} else {
if (fab.isShown()) {
ViewCompat.animate(fab).scaleX(0).scaleY(0)
.setInterpolator(new FastOutSlowInInterpolator())
.setStartDelay(100)
.setListener(new ViewPropertyAnimatorListenerAdapter() {
@Override
public void onAnimationEnd(View view) {
if (isFinishing() || (ApiLevelHelper.isAtLeast(Build.VERSION_CODES.JELLY_BEAN_MR1) && isDestroyed())) {
return;
}
fab.setVisibility(View.GONE);
}
})
.start();
}
}
}
@Override
public void onPageScrollStateChanged(int state) {
}
});
final TabLayout tabLayout = (TabLayout) findViewById(R.id.tabs);
tabLayout.setupWithViewPager(mViewPager);
fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// Log.d(TAG, "fab onClick: ");
if (mOnFABClickListener != null) {
mOnFABClickListener.OnFABClickListener(view);
}
}
});
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
final ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
}
@Override
protected void onStart() {
super.onStart();
// getPermissions(MainActivity.this);
}
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if (id == R.id.nav_camera) {
// Handle the camera action
} else if (id == R.id.nav_gallery) {
} else if (id == R.id.nav_slideshow) {
} else if (id == R.id.nav_manage) {
} else if (id == R.id.nav_share) {
} else if (id == R.id.nav_send) {
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
private void getPermissions(Context context) {
List<String> permissions = new ArrayList<>();
// 蓝牙权限必须开启ACCESS_COARSE_LOCATIO或ACCESS_FINE_LOCATION权限,用户如果禁止,则每次进入都会申请
if (ContextCompat.checkSelfPermission(context, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
permissions.add(Manifest.permission.ACCESS_COARSE_LOCATION);
}
if (ContextCompat.checkSelfPermission(context, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
permissions.add(Manifest.permission.ACCESS_FINE_LOCATION);
}
// 读写外设为必须权限,用户如果禁止,则每次进入都会申请
if (ContextCompat.checkSelfPermission(context, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
permissions.add(Manifest.permission.READ_EXTERNAL_STORAGE);
}
if (ContextCompat.checkSelfPermission(context, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
permissions.add(Manifest.permission.WRITE_EXTERNAL_STORAGE);
}
if (permissions.size() > 0) {
ActivityCompat.requestPermissions((Activity) context, permissions.toArray(new String[permissions.size()]), SDK_PERMISSION_REQUEST);
}
}
private boolean addPermission(Context context, List<String> permissionsList, String permission) {
if (ContextCompat.checkSelfPermission(context, permission) != PackageManager.PERMISSION_GRANTED) { // 如果应用没有获得对应权限,则添加到列表中,准备批量申请
if (ActivityCompat.shouldShowRequestPermissionRationale((Activity) context, permission)) {
return true;
} else {
permissionsList.add(permission);
return false;
}
} else {
return true;
}
}
@TargetApi(23)
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
}
//FABClick interface
public interface OnFABClickListener {
void OnFABClickListener(View view);
}
private OnFABClickListener mOnFABClickListener;
public void setOnItemClickListener(OnFABClickListener mOnFABClickListener) {
this.mOnFABClickListener = mOnFABClickListener;
}
}
| [
"[email protected]"
] | |
9d5273c52bbbdffec9b34d1ad004d182b17ca2c4 | 6d577aec17fd4f75b1ff6eca26ae58618017aaf2 | /1806101027王雨来JavaWeb/src/edu/sctu/servlet/UserServlet.java | 56aae56f7004ee27ec814291cf653902adef3849 | [] | no_license | gschen/sctu-java-2019 | 4b14145b6ca238bd7bda5fb672c9dbfa5d9b34a5 | 0569b7b824632e7989068ff22b142741eebc3565 | refs/heads/master | 2020-07-13T08:49:24.015131 | 2020-01-01T03:32:48 | 2020-01-01T03:32:48 | 205,048,370 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,241 | java | package edu.sctu.servlet;
import edu.sctu.dao.UserDao;
import edu.sctu.dao.UserDaoImpl;
import edu.sctu.model.User;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;
public class UserServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//1.从数据库中查出所有用户数据
UserDao userDao = new UserDaoImpl();
List<User> userList = userDao.selectAll();
// resp.getWriter().write("<meta charset=\"utf-8\">");
resp.getWriter().write("<table>");
//2.向页面输出信息
for (User user : userList) {
resp.getWriter().write("<tr><td>" + user.getId() + "</td><td>" + user.getUsername()
+ "</td><td>u" + user.getPassword() + "</td><td>" +
"<a href='deleteUser.jsp?userId=" + user.getId() + "'>删除</a></td></tr>");
}
resp.getWriter().write("<table>");
}
}
| [
"[email protected]"
] | |
a8c448d92dcc2a3179f753e8539b3a232d6b7986 | a2ffec411dc8db72c61331534d0736ea0e162993 | /FinancialMaster/src/main/java/web/bl/StrategyHandle/Price.java | 39e140434581034f4b95bbe103dab6f0a6425acc | [] | no_license | FatBin/superquant | f9723773fdd3f1d8052517b7209a2d16010f6ef9 | c6924fe0d50ec3f9fe414807b5c943e85de96995 | refs/heads/master | 2020-05-21T20:47:15.946133 | 2016-09-17T14:01:41 | 2016-09-17T14:01:41 | 65,788,667 | 4 | 2 | null | null | null | null | UTF-8 | Java | false | false | 478 | java | package web.bl.StrategyHandle;
import DAO.pojo.TradeRecord;
import PO.StrategyPO;
public class Price extends Strategy{
@Override
public boolean buyStrategy(StrategyPO strategyPO,TradeRecord tradeRecord) {
if (strategyPO.getPriceLow()==0&&strategyPO.getPriceLow()==0) {
return true;
}else{
if (tradeRecord.getClose()>=strategyPO.getPriceLow()
&&tradeRecord.getClose()<=strategyPO.getPriceHigh()) {
return true;
}else {
return false;
}
}
}
}
| [
"[email protected]"
] | |
264291518f494fcdc869ca2bb9b40db50adad069 | cf5ff8e0bbd93e0d3110169bc7f89e2a2b2be60d | /app/src/main/java/com/thinkcoo/mobile/utils/EasemobConstantsUtils.java | f3b616af4001a1914a0c124e3a1e0548f5b68912 | [] | no_license | yaolu0311/ThinkcooRefactor-2016526 | 993c09b50719322d9d89621f2d991e4687ab81f8 | bfe011a0650ca0c80932dc45c2e60868966afda6 | refs/heads/master | 2020-09-26T05:30:24.155465 | 2016-09-05T07:12:13 | 2016-09-05T07:12:13 | 67,396,724 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,105 | java | package com.thinkcoo.mobile.utils;
import javax.inject.Inject;
public class EasemobConstantsUtils {
//用户偏移量
public static long USER_OFFSET = 100000;
//圈子偏移量
public static long CIRCLE_OFFSET = 1000000000;
@Inject
public EasemobConstantsUtils() {
}
/**
* 通过系统用户ID获取环信用户名
* @param sysUserId
* @return 环信用户名
*/
public long getEasemobUserName(long sysUserId)
{
return USER_OFFSET + sysUserId;
}
/**
* 通过环信用户名获取系统用户ID
* @param easemobUserName
* @return 系统用户ID
*/
public long getSysUserId(long easemobUserName)
{
return easemobUserName - USER_OFFSET;
}
/**
* 通过系统圈子ID获取环信圈子名
* @param sysCircleId
* @return 环信圈子名
*/
public long getEasemobCircleName(long sysCircleId)
{
return CIRCLE_OFFSET + sysCircleId;
}
/**
* 通过环信圈子名获取系统圈子ID
* @param easemobCircleName
* @return 系统圈子ID
*/
public long getSysCircleId(long easemobCircleName)
{
return easemobCircleName - CIRCLE_OFFSET;
}
}
| [
"[email protected]"
] | |
cde551a0984e78ce6a79922343bf18a0f6c4c255 | abc8632519fd556735bf1527e4cefe64e68cef9d | /commons/src/main/java/org/wikimedia/commons/Prefs.java | 9dbf173e3e424c86253bcf160ecb11a49f10d39b | [
"Apache-2.0"
] | permissive | Abhiruchi/wiki_commons_upload | 40b8e2a178501bccca7dbb3ded58067fdb393089 | f62a97de06212991fb90b5c8bf38b8a720d2b8a2 | refs/heads/master | 2021-01-01T17:16:07.372418 | 2014-07-04T15:43:09 | 2014-07-04T15:43:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 193 | java | package org.wikimedia.commons;
public class Prefs {
public static String GLOBAL_PREFS = "org.wikimedia.commons.preferences";
public static String TRACKING_ENABLED = "eventLogging";
}
| [
"[email protected]"
] | |
a47ccc9bcec24682c5d3dd949507f8944f2ca750 | 95a2bc90233c11f3b777dee811ffefbb3f05757b | /Command/command/BestKargoGonderCommand.java | 84cfc5dcbb93ae37c173588815591c74ab5abfff | [] | no_license | altuga/designpatterns | 4ce0cd8661eb214e3a39b28e24bdd78475d0ad68 | 648df5831d957e699686d41d46195cae087bb0bf | refs/heads/master | 2021-01-22T20:02:57.982511 | 2017-03-17T07:46:26 | 2017-03-17T07:46:26 | 85,278,337 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 226 | java |
public class BestKargoGonderCommand implements Command {
BestKargo bestKargo;
public BestKargoGonderCommand(BestKargo bestKargo) {
this.bestKargo = bestKargo;
}
public void execute() {
bestKargo.gonder();
}
}
| [
"upux1234"
] | upux1234 |
b538eb39152439bbcd9a3a9cb9e06787f4516aa5 | 1ab6cc77157a6dc2d11eb869ddca3c6d12b063a6 | /src/by/it/group873602/kardymon/lesson07/Lesson7Test.java | e067e3f38cd1e3cf18c8a5cfdf10db0decb2ea1d | [] | no_license | Kirill-Ryzhenko/PISL2021-02-01 | 1872a7c3d77098afabe390fd13e2e9b1d92b7152 | 729ea40f0bcca8f15d5c4ace9c96fed0f71adaec | refs/heads/master | 2023-04-19T14:47:09.857217 | 2021-05-03T14:22:59 | 2021-05-03T14:22:59 | 349,974,326 | 0 | 1 | null | 2021-04-16T18:17:55 | 2021-03-21T11:12:17 | Java | UTF-8 | Java | false | false | 1,713 | java | package by.it.group873602.kardymon.lesson07;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class Lesson7Test {
@Test
public void A() throws Exception {
A_EditDist instance = new A_EditDist();
assertEquals("A1 failed", instance.getDistanceEdinting("ab","ab"),0);
assertEquals("A2 failed", instance.getDistanceEdinting("short","ports"),3);
assertEquals("A3 failed", instance.getDistanceEdinting("distance","editing"),5);
}
@Test
public void B() throws Exception {
B_EditDist instance = new B_EditDist();
assertEquals("B1 failed", instance.getDistanceEdinting("ab","ab"),0);
assertEquals("B2 failed", instance.getDistanceEdinting("short","ports"),3);
assertEquals("B3 failed", instance.getDistanceEdinting("distance","editing"),5);
}
@Test
public void C() throws Exception {
C_EditDist instance = new C_EditDist();
assertEquals("C1 failed", instance.getDistanceEdinting("ab","ab"),"#,#,");
//путей может быть много, поэтому тут жестко проверить все сложно
//надо найти и проверить их все, что делает тест сложнее реализации
//возможно, что хватит только подсчета повторов.
//ожидается -s,~p,#,#,#,+s,
assertEquals("C2 failed", instance.getDistanceEdinting("short","ports").split("#").length,4);
//ожидается +e,#,#,-s,#,~i,#,-c,~g,
assertEquals("C3 failed", instance.getDistanceEdinting("distance","editing").split("#").length,5);
}
}
| [
"[email protected]"
] | |
cc4504acaa5f7129dca0723a07fbf0a3d09089bc | 074842be589c9c8b6a3f6f04e531523a21e2059c | /APLesson_09/Lab_09/reverseorder.java | 3e4fbbfc8ef079b93ea2a00f8225b4adfcfafdf1 | [] | no_license | RohithKodukula/KODUKULA_ROHITH | 794111c8c8a778d88e53a2bde03eea76ea319e21 | 1b8cff1fefaf7c099e343521be278b4296a3f18d | refs/heads/master | 2021-06-17T15:14:22.407670 | 2017-05-31T18:17:26 | 2017-05-31T18:17:26 | 67,532,921 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 719 | java | import java.util.Scanner;
public class reverseorder
{
public static void main(String[]args)
{
Scanner kb = new Scanner(System.in);
//Take inputs
System.out.println("Enter 5 names please: ");
String[] names = new String[5];
for(int i=0; i < names.length;i++)
{
names[i] = kb.next();
}
//Print in order
System.out.println("\nIn order.... ");
for(String name : names)
{
System.out.print(name + " \n");
}
//Run the method to print in reverse
System.out.println("\nIn reverse order.... ");
reverse(names);
}
//Method to print in reverse
public static void reverse(String[] array)
{
for(int i=array.length-1;i >= 0;i--)
{
System.out.print(array[i] + "\n");
}
}
} | [
"[email protected]"
] | |
aeb9b61905e8671b663e9f89645003497ba64f91 | 7e3330b9303240ec9a18df7fe543bdd219df4353 | /question-app-backend/src/main/java/me/forcar/backend/dto/question/QuestionDeckSummaryDTO.java | af358a2ce11f01d3a798bbeab48befa3067cfa72 | [] | no_license | gabrielgonoring/app-questoes | 5387619ca9791f61814a4eacda101962b9a7c5b2 | c1bccafd6d16fd27293c77ff44233e105363b526 | refs/heads/master | 2023-04-22T10:42:25.802925 | 2021-05-10T23:52:18 | 2021-05-10T23:52:18 | 360,227,790 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 683 | java | package me.forcar.backend.dto.question;
import java.time.LocalDateTime;
import java.util.List;
import java.util.UUID;
public class QuestionDeckSummaryDTO {
private UUID id;
private String name;
private LocalDateTime creationDate;
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public LocalDateTime getCreationDate() {
return creationDate;
}
public void setCreationDate(LocalDateTime creationDate) {
this.creationDate = creationDate;
}
}
| [
"="
] | = |
6c35ee78547d409722ca0010331eacdee58e6bc4 | f414df777e5e740d13dd81eb5351e1183f6c36b3 | /src/main/java/strategy/CashContext.java | fa6eb16abfa38548551151b4b04604f2fb4d4639 | [] | no_license | xtz9681/designMode | 2b8c0dba6de60f3a36043a25118ad5bd240d063f | 02404a2ed5fa884e6c9d4fe15d364816fa9fc8bf | refs/heads/master | 2021-07-08T09:04:43.031912 | 2019-03-07T08:29:00 | 2019-03-07T08:29:00 | 146,425,364 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 325 | java | package strategy;
/**
* desc
*策略模式
* 上下文配置类
* @author xutianzhe
* @Date 2018/8/28
**/
public class CashContext {
private CashSuper cs;
public CashContext(CashSuper cs) {
this.cs = cs;
}
public Double getResult(Double amount){
return cs.acceptCash(amount);
}
}
| [
"[email protected]"
] | |
80424db79d3974c6cdfadcc851d2cd68086cd40f | 63aa36744aff1da762d3539aca72074f84a6d2ba | /src/jp/dip/gpsoft/mdpubw/CoverPage.java | 4076e0f00fd216bef8d9edd4da695f465894e5ba | [] | no_license | gpsoft/mdpubw | 56cfc5abbd1d67aa01fb21fb791e74a049d01c84 | 627aa13b36420aec771d200ab1d293b5013ac93f | refs/heads/master | 2021-01-15T13:48:18.082858 | 2015-03-20T14:37:13 | 2015-03-20T14:37:13 | 32,587,021 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,582 | java | package jp.dip.gpsoft.mdpubw;
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@SuppressWarnings("serial")
@WebServlet(description = "Render the coverpage",
urlPatterns = {"/coverpage"})
public class CoverPage extends HttpServlet {
protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException {
String key = request.getParameter("key");
String title = initParam(key + "Title");
Path inDir = Paths.get(initParam("mdpubHomeDir"), key);
String[] subDirs = initParam(key + "SubDirs").split(", ?");
Path outDir = Paths.get(initParam("mdpubOutDir"), key);
String bookUrl = initParam("bookshelfUrl") + key;
String imgUrl = bookUrl + "/" + initParam("jacketFile");
request.setAttribute("title", title);
request.setAttribute("inDir", inDir.toString());
request.setAttribute("outDir", outDir.toString());
request.setAttribute("subDirs", subDirs);
request.setAttribute("bookUrl", bookUrl);
request.setAttribute("imgUrl", imgUrl);
request.getRequestDispatcher("/coverpage.jsp").forward(
request, response);
}
private String initParam(String name) {
return getServletContext().getInitParameter(name);
}
}
| [
"[email protected]"
] | |
a334cce8b2e3cebf3b5b4bc2f86df64f4520f197 | 30c738208c02cd30f3b4121f526c7bbceb850e8b | /mdp/src/main/java/gambler/stats/GamblerInput.java | 35f47cd558522253def521d5ed52d016200613fb | [] | no_license | grosueugen/ml-7641 | cc5a643fd452d66cdb51a36060601d923cbc950e | 30f7d105194e7f3eca20cf6009e4189ef8982757 | refs/heads/master | 2021-01-10T10:54:15.636905 | 2016-04-24T22:59:59 | 2016-04-24T22:59:59 | 50,728,997 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,434 | java | package gambler.stats;
public class GamblerInput {
private final int maxAmount;
private final int initialAmount;
private final double winProb;
public GamblerInput(int maxAmount, int initialAmount, double winProb) {
super();
this.maxAmount = maxAmount;
this.initialAmount = initialAmount;
this.winProb = winProb;
}
@Override
public String toString() {
return "input [maxAmount=" + maxAmount + ", initialAmount=" + initialAmount + ", winProb=" + winProb + "]";
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + initialAmount;
result = prime * result + maxAmount;
long temp;
temp = Double.doubleToLongBits(winProb);
result = prime * result + (int) (temp ^ (temp >>> 32));
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof GamblerInput)) {
return false;
}
GamblerInput other = (GamblerInput) obj;
if (initialAmount != other.initialAmount) {
return false;
}
if (maxAmount != other.maxAmount) {
return false;
}
if (Double.doubleToLongBits(winProb) != Double.doubleToLongBits(other.winProb)) {
return false;
}
return true;
}
public int getMaxAmount() {
return maxAmount;
}
public int getInitialAmount() {
return initialAmount;
}
public double getWinProb() {
return winProb;
}
}
| [
"[email protected]"
] | |
4bd64118645514c7fa9cdd239eee17121edd95f6 | 6cb96dc658e252396e4b0cc73178f41ef56905b9 | /app/src/main/java/com/oracle/oaec/androidproject/SearchActivity.java | ae2d19de4456f602655cd7f16b34606f2f8cc4f3 | [] | no_license | lin229093041/One | 0627fe9a15accaad2b3ce7b5427083c71ab2fc10 | 6180e805cecce87e8fcf0cae38833d4c61935c10 | refs/heads/master | 2021-01-11T11:18:34.202057 | 2016-11-04T01:43:19 | 2016-11-04T01:43:19 | 72,728,388 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,351 | java | package com.oracle.oaec.androidproject;
import android.app.Activity;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AutoCompleteTextView;
import android.widget.BaseAdapter;
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.nostra13.universalimageloader.core.DisplayImageOptions;
import com.nostra13.universalimageloader.core.ImageLoader;
import com.nostra13.universalimageloader.core.ImageLoaderConfiguration;
import com.nostra13.universalimageloader.core.assist.FailReason;
import com.nostra13.universalimageloader.core.listener.SimpleImageLoadingListener;
import com.oracle.oaec.androidproject.po.UrlCaiPin;
import com.oracle.oaec.androidproject.publicmethod.ToUrl;
import net.tsz.afinal.FinalHttp;
import net.tsz.afinal.http.AjaxCallBack;
import java.util.ArrayList;
import java.util.List;
public class SearchActivity extends Activity {
private EditText edt_search;
private List<UrlCaiPin> urlCaiPin=new ArrayList<>();
private BaseAdapter adapter;
private ListView lv;
private ImageView food_img;
private int moneynum;
private TextView search_tv_num;
private int num;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_search);
edt_search= (EditText) findViewById(R.id.editor_seach);
lv= (ListView) findViewById(R.id.search_lv);
adapter=new MyAdapter();
lv.setAdapter(adapter);
edt_search.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
String s1= edt_search.getText().toString();
StringBuffer sb=new StringBuffer(ToUrl.Url);
sb.append("CaipinServlet?mode=2&likes=");
sb.append(s1);
FinalHttp http=new FinalHttp();
http.get(sb.toString(), new AjaxCallBack<Object>() {
@Override
public void onSuccess(Object o) {
Gson gson=new Gson();
Log.i("linruoyu",o.toString());
urlCaiPin = gson.fromJson(o.toString(),new TypeToken< List<UrlCaiPin>>(){}.getType());
adapter.notifyDataSetChanged();
Log.i("linruoyu",urlCaiPin.toString());
super.onSuccess(o);
}
});
}
});
}
private class MyAdapter extends BaseAdapter{
@Override
public int getCount() {
return urlCaiPin.size();
}
@Override
public Object getItem(int position) {
return position;
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
/**
* 关联控件方便之后对控件进行操作
*/
View v = getLayoutInflater().inflate(R.layout.items_foods, null);
TextView shopping_food_name = (TextView) v.findViewById(R.id.shopping_food_name);
food_img = (ImageView) v.findViewById(R.id.shopping_food_img);
TextView shopping_food_num = (TextView) v.findViewById(R.id.shopping_food_monthnum);
TextView shopping_food_price = (TextView) v.findViewById(R.id.shopping_food_price);
moneynum = 0;
for (UrlCaiPin d : urlCaiPin) {
if (d.getNum() == null) {
d.setNum("0");
}
moneynum += Integer.valueOf(d.getNum()) * Integer.valueOf(d.getPrice());
}
search_tv_num = (TextView) v.findViewById(R.id.tv_num);
final ImageButton btn_jian = (ImageButton) v.findViewById(R.id.btn_jian);
ImageButton btn_jia = (ImageButton) v.findViewById(R.id.btn_jiahao);
/**
* 往控件中加入对应的数据
*/
shopping_food_name.setText(urlCaiPin.get(position).getName());//美食名字
shopping_food_price.setText("¥" + urlCaiPin.get(position).getPrice());//美食价格
if (urlCaiPin.get(position).getMonth() == null) {
urlCaiPin.get(position).setMonth("0");
}
shopping_food_num.setText(urlCaiPin.get(position).getMonth());
try {
//解析从网络中获取的图片资源
DisplayImageOptions displayImageOptions = new DisplayImageOptions.Builder().cacheOnDisk(true).cacheInMemory(true).showImageOnLoading(R.mipmap.ic_launcher).build();
ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(SearchActivity.this).diskCacheSize(1024 * 1024 * 10).memoryCacheSize(1024 * 1024 * 10).build();
ImageLoader.getInstance().init(config);
String picUrl = urlCaiPin.get(position).getImg();
ImageLoader.getInstance().displayImage(picUrl, food_img, displayImageOptions, new SimpleImageLoadingListener() {
@Override
public void onLoadingFailed(String imageUri, View view, FailReason failReason) {
super.onLoadingFailed(imageUri, view, failReason);
//图片加载失败后处理
food_img.setImageResource(R.drawable.bottom_home);
}
});
} catch (Exception e) {
Log.i("1234", "1234");
}
/**
* 实时更新购买个数中的数字
每次实体类中的数据发生改变时调用notifyDataSetChanged方法更新adapter
*/
if (urlCaiPin.get(position).getNum() == null) {
urlCaiPin.get(position).setNum("0");
}
search_tv_num.setText(urlCaiPin.get(position).getNum());
// 获取该商品已卖出个数
String s = urlCaiPin.get(position).getNum();
num = Integer.valueOf(s);
// 对减号的处理
if (num <= 0) {
// 如果购买数为0,则只显示加号
btn_jian.setVisibility(View.GONE);
search_tv_num.setVisibility(View.GONE);
} else {
// 购买数大于0之后加号和购买数出现
btn_jian.setVisibility(View.VISIBLE);
search_tv_num.setVisibility(View.VISIBLE);
}
btn_jian.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 获取该商品已卖出个数
moneynum -= Integer.valueOf(urlCaiPin.get(position).getPrice());
String s = urlCaiPin.get(position).getNum();
num = Integer.valueOf(s);
num--;
urlCaiPin.get(position).setNum(num + "");
//data3.get(position).setD(num + "");
adapter.notifyDataSetChanged();
}
});
//对加号进行处理
btn_jia.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//获取该商品已卖出个数
moneynum += Integer.valueOf(urlCaiPin.get(position).getPrice());
String s = urlCaiPin.get(position).getNum();
num = Integer.valueOf(s);
num++;
urlCaiPin.get(position).setNum(num + "");
adapter.notifyDataSetChanged();
}
});
//对右侧标题填充文字
// tv.setText(s1);
/**
* 对美食图片处理
使美食图片变为正方形
失败,有空再弄
*/
/*if(height==0) {
new Handler().post(new Runnable() {
@Override
public void run() {
int a=(250/12)*5;
// height = food_img.getHeight();
RelativeLayout.LayoutParams params = (RelativeLayout.LayoutParams) food_img.getLayoutParams();
params.width = a;
food_img.setLayoutParams(params);
adapter2.notifyDataSetChanged();
}
});
}*/
return v;
}
}
}
| [
"[email protected]"
] | |
283208e5d893e79bb976857fe564db2ea5287f8b | 2397db9c7714656b29c9227f1b411b670f5b6984 | /toastapp/src/androidTest/java/ru/mirea/chumakova/toastapp/ExampleInstrumentedTest.java | 9d1d133cf045ad0582e937947269c42711485dc5 | [] | no_license | azesyas/Mobile.lab_lesson2 | e1e11bfa039e571b158f5aa71f4bad007dfcab1e | 86046013bcea8f2b3663ef43ee8715d258d09706 | refs/heads/master | 2020-08-30T04:14:45.183559 | 2019-10-29T10:21:58 | 2019-10-29T10:21:58 | 218,259,743 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 770 | java | package ru.mirea.chumakova.toastapp;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("ru.mirea.chumakova.toastapp", appContext.getPackageName());
}
}
| [
"[email protected]"
] | |
a902de07afb3a15707798cfc1f3b4c15b623ddcc | 5c5bc2393833fc3b41675bf3d38655d5d5fcb0a7 | /src/main/resources/MessageFilterImpl.java | f0cf46e438c4b3421261e8f6a0cd0c0b20de02bd | [] | no_license | shiqiangqiang/rocketmq-example | b26513e7d868340a88e6f50e0da1612b648db45c | 5094895a9dbeb6c72f793ad03dd76fddb33fe0c4 | refs/heads/master | 2020-04-07T02:56:36.045957 | 2018-12-02T05:01:46 | 2018-12-02T05:01:46 | 157,996,284 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 550 | java | package main.resources;
import com.alibaba.rocketmq.common.filter.MessageFilter;
import com.alibaba.rocketmq.common.message.MessageExt;
public class MessageFilterImpl implements MessageFilter {
@Override
public boolean match(MessageExt msg) {
String property = msg.getProperty("SequenceId");
if (property != null) {
int id = Integer.parseInt(property);
if (((id % 10) == 0) && //
(id > 100)) {
return true;
}
}
return false;
}
}
| [
"[email protected]"
] | |
edca870a6f81b6ae6af2c8e81cdfdb3cd7f1f0ba | 347ee4183ec38ce263a703a4d913579bf755a457 | /src/com/java/dao/UserDao.java | cb04910ca555f32728c6fa323db3b3928a6d19e7 | [] | no_license | zhangtixurui/crm | 86a623438fea02b8d4f68c2b5e048851c56331b2 | 1260b16666db9518ba5121b1c20f731dca64c481 | refs/heads/master | 2020-04-06T06:56:09.377206 | 2016-08-30T10:23:42 | 2016-08-30T10:23:42 | 62,038,087 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 821 | java | package com.java.dao;
import java.util.List;
import java.util.Map;
import com.java.entity.User;
/**
* 用户DAO接口
*
* @author Administrator
*
*/
public interface UserDao {
/**
* 用户登录
* @param user
* @return
*/
public User login(User user);
/**
* 用户查询
* @param map
* @return用户集合
*/
public List<User> find(Map<String, Object> map);
/**
* 获取总记录数
* @param map
* @return获取的total数
*/
public Long getTotal(Map<String, Object> map);
/**
* 修改用户
* @param user
* @return影响的记录数
*/
public int update(User user);
/**
* 添加用户
* @param user
* @return影响的记录数
*/
public int add(User user);
/**
* 删除用户
* @param id
* @return
*/
public int delete(Integer id);
}
| [
"[email protected]"
] | |
a3fcb2315f4efded73cefda58f2a39bc1e04db47 | 8d787cd24dc56230a1b21178b098c901faacfe23 | /src/test/java/com/theironyard/novauc/web/rest/UserResourceIntTest.java | c7314a6efdc609d0a262c8fd0d8617704cb8a3c1 | [] | no_license | psubedi2026/GameSales | 93c79eac8a7045c37197e1f10f8e659d3291d1c6 | 2d651a52d104401024ff263bda745da8bd027a22 | refs/heads/master | 2021-01-18T23:20:25.804453 | 2017-04-03T18:23:23 | 2017-04-03T18:23:23 | 87,106,510 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 19,221 | java | package com.theironyard.novauc.web.rest;
import com.theironyard.novauc.GameSalesApp;
import com.theironyard.novauc.domain.User;
import com.theironyard.novauc.repository.UserRepository;
import com.theironyard.novauc.service.MailService;
import com.theironyard.novauc.service.UserService;
import com.theironyard.novauc.web.rest.errors.ExceptionTranslator;
import com.theironyard.novauc.web.rest.vm.ManagedUserVM;
import org.apache.commons.lang3.RandomStringUtils;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.MockitoAnnotations;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.web.PageableHandlerMethodArgumentResolver;
import org.springframework.http.MediaType;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.transaction.annotation.Transactional;
import javax.persistence.EntityManager;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import static org.assertj.core.api.Assertions.assertThat;
import static org.hamcrest.Matchers.hasItem;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
/**
* Test class for the UserResource REST controller.
*
* @see UserResource
*/
@RunWith(SpringRunner.class)
@SpringBootTest(classes = GameSalesApp.class)
public class UserResourceIntTest {
private static final String DEFAULT_LOGIN = "johndoe";
private static final String UPDATED_LOGIN = "jhipster";
private static final String DEFAULT_PASSWORD = "passjohndoe";
private static final String UPDATED_PASSWORD = "passjhipster";
private static final String DEFAULT_EMAIL = "johndoe@localhost";
private static final String UPDATED_EMAIL = "jhipster@localhost";
private static final String DEFAULT_FIRSTNAME = "john";
private static final String UPDATED_FIRSTNAME = "jhipsterFirstName";
private static final String DEFAULT_LASTNAME = "doe";
private static final String UPDATED_LASTNAME = "jhipsterLastName";
private static final String DEFAULT_IMAGEURL = "http://placehold.it/50x50";
private static final String UPDATED_IMAGEURL = "http://placehold.it/40x40";
private static final String DEFAULT_LANGKEY = "en";
private static final String UPDATED_LANGKEY = "fr";
@Autowired
private UserRepository userRepository;
@Autowired
private MailService mailService;
@Autowired
private UserService userService;
@Autowired
private MappingJackson2HttpMessageConverter jacksonMessageConverter;
@Autowired
private PageableHandlerMethodArgumentResolver pageableArgumentResolver;
@Autowired
private ExceptionTranslator exceptionTranslator;
@Autowired
private EntityManager em;
private MockMvc restUserMockMvc;
private User user;
@Before
public void setup() {
MockitoAnnotations.initMocks(this);
UserResource userResource = new UserResource(userRepository, mailService, userService);
this.restUserMockMvc = MockMvcBuilders.standaloneSetup(userResource)
.setCustomArgumentResolvers(pageableArgumentResolver)
.setControllerAdvice(exceptionTranslator)
.setMessageConverters(jacksonMessageConverter)
.build();
}
/**
* Create a User.
*
* This is a static method, as tests for other entities might also need it,
* if they test an entity which has a required relationship to the User entity.
*/
public static User createEntity(EntityManager em) {
User user = new User();
user.setLogin(DEFAULT_LOGIN);
user.setPassword(RandomStringUtils.random(60));
user.setActivated(true);
user.setEmail(DEFAULT_EMAIL);
user.setFirstName(DEFAULT_FIRSTNAME);
user.setLastName(DEFAULT_LASTNAME);
user.setImageUrl(DEFAULT_IMAGEURL);
user.setLangKey(DEFAULT_LANGKEY);
return user;
}
@Before
public void initTest() {
user = createEntity(em);
}
@Test
@Transactional
public void createUser() throws Exception {
int databaseSizeBeforeCreate = userRepository.findAll().size();
// Create the User
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
null,
DEFAULT_LOGIN,
DEFAULT_PASSWORD,
DEFAULT_FIRSTNAME,
DEFAULT_LASTNAME,
DEFAULT_EMAIL,
true,
DEFAULT_IMAGEURL,
DEFAULT_LANGKEY,
null,
null,
null,
null,
authorities);
restUserMockMvc.perform(post("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isCreated());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeCreate + 1);
User testUser = userList.get(userList.size() - 1);
assertThat(testUser.getLogin()).isEqualTo(DEFAULT_LOGIN);
assertThat(testUser.getFirstName()).isEqualTo(DEFAULT_FIRSTNAME);
assertThat(testUser.getLastName()).isEqualTo(DEFAULT_LASTNAME);
assertThat(testUser.getEmail()).isEqualTo(DEFAULT_EMAIL);
assertThat(testUser.getImageUrl()).isEqualTo(DEFAULT_IMAGEURL);
assertThat(testUser.getLangKey()).isEqualTo(DEFAULT_LANGKEY);
}
@Test
@Transactional
public void createUserWithExistingId() throws Exception {
int databaseSizeBeforeCreate = userRepository.findAll().size();
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
1L,
DEFAULT_LOGIN,
DEFAULT_PASSWORD,
DEFAULT_FIRSTNAME,
DEFAULT_LASTNAME,
DEFAULT_EMAIL,
true,
DEFAULT_IMAGEURL,
DEFAULT_LANGKEY,
null,
null,
null,
null,
authorities);
// An entity with an existing ID cannot be created, so this API call must fail
restUserMockMvc.perform(post("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isBadRequest());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeCreate);
}
@Test
@Transactional
public void createUserWithExistingLogin() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
int databaseSizeBeforeCreate = userRepository.findAll().size();
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
null,
DEFAULT_LOGIN, // this login should already be used
DEFAULT_PASSWORD,
DEFAULT_FIRSTNAME,
DEFAULT_LASTNAME,
"anothermail@localhost",
true,
DEFAULT_IMAGEURL,
DEFAULT_LANGKEY,
null,
null,
null,
null,
authorities);
// Create the User
restUserMockMvc.perform(post("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isBadRequest());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeCreate);
}
@Test
@Transactional
public void createUserWithExistingEmail() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
int databaseSizeBeforeCreate = userRepository.findAll().size();
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
null,
"anotherlogin",
DEFAULT_PASSWORD,
DEFAULT_FIRSTNAME,
DEFAULT_LASTNAME,
DEFAULT_EMAIL, // this email should already be used
true,
DEFAULT_IMAGEURL,
DEFAULT_LANGKEY,
null,
null,
null,
null,
authorities);
// Create the User
restUserMockMvc.perform(post("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isBadRequest());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeCreate);
}
@Test
@Transactional
public void getAllUsers() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
// Get all the users
restUserMockMvc.perform(get("/api/users?sort=id,desc")
.accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
.andExpect(jsonPath("$.[*].login").value(hasItem(DEFAULT_LOGIN)))
.andExpect(jsonPath("$.[*].firstName").value(hasItem(DEFAULT_FIRSTNAME)))
.andExpect(jsonPath("$.[*].lastName").value(hasItem(DEFAULT_LASTNAME)))
.andExpect(jsonPath("$.[*].email").value(hasItem(DEFAULT_EMAIL)))
.andExpect(jsonPath("$.[*].imageUrl").value(hasItem(DEFAULT_IMAGEURL)))
.andExpect(jsonPath("$.[*].langKey").value(hasItem(DEFAULT_LANGKEY)));
}
@Test
@Transactional
public void getUser() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
// Get the user
restUserMockMvc.perform(get("/api/users/{login}", user.getLogin()))
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8_VALUE))
.andExpect(jsonPath("$.login").value(user.getLogin()))
.andExpect(jsonPath("$.firstName").value(DEFAULT_FIRSTNAME))
.andExpect(jsonPath("$.lastName").value(DEFAULT_LASTNAME))
.andExpect(jsonPath("$.email").value(DEFAULT_EMAIL))
.andExpect(jsonPath("$.imageUrl").value(DEFAULT_IMAGEURL))
.andExpect(jsonPath("$.langKey").value(DEFAULT_LANGKEY));
}
@Test
@Transactional
public void getNonExistingUser() throws Exception {
restUserMockMvc.perform(get("/api/users/unknown"))
.andExpect(status().isNotFound());
}
@Test
@Transactional
public void updateUser() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
int databaseSizeBeforeUpdate = userRepository.findAll().size();
// Update the user
User updatedUser = userRepository.findOne(user.getId());
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
updatedUser.getId(),
updatedUser.getLogin(),
UPDATED_PASSWORD,
UPDATED_FIRSTNAME,
UPDATED_LASTNAME,
UPDATED_EMAIL,
updatedUser.getActivated(),
UPDATED_IMAGEURL,
UPDATED_LANGKEY,
updatedUser.getCreatedBy(),
updatedUser.getCreatedDate(),
updatedUser.getLastModifiedBy(),
updatedUser.getLastModifiedDate(),
authorities);
restUserMockMvc.perform(put("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isOk());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeUpdate);
User testUser = userList.get(userList.size() - 1);
assertThat(testUser.getFirstName()).isEqualTo(UPDATED_FIRSTNAME);
assertThat(testUser.getLastName()).isEqualTo(UPDATED_LASTNAME);
assertThat(testUser.getEmail()).isEqualTo(UPDATED_EMAIL);
assertThat(testUser.getImageUrl()).isEqualTo(UPDATED_IMAGEURL);
assertThat(testUser.getLangKey()).isEqualTo(UPDATED_LANGKEY);
}
@Test
@Transactional
public void updateUserLogin() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
int databaseSizeBeforeUpdate = userRepository.findAll().size();
// Update the user
User updatedUser = userRepository.findOne(user.getId());
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
updatedUser.getId(),
UPDATED_LOGIN,
UPDATED_PASSWORD,
UPDATED_FIRSTNAME,
UPDATED_LASTNAME,
UPDATED_EMAIL,
updatedUser.getActivated(),
UPDATED_IMAGEURL,
UPDATED_LANGKEY,
updatedUser.getCreatedBy(),
updatedUser.getCreatedDate(),
updatedUser.getLastModifiedBy(),
updatedUser.getLastModifiedDate(),
authorities);
restUserMockMvc.perform(put("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isOk());
// Validate the User in the database
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeUpdate);
User testUser = userList.get(userList.size() - 1);
assertThat(testUser.getLogin()).isEqualTo(UPDATED_LOGIN);
assertThat(testUser.getFirstName()).isEqualTo(UPDATED_FIRSTNAME);
assertThat(testUser.getLastName()).isEqualTo(UPDATED_LASTNAME);
assertThat(testUser.getEmail()).isEqualTo(UPDATED_EMAIL);
assertThat(testUser.getImageUrl()).isEqualTo(UPDATED_IMAGEURL);
assertThat(testUser.getLangKey()).isEqualTo(UPDATED_LANGKEY);
}
@Test
@Transactional
public void updateUserExistingEmail() throws Exception {
// Initialize the database with 2 users
userRepository.saveAndFlush(user);
User anotherUser = new User();
anotherUser.setLogin("jhipster");
anotherUser.setPassword(RandomStringUtils.random(60));
anotherUser.setActivated(true);
anotherUser.setEmail("jhipster@localhost");
anotherUser.setFirstName("java");
anotherUser.setLastName("hipster");
anotherUser.setImageUrl("");
anotherUser.setLangKey("en");
userRepository.saveAndFlush(anotherUser);
// Update the user
User updatedUser = userRepository.findOne(user.getId());
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
updatedUser.getId(),
updatedUser.getLogin(),
updatedUser.getPassword(),
updatedUser.getFirstName(),
updatedUser.getLastName(),
"jhipster@localhost", // this email should already be used by anotherUser
updatedUser.getActivated(),
updatedUser.getImageUrl(),
updatedUser.getLangKey(),
updatedUser.getCreatedBy(),
updatedUser.getCreatedDate(),
updatedUser.getLastModifiedBy(),
updatedUser.getLastModifiedDate(),
authorities);
restUserMockMvc.perform(put("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isBadRequest());
}
@Test
@Transactional
public void updateUserExistingLogin() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
User anotherUser = new User();
anotherUser.setLogin("jhipster");
anotherUser.setPassword(RandomStringUtils.random(60));
anotherUser.setActivated(true);
anotherUser.setEmail("jhipster@localhost");
anotherUser.setFirstName("java");
anotherUser.setLastName("hipster");
anotherUser.setImageUrl("");
anotherUser.setLangKey("en");
userRepository.saveAndFlush(anotherUser);
// Update the user
User updatedUser = userRepository.findOne(user.getId());
Set<String> authorities = new HashSet<>();
authorities.add("ROLE_USER");
ManagedUserVM managedUserVM = new ManagedUserVM(
updatedUser.getId(),
"jhipster", // this login should already be used by anotherUser
updatedUser.getPassword(),
updatedUser.getFirstName(),
updatedUser.getLastName(),
updatedUser.getEmail(),
updatedUser.getActivated(),
updatedUser.getImageUrl(),
updatedUser.getLangKey(),
updatedUser.getCreatedBy(),
updatedUser.getCreatedDate(),
updatedUser.getLastModifiedBy(),
updatedUser.getLastModifiedDate(),
authorities);
restUserMockMvc.perform(put("/api/users")
.contentType(TestUtil.APPLICATION_JSON_UTF8)
.content(TestUtil.convertObjectToJsonBytes(managedUserVM)))
.andExpect(status().isBadRequest());
}
@Test
@Transactional
public void deleteUser() throws Exception {
// Initialize the database
userRepository.saveAndFlush(user);
int databaseSizeBeforeDelete = userRepository.findAll().size();
// Delete the user
restUserMockMvc.perform(delete("/api/users/{login}", user.getLogin())
.accept(TestUtil.APPLICATION_JSON_UTF8))
.andExpect(status().isOk());
// Validate the database is empty
List<User> userList = userRepository.findAll();
assertThat(userList).hasSize(databaseSizeBeforeDelete - 1);
}
@Test
@Transactional
public void equalsVerifier() throws Exception {
User userA = new User();
userA.setLogin("AAA");
User userB = new User();
userB.setLogin("BBB");
assertThat(userA).isNotEqualTo(userB);
}
}
| [
"[email protected]"
] | |
5a0d438522397b04f0302605ac2a504f2482653a | eca79f5a860fe5dce7c8c844d1f927075d62b1f1 | /toDoApp-Backend/src/main/java/com/ToDoApp/toDoApp/jwt/JwtTokenUtil.java | bb5af61b1defa1f99523707e74d9676a607c00a9 | [] | no_license | edgardchamoun/toDoApp-JavaSpring-ReactJS | e93bf4ce00f8560d7263512444f1774202aa1fd9 | 48dc8d8522c7d8fb99d44516227f00431e4dcee9 | refs/heads/master | 2022-12-27T19:21:50.167354 | 2020-10-11T05:03:34 | 2020-10-11T05:03:34 | 302,848,918 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,404 | java | package com.ToDoApp.toDoApp.jwt;
import java.io.Serializable;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Function;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.stereotype.Component;
import io.jsonwebtoken.Claims;
import io.jsonwebtoken.Clock;
import io.jsonwebtoken.Jwts;
import io.jsonwebtoken.SignatureAlgorithm;
import io.jsonwebtoken.impl.DefaultClock;
@Component
public class JwtTokenUtil implements Serializable {
static final String CLAIM_KEY_USERNAME = "sub";
static final String CLAIM_KEY_CREATED = "iat";
private static final long serialVersionUID = -3301605591108950415L;
private Clock clock = DefaultClock.INSTANCE;
@Value("${jwt.signing.key.secret}")
private String secret;
@Value("${jwt.token.expiration.in.seconds}")
private Long expiration;
public String getUsernameFromToken(String token) {
return getClaimFromToken(token, Claims::getSubject);
}
public Date getIssuedAtDateFromToken(String token) {
return getClaimFromToken(token, Claims::getIssuedAt);
}
public Date getExpirationDateFromToken(String token) {
return getClaimFromToken(token, Claims::getExpiration);
}
public <T> T getClaimFromToken(String token, Function<Claims, T> claimsResolver) {
final Claims claims = getAllClaimsFromToken(token);
return claimsResolver.apply(claims);
}
private Claims getAllClaimsFromToken(String token) {
return Jwts.parser().setSigningKey(secret).parseClaimsJws(token).getBody();
}
private Boolean isTokenExpired(String token) {
final Date expiration = getExpirationDateFromToken(token);
return expiration.before(clock.now());
}
private Boolean ignoreTokenExpiration(String token) {
// here you specify tokens, for that the expiration is ignored
return false;
}
public String generateToken(UserDetails userDetails) {
Map<String, Object> claims = new HashMap<>();
return doGenerateToken(claims, userDetails.getUsername());
}
private String doGenerateToken(Map<String, Object> claims, String subject) {
final Date createdDate = clock.now();
final Date expirationDate = calculateExpirationDate(createdDate);
return Jwts.builder().setClaims(claims).setSubject(subject).setIssuedAt(createdDate)
.setExpiration(expirationDate).signWith(SignatureAlgorithm.HS512, secret).compact();
}
public Boolean canTokenBeRefreshed(String token) {
return (!isTokenExpired(token) || ignoreTokenExpiration(token));
}
public String refreshToken(String token) {
final Date createdDate = clock.now();
final Date expirationDate = calculateExpirationDate(createdDate);
final Claims claims = getAllClaimsFromToken(token);
claims.setIssuedAt(createdDate);
claims.setExpiration(expirationDate);
return Jwts.builder().setClaims(claims).signWith(SignatureAlgorithm.HS512, secret).compact();
}
public Boolean validateToken(String token, UserDetails userDetails) {
JwtUserDetails user = (JwtUserDetails) userDetails;
final String username = getUsernameFromToken(token);
return (username.equals(user.getUsername()) && !isTokenExpired(token));
}
private Date calculateExpirationDate(Date createdDate) {
return new Date(createdDate.getTime() + expiration * 1000);
}
}
| [
"[email protected]"
] | |
33b07677f4a7bfddaacdc6f089ca68bb63d5e388 | 92bd9c78f77fe04a5f29d6385fa01c63972b15a8 | /swapper/src/main/java/br/com/swapper/dao/UsuarioDAO.java | eaf79e4e42bbe72879d5e85899395cd8b2aec74f | [] | no_license | setor7/swapper | a7a8c2f649a18ff39dd04be2129c5ac3beda781e | 9b8abcf67345fe965d93393191c6af7a6856aeab | refs/heads/master | 2021-01-22T05:20:04.674830 | 2015-07-26T17:41:57 | 2015-07-26T17:41:57 | 39,730,726 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,027 | java | package br.com.swapper.dao;
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import org.springframework.stereotype.Repository;
import br.com.swapper.model.Usuario;
/**
* DAO para a entidade Usuario
* @author Bruno Carneiro
*
*/
@Repository
public class UsuarioDAO
{
@PersistenceContext
private EntityManager manager;
/**
* Persiste usuário na base de dados
* @param usuario
*/
public void save(Usuario usuario)
{
manager.persist(usuario);
}
/**
* Remove usuário
* @param usuario
*/
public void delete(Usuario usuario)
{
manager.remove(usuario);
}
/**
* Atualiza dados do usuário
* @param usuario
*/
public void update(Usuario usuario)
{
manager.merge(usuario);
}
/**
* Lista todos os usuários cadastrados
* @return
*/
public List<Usuario> list()
{
return manager.createQuery("Select p From Usuario p", Usuario.class).getResultList();
}
}
| [
"[email protected]"
] | |
8f571522762fdafa7b5afa2f303b98e21d9fe6b7 | f0b708f80c3ed50328929841e70a3d3bd7fd37af | /Project/src/com/designpatterns/creational/BikeFrameInterface.java | 3d7ac37aacc142c0c63be1b10720a15b2e27512a | [] | no_license | james09melton/JavaFundamentals | 944e49e08d6d983acdf781f4e8e0508a4f244d36 | cf026a8089fbdacf17d7579714acaf67ecfcb8e4 | refs/heads/master | 2020-03-31T01:09:58.778363 | 2018-12-12T21:46:35 | 2018-12-12T21:46:35 | 151,769,230 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 112 | java | package com.designpatterns.creational;
public interface BikeFrameInterface {
public String getFrameParts();
}
| [
"[email protected]"
] | |
6bd77f8140b0589d81af86809c38fe2ea0bef426 | b377e41f210fb2d444d4dcd4d552f219b606117d | /src/main/java/com/system/green/house/models/services/IPlantService.java | a06f14db87d33e7ab2d5442ca63ac09cb38af808 | [] | no_license | Javier-llan/systemgreenhouse | 04895e2c036eb59186f513c4d5942efd7cf798b6 | d1d774b6b8bae02a636b05ba52c1fe59129d6382 | refs/heads/master | 2022-12-13T05:31:38.858963 | 2020-09-14T14:47:44 | 2020-09-14T14:47:44 | 270,446,770 | 0 | 0 | null | 2020-09-13T22:34:23 | 2020-06-07T22:12:29 | Java | UTF-8 | Java | false | false | 294 | java | package com.system.green.house.models.services;
import java.util.List;
import com.system.green.house.models.entities.Plant;
public interface IPlantService {
public void save(Plant p);
public Plant findById(Integer id);
public void delete(Integer id);
public List<Plant> findAll();
}
| [
"[email protected]"
] | |
b4de341823a2e171b69943750a00705e52028fb4 | 4158db4ad80c0e7025bedf5b302285066d6e5f81 | /src/main/java/com/pawelmaslyk/gerritintegration4sonar/GerritNotifier.java | 4e526c4b5d1bbd00b2d55d6e76ebe4c72d82a336 | [] | no_license | sgala/gerrit-intergation-plugin | a8569c898bb7f9f502107106d9aa39c387760a72 | 0c5735856c6455592e5f99e2d4ea73a853661891 | refs/heads/master | 2021-01-18T05:35:00.891785 | 2013-07-17T08:26:00 | 2013-07-17T08:26:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,855 | java | package com.pawelmaslyk.gerritintegration4sonar;
import java.io.IOException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.sonar.api.batch.BuildBreaker;
import org.sonar.api.batch.SensorContext;
import org.sonar.api.config.Settings;
import org.sonar.api.resources.Project;
import com.pawelmaslyk.gerritintegration4sonar.gerrit.EmptyGerritCommit;
import com.pawelmaslyk.gerritintegration4sonar.gerrit.GerritCommand;
import com.pawelmaslyk.gerritintegration4sonar.gerrit.GerritCommit;
import com.pawelmaslyk.gerritintegration4sonar.gerrit.GerritCommitFactory;
import com.pawelmaslyk.gerritintegration4sonar.gerritconfiguration.EmptyGerritConnection;
import com.pawelmaslyk.gerritintegration4sonar.gerritconfiguration.GerritConnection;
import com.pawelmaslyk.gerritintegration4sonar.gerritconfiguration.GerritConnectionFactory;
import com.pawelmaslyk.gerritintegration4sonar.sonar.SonarAnalysisResult;
import com.sonyericsson.hudson.plugins.gerrit.gerritevents.ssh.SshConnection;
import com.sonyericsson.hudson.plugins.gerrit.gerritevents.ssh.SshConnectionFactory;
/**
* I'm core of the Gerrit Integration plugin
*
* @author pawel
*
*/
public class GerritNotifier extends BuildBreaker {
private final Settings settings;
/**
* I create {@link GerritNotifier} and apply sonar settings
*
* @param settings
* the settings
*/
public GerritNotifier(Settings settings) {
this.settings = settings;
}
public void executeOn(Project project, SensorContext context) {
Logger logger = LoggerFactory.getLogger(getClass());
try {
analyseMeasures(context, logger);
} catch (IOException e) {
logger.error("Could not notify gerrit about the results of the analysis");
e.printStackTrace();
}
}
private void analyseMeasures(SensorContext context, Logger logger) throws IOException {
GerritConnection connection = GerritConnectionFactory.createGerritConnectionFromSonarSettings(settings);
if (connection instanceof EmptyGerritConnection) {
logger.info("Gerrit has not been notified, because the gerrit connection has not been defined, please check plugin settings");
return;
}
GerritCommit commit = GerritCommitFactory.createGerritCommitFromSonarSettings(settings);
SonarAnalysisResult mark = SonarResultEvaluator.markCommit(context, logger);
if (commit instanceof EmptyGerritCommit) {
logger.info("Gerrit has not been notified, because the commit information is missing, please check if all parameters are passed while running sonar");
return;
} else {
logger.info(String.format("Sending results to gerrit for %s: %s", commit, mark));
SshConnection ssh = SshConnectionFactory.getConnection(connection);
String command = GerritCommand.createCodeReview(commit, mark);
ssh.executeCommand(command);
logger.info("Results sent successfully");
}
}
}
| [
"[email protected]"
] | |
772111964b9d77a09e18b845e54dc5892b246135 | 72255f58448de83060fc97ccff4a8efe5862ee85 | /Chapter-2-new/homework/src/main/java/chapter/android/aweme/ss/com/homework/GreenAdapter.java | b7dfea10c0b9264f2792361d59301649efdc049d | [
"MIT"
] | permissive | Kiwis123/android-homework | 3b780100187c0d0a7d52932fc7e338c5f7f0d490 | 5f9a2b2dc81afee4322a71cd9130d1aeaf69a907 | refs/heads/master | 2021-05-23T09:07:19.508350 | 2020-06-10T06:48:18 | 2020-06-10T06:48:18 | 253,213,220 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,341 | java | package chapter.android.aweme.ss.com.homework;
import android.content.Context;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import chapter.android.aweme.ss.com.homework.model.Message;
import chapter.android.aweme.ss.com.homework.widget.CircleImageView;
import java.util.List;
/**
* 适配器
*/
public class GreenAdapter extends RecyclerView.Adapter<GreenAdapter.NumberViewHolder> {
private static final String TAG = "GreenAdapter";
private int mNumberItems;
private final ListItemClickListener mOnClickListener;
private static int viewHolderCount;
private static List<Message> msg;
public GreenAdapter(List<Message> msg, int numListItems, ListItemClickListener listener) {
this.msg = msg;
mNumberItems = numListItems;
mOnClickListener = listener;
viewHolderCount = 0;
}
/*
* 一般会预留2~4个ViewHolder,off screen的数量由mCachedSize来决定
*
* The number of ViewHolders that have been created. Typically, you can figure out how many
* there should be by determining how many list items fit on your screen at once and add 2 to 4
* to that number. That isn't the exact formula, but will give you an idea of how many
* ViewHolders have been created to display any given RecyclerView.
*
* Here's some ASCII art to hopefully help you understand:
*
* ViewHolders on screen:
*
* *-----------------------------*
* | ViewHolder index: 0 |
* *-----------------------------*
* | ViewHolder index: 1 |
* *-----------------------------*
* | ViewHolder index: 2 |
* *-----------------------------*
* | ViewHolder index: 3 |
* *-----------------------------*
* | ViewHolder index: 4 |
* *-----------------------------*
* | ViewHolder index: 5 |
* *-----------------------------*
* | ViewHolder index: 6 |
* *-----------------------------*
* | ViewHolder index: 7 |
* *-----------------------------*
*
* Extra ViewHolders (off screen)
*
* *-----------------------------*
* | ViewHolder index: 8 |
* *-----------------------------*
* | ViewHolder index: 9 |
* *-----------------------------*
* | ViewHolder index: 10|
* *-----------------------------*
* | ViewHolder index: 11|
* *-----------------------------*
*
* index:12 from where?
*
* Total number of ViewHolders = 12
*
*
* 不做特殊处理:最多缓存多少个ViewHolder N(第一屏可见) + 2 mCachedSize + 5*itemType RecyclePool
*
* 找到position一致的viewholder才可以复用,新的位置由于position不一致,所以不能复用,重新创建新的
* 这也是为什么 mCachedViews一开始缓存的是0、1 所以 8、9、10需要被创建,
* 那为什么10 和 11也要被创建?
*
* 当view完全不可见的时候才会被缓存回收,这与item触发getViewForPosition不同,
* 当2完全被缓存的时候,实际上getViewForPosition已经触发到11了,此时RecyclePool有一个viewholder(可以直接被复用)
* 当12触发getViewForPosition的时候,由于RecyclePool里面有,所以直接复用这里的viewholder
* 问题?复用的viewholder到底是 0 1 2当中的哪一个?
*
*
* RecycleView 对比 ListView 最大的优势,缓存的设计,减少bindView的处理
*/
@NonNull
@Override
public NumberViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int viewType) {
Context context = viewGroup.getContext();
int layoutIdForListItem = R.layout.im_list_item;
LayoutInflater inflater = LayoutInflater.from(context);
boolean shouldAttachToParentImmediately = false;
View view = inflater.inflate(layoutIdForListItem, viewGroup, shouldAttachToParentImmediately);
NumberViewHolder viewHolder = new NumberViewHolder(view);
Log.d(TAG, "onCreateViewHolder: number of ViewHolders created: " + viewHolderCount);
viewHolderCount++;
return viewHolder;
}
@Override
public void onBindViewHolder(@NonNull NumberViewHolder numberViewHolder, int position) {
Log.d(TAG, "onBindViewHolder: #" + position);
numberViewHolder.bind(position);//根据position绑定数据
}
@Override
public int getItemCount() {
return mNumberItems;//返回实际item数量
}
public class NumberViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
private final TextView listItemTime;
private final TextView listItemDescription;
private final TextView listItemTitle;
private final ImageView isOfficial;
private final CircleImageView listItemIcon;
public NumberViewHolder(@NonNull View itemView) {
super(itemView);
listItemTime = (TextView) itemView.findViewById(R.id.tv_time);
listItemDescription = (TextView) itemView.findViewById(R.id.tv_description);
listItemTitle = (TextView) itemView.findViewById(R.id.tv_title);
isOfficial = (ImageView) itemView.findViewById(R.id.robot_notice);
listItemIcon = (CircleImageView) itemView.findViewById(R.id.iv_avatar);
itemView.setOnClickListener(this);
}
public void bind(int position) {
listItemTime.setText(msg.get(position).getTime());//设置每个item的序号
listItemTitle.setText(msg.get(position).getTitle());
listItemDescription.setText(msg.get(position).getDescription());
if(msg.get(position).isOfficial()){
Drawable drawable = isOfficial.getResources().getDrawable(R.drawable.im_icon_notice_official);
isOfficial.setImageDrawable(drawable);
Log.d(TAG, "官方消息,position:" + position);
}else{
isOfficial.setImageDrawable(null);
Log.d(TAG, "非官方消息,position:" + position);
}
Drawable drawable1;
if("TYPE_USER".equals(msg.get(position).getIcon())) {
drawable1 = listItemIcon.getResources().getDrawable(R.drawable.icon_girl);
}else if("TYPE_ROBOT".equals(msg.get(position).getIcon())) {
drawable1 = listItemIcon.getResources().getDrawable(R.drawable.session_robot);
}else if("TYPE_STRANGER".equals(msg.get(position).getIcon())) {
drawable1 = listItemIcon.getResources().getDrawable(R.drawable.session_stranger);
}else if("TYPE_GAME".equals(msg.get(position).getIcon())) {
drawable1 = listItemIcon.getResources().getDrawable(R.drawable.icon_micro_game_comment);
}else{
drawable1 = listItemIcon.getResources().getDrawable(R.drawable.session_system_notice);
}
listItemIcon.setImageDrawable(drawable1);
// viewHolderIndex.setText(String.format("ViewHolder index: %s", getAdapterPosition()));
// int backgroundColorForViewHolder = ColorUtils.
// getViewHolderBackgroundColorFromInstance(itemView.getContext(), getAdapterPosition() % 10);
// itemView.setBackgroundColor(backgroundColorForViewHolder);
}
@Override
public void onClick(View v) {
int clickedPosition = getAdapterPosition();
if (mOnClickListener != null) {
mOnClickListener.onListItemClick(clickedPosition);
}
}
}
public interface ListItemClickListener {
void onListItemClick(int clickedItemIndex);
}
}
| [
"[email protected]"
] | |
f007e8a51a92be1efb81101815fabe59e81b1287 | 3cc94850e14824e2702dd753a7a777cf3c509412 | /src/Clases/Usuario.java | cfa6f713dea8167c68c2153b81e539ea88cab2df | [] | no_license | efrenrodas/TareaBim1PA | dead84ce6003acee0b83be400c8df3c8af7e3c27 | 1c0f266e7fa2f7dcbc781a386dcb431a9828858a | refs/heads/master | 2023-01-18T15:38:18.980031 | 2020-11-26T03:46:36 | 2020-11-26T03:46:36 | 183,928,777 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,237 | 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 Clases;
import java.io.Serializable;
/**
*
* @author daguaman
*/
public class Usuario implements Serializable{
private static final long serialVersionUID = 1L;
/*Atributos de la clase Usuario*/
private int idUsuario;
private String usIdentificacion;
private String usNombres;
private String usApellidos;
private String usLogin;
private String usPassword;
private int usEstado;
private int usPais;
private int usGenero;
/*Constructor de la clase Usuario*/
public Usuario(int idUsuario, String usIdentificacion, String usNombres, String usApellidos, String usLogin, String usPassword, int usEstado, int usPais, int usGenero) {
this.idUsuario = idUsuario;
this.usIdentificacion = usIdentificacion;
this.usNombres = usNombres;
this.usApellidos = usApellidos;
this.usLogin = usLogin;
this.usPassword = usPassword;
this.usEstado = usEstado;
this.usPais = usPais;
this.usGenero = usGenero;
}
//Constructor con dos parámetros
public Usuario(int idUsuario, String usIdentificacion, String usNombres, String usApellidos){
this.idUsuario = idUsuario;
this.usIdentificacion = usIdentificacion;
this.usNombres = usNombres;
this.usApellidos = usApellidos;
}
//Constructor Vacio
public Usuario(){
}
public Usuario(int idUsuario, String StrNombre){
this.idUsuario = idUsuario;
this.usNombres = StrNombre;
}
public int getIdUsuario() {
return idUsuario;
}
public String getUsIdentificacion() {
return usIdentificacion;
}
public String getUsNombres() {
return usNombres;
}
public String getUsApellidos() {
return usApellidos;
}
public String getUsLogin() {
return usLogin;
}
public String getUsPassword() {
return usPassword;
}
public int getUsEstado() {
return usEstado;
}
public int getUsPais() {
return usPais;
}
public int getUsGenero() {
return usGenero;
}
public void setIdUsuario(int idUsuario) {
this.idUsuario = idUsuario;
}
public void setUsIdentificacion(String usIdentificacion) {
this.usIdentificacion = usIdentificacion;
}
public void setUsNombres(String usNombres) {
this.usNombres = usNombres;
}
public void setUsApellidos(String usApellidos) {
this.usApellidos = usApellidos;
}
public void setUsLogin(String usLogin) {
this.usLogin = usLogin;
}
public void setUsPassword(String usPassword) {
this.usPassword = usPassword;
}
public void setUsEstado(int usEstado) {
this.usEstado = usEstado;
}
public void setUsPais(int usPais) {
this.usPais = usPais;
}
public void setUsGenero(int usGenero) {
this.usGenero = usGenero;
}
@Override
public String toString() {
return usNombres;
}
}
| [
"[email protected]"
] | |
d02258d693ab06f67d4ac4289c82b28cfcf0c904 | 5be5ae7fff1a32ae98e1c3b62e1c2d3d3007267c | /app/src/androidTest/java/com/adarsh45/quizitup/ExampleInstrumentedTest.java | 4305409724cc2bcdf7814e0376e22d962e6b2bf3 | [] | no_license | adarsh45/Quick-Quiz-App | 8867e85f0af64745d39a6751b9116985b68e87e3 | 543637eebf0b503922be52611b954112604e2c58 | refs/heads/master | 2023-04-26T17:07:25.849100 | 2021-04-29T04:56:26 | 2021-04-29T04:56:26 | 355,059,453 | 0 | 0 | null | 2021-04-21T13:18:34 | 2021-04-06T04:45:13 | Java | UTF-8 | Java | false | false | 755 | java | package com.adarsh45.quizitup;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.example.quizitup", appContext.getPackageName());
}
} | [
"[email protected]"
] | |
4815881a6327b08d7ff31ca6c7de520a4ccfb0c7 | d1ec1af1bd5751ddf0ec26c7411cb2d39a5a1706 | /app/src/androidTest/java/com/example/obar/simon_kristine_labexer2/ExampleInstrumentedTest.java | 1981820dfa5d5e50be9ae935b254b2f563a1435b | [] | no_license | kristinesimon/Simon_Kristine_115Labexer2 | 68feaee475851b8eb0446a8227d90c9d34955e1b | 345f924825d0c922154854378bb26d304be21714 | refs/heads/master | 2021-07-20T15:07:34.612796 | 2017-10-27T18:56:31 | 2017-10-27T18:56:31 | 108,575,864 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 784 | java | package com.example.obar.simon_kristine_labexer2;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumentation test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.example.obar.simon_kristine_labexer2", appContext.getPackageName());
}
}
| [
"[email protected]"
] | |
6ad1e52dfa08d420f6b3a9df30f01720ec4c0c5a | 138fc8d21ed3e4b02e6e24e9aca14edc92e67ab9 | /src/main/java/conectors/JDBC.java | 0b6ccdc8d2594a9a9ce4e837f64be136f7e0175b | [] | no_license | RubenDomingoRobledo/prueba | 6c2ca1ea9afd00f37fdfa9fdc5fae09ae9021d74 | e291278febed7d422952dc210753b38658a6a80b | refs/heads/master | 2023-09-01T05:52:31.116458 | 2021-11-03T09:04:56 | 2021-11-03T09:04:56 | 422,517,121 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,561 | java | package conectors;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class JDBC {
public static void main (String[]args) {
try {
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/prueba","root","root");
Statement stmnt= con.createStatement();
ResultSet rs = stmnt.executeQuery("SELECT * FROM persona");
while (rs.next())
System.out.println(rs.getInt(1)+ " "+ rs.getInt(2)+ " "+ rs.getString(3)+ " "+ rs.getString(4)+ " "+ rs.getInt(5));
stmnt.execute("DROP TABLE IF EXISTS animal");
stmnt.execute("CREATE TABLE animal (id INT AUTO_INCREMENT PRIMARY KEY, Nombre CHAR(50), Especie CHAR(50))");
stmnt.executeUpdate("INSERT INTO animal (Nombre, Especie) VALUES "
+ "('Delf�n', 'Mam�fero'),"
+ "('Iguana','Reptil'),"
+ "('Rana','Anfibio'),"
+ "('Nutria', 'Mamifero')");
ResultSet rs1 = stmnt.executeQuery("SELECT * FROM animal");
System.out.println("\n");
System.out.println("---------");
while (rs1.next())
System.out.println(rs1.getInt(1)+ " "+ rs1.getString(2)+ " "+ rs1.getString(3));
stmnt.executeUpdate("UPDATE animal SET Nombre = 'Rat�n' WHERE id = 4");
ResultSet rs2 = stmnt.executeQuery("SELECT * FROM animal");
System.out.println("---------");
while (rs2.next())
System.out.println(rs2.getInt(1)+ " "+ rs2.getString(2)+ " "+ rs2.getString(3));
con.close();
}
catch (SQLException e) {
e.printStackTrace();
}
}
}
| [
"[email protected]"
] | |
707d0d93aa871cf69f5c97e688cf8a261e9811af | d89231d50c18d2be72d2b5cf0f410e93dd7f91b2 | /JavaTheCompleteReference9thEd/Part-II-TheJavaLibrary/ch16/SetCharAtDemo.java | 067b02f8910c72a3886e3b4edabf0444cb1d1e66 | [] | no_license | whediger/java | 08ff71181e463dc2fb5209df41246843a9567d80 | e0c97b5b88056cada8d1f477aba685a7bbab6b4b | refs/heads/master | 2020-07-01T08:14:43.268732 | 2017-01-06T04:09:48 | 2017-01-06T04:09:48 | 74,090,410 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 383 | java |
class SetCharAtDemo {
public static void main(String[] args) {
StringBuffer sb = new StringBuffer("Hello");
System.out.println("buffer before: " + sb);
System.out.println("charAt(1) before " + sb.charAt(1));
sb.setCharAt(1, 'i');
sb.setLength(2);
System.out.println("buffer after " + sb);
System.out.println("charAt(1) after " + sb.charAt(1));
}
}
| [
"[email protected]"
] | |
34db5024e2ce17e4c1adfa549bdffb46447b532d | 84c4e2cc207c66db1132ec88f617713a9ea0f288 | /src/java/org/jax/mgi/mtb/wi/actions/MGDAlleleIDAction.java | 852e23379850f010d8a2418934f8ebf4921c6e10 | [] | no_license | mgijax/mtb-wi | 07c75977a45231c8bf416de44baa38ce6896d321 | 6bc362b266f6c13f4ccde8202ddecb07fd0e159f | refs/heads/master | 2023-08-03T12:46:59.242072 | 2023-07-31T20:42:56 | 2023-07-31T20:42:56 | 123,622,808 | 1 | 1 | null | 2020-11-17T17:09:54 | 2018-03-02T19:40:11 | Java | UTF-8 | Java | false | false | 2,013 | 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 org.jax.mgi.mtb.wi.actions;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.logging.log4j.Logger;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.jax.mgi.mtb.dao.custom.mtb.MTBGeneticsUtilDAO;
/**
*
* @author sbn
*/
public class MGDAlleleIDAction extends Action {
/**
* Provide a list of Alleles for MMHCdb strains so MGI knows if they should create a link to us
*
* @param mapping the action mapping that determines where we need to go
* @param form the form bean
* @param request standard servlet request
* @param response standard servlet response
* @return the ActionForward object that indicates where to go
* @throws Exception if the application business logic throws an exception
* @see org.apache.struts.action.ActionMapping
* @see org.apache.struts.action.ActionForm
* @see javax.servlet.http.HttpServletRequest
* @see javax.servlet.http.HttpServletResponse
*/
public ActionForward execute(ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response)
throws Exception {
response.setContentType("text");
StringBuilder ids = new StringBuilder();
List<String> results = MTBGeneticsUtilDAO.getInstance().getStrainAlleleIDs();
for(String id :results){
ids.append(id).append("\n");
}
response.getWriter().write(ids.toString());
return null;
}
}
| [
"[email protected]"
] | |
035fdd61d837ebf7a0b14199bd4c775b2c14b780 | 425563aabeac3117b3f29a9b20cdbaa3cdc37b4d | /VariablenTypen/TestPrimObj.java | bd618df39e047364c67b9e684055baf47d637312 | [] | no_license | mmm999/VorlesungOOP | 0c7cf95c253ab198d36245deb1b08fbeb025d9b0 | 78698ac723f1bdb1db71f48fca6713e1010f5b3f | refs/heads/master | 2020-04-07T03:41:53.158233 | 2018-11-17T21:43:58 | 2018-11-17T21:43:58 | 26,122,052 | 0 | 0 | null | 2016-05-11T16:41:04 | 2014-11-03T14:27:57 | Java | UTF-8 | Java | false | false | 570 | java | package VariablenTypen;
//import VariablenTypen.PrimObj;
/**
*
* @author mutz
*/
public class TestPrimObj {
public static void main(String[] args) {
PrimObj k1 = new PrimObj();
PrimObj k2 = new PrimObj();
double wert = 1.0;
System.out.println("prim Variable davor: "+wert);
k1.primitiverAufruf(wert);
System.out.println("prim Variable danach: "+wert);
System.out.println("obj Variable davor: "+k2.wert);
k1.objektAufruf(k2);
System.out.println("obj Variable danach: "+k2.wert);
}
}
| [
"[email protected]"
] | |
a411ce7afc25b7b2a98f546642e39aa7ea0b341d | 3c0c8986490b2671e50b789ec6a283b7175e2d0f | /src/main/java/week10d02/MaxTravel.java | 03b9cbb0e4d13d2d301033353f13422d516a8a9f | [] | no_license | dallara81/training-solutions | c02d37d9f2a52c1708403b15403f50a7418fd761 | 434ec91be23fd7ee2f069694ad11d9077b0e3847 | refs/heads/master | 2023-03-25T02:59:18.782183 | 2021-03-19T21:54:44 | 2021-03-19T21:54:44 | 312,081,560 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 905 | java | package week10d02;
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;
public class MaxTravel {
public int getMaxIndex(List<Integer> stations) {
if (stations == null || stations.size() < 1) {
throw new IllegalArgumentException("Heh, lista? B*szod!");
}
List<Integer> sortStations = new ArrayList<>(stations);
Collections.sort(sortStations);
int maxstationNumber = sortStations.get(0);
int maxStart = 0;
for (int i = 0; i < 30; i++) {
int max = 0;
for (Integer station : stations) {
if (station == i) {
max++;
if (max > maxStart) {
maxStart = max;
maxstationNumber = i;
}
}
}
}
return maxstationNumber;
}
} | [
"[email protected]"
] | |
6271fb39baa2834f7ec80cb9ddb4011109f3d632 | 24fb767f37329c768b12681d7ca4978b36890b5a | /bin/custom/b2c/b2cstorefront/web/src/de/hybris/b2c/storefront/web/view/UiExperienceViewResolver.java | 6be92ce1d355e2808dd4b3126f661769caef9ed2 | [] | no_license | pavananumoju/hybrisb2c | 1f21c941e22f368a81f03d407be086fb50f2a558 | 42d0a7298a0e5661e1bf9550a29ae54cc7d416e9 | refs/heads/master | 2023-06-30T09:26:19.536330 | 2021-08-01T13:24:16 | 2021-08-01T13:24:16 | 391,633,987 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,933 | java | /*
* [y] hybris Platform
*
* Copyright (c) 2017 SAP SE or an SAP affiliate company. All rights reserved.
*
* This software is the confidential and proprietary information of SAP
* ("Confidential Information"). You shall not disclose such Confidential
* Information and shall use it only in accordance with the terms of the
* license agreement you entered into with SAP.
*/
package de.hybris.b2c.storefront.web.view;
import de.hybris.platform.acceleratorservices.uiexperience.UiExperienceService;
import de.hybris.platform.acceleratorstorefrontcommons.controllers.pages.AbstractPageController;
import de.hybris.platform.commerceservices.enums.UiExperienceLevel;
import java.util.Locale;
import java.util.Map;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Required;
import org.springframework.web.servlet.view.AbstractUrlBasedView;
import org.springframework.web.servlet.view.InternalResourceView;
import org.springframework.web.servlet.view.InternalResourceViewResolver;
/**
* A view resolver that detects the device a request is coming from and directs it to the appropriate view. This view
* resolver extends Spring's org.springframework.web.servlet.view.InternalResourceViewResolver.
*/
public class UiExperienceViewResolver extends InternalResourceViewResolver
{
private static final Logger LOG = Logger.getLogger(UiExperienceViewResolver.class);
private static final String ADDON = "addon:";
private UiExperienceService uiExperienceService;
public Map<UiExperienceLevel, String> uiExperienceViewPrefix;
private String unknownUiExperiencePrefix;
private String addOnPrefix;
protected UiExperienceService getUiExperienceService()
{
return uiExperienceService;
}
@Required
public void setUiExperienceService(final UiExperienceService uiExperienceService)
{
this.uiExperienceService = uiExperienceService;
}
public Map<UiExperienceLevel, String> getUiExperienceViewPrefix()
{
return uiExperienceViewPrefix;
}
@Required
public void setUiExperienceViewPrefix(final Map<UiExperienceLevel, String> uiExperienceViewPrefix)
{
this.uiExperienceViewPrefix = uiExperienceViewPrefix;
}
protected String getUnknownUiExperiencePrefix()
{
return unknownUiExperiencePrefix;
}
@Required
public void setUnknownUiExperiencePrefix(final String unknownUiExperiencePrefix)
{
this.unknownUiExperiencePrefix = unknownUiExperiencePrefix;
}
protected String getAddOnPrefix()
{
return addOnPrefix;
}
@Required
public void setAddOnPrefix(final String addOnPrefix)
{
this.addOnPrefix = addOnPrefix;
}
@Override
protected Object getCacheKey(final String viewName, final Locale locale)
{
// Incorporate the UiExperienceLevel into the view cache
return super.getCacheKey(viewName, locale) + "_" + getUiExperienceService().getUiExperienceLevel().getCode();
}
@Override
protected AbstractUrlBasedView buildView(final String viewName) throws Exception
{
final UiExperienceLevel uiExperienceLevel = getUiExperienceService().getUiExperienceLevel();
final String expandedViewName = getViewName(uiExperienceLevel, viewName);
if (LOG.isDebugEnabled())
{
LOG.debug("Expanded View Name [" + viewName + "] into [" + expandedViewName + "]");
}
final InternalResourceView view = (InternalResourceView) super.buildView(expandedViewName);
view.setAlwaysInclude(false);
return view;
}
public String getViewName(final UiExperienceLevel uiExperienceLevel, final String viewName)
{
String properViewName = viewName;
final String prefix = getUiExperienceViewPrefix().get(uiExperienceLevel);
if (prefix != null)
{
if (viewName.startsWith(AbstractPageController.PAGE_ROOT + ADDON))
{
properViewName = viewName.replace(AbstractPageController.PAGE_ROOT + ADDON, ADDON); // ...pages/addon:/<extension-name>/.../<component-view>....->....addon:/<extension-name>/.../<component-view>
}
if (properViewName.startsWith(ADDON))
{
properViewName = properViewName.replace(ADDON, ""); // ................................addon:/<extension-name>/cms/<component-view>....->..../<extension-name>/cms/<component-view>
properViewName = properViewName.substring(1, properViewName.length()); // ....................../<extension-name>/cms/<component-view>..........->....<extension-name>/cms/<component-view>
final String extensionName = properViewName.substring(0, properViewName.indexOf('/')); // <extension-name>/cms/<component-view>...........->....<extension-name>
properViewName = properViewName.substring(properViewName.indexOf('/'), properViewName.length()); // ..<extension-name>/cms/<component-view>...........->..../cms/<component-view>
return getAddOnPrefix() + "/" + extensionName + "/" + prefix + properViewName; // ..<addon-prefix>/<extension-name>/<ui-prefix>/cms/<component-view>
}
return prefix + properViewName;
}
return getUnknownUiExperiencePrefix() + properViewName;
}
}
| [
"[email protected]"
] | |
dbf85cc61fc9551257493fcf408ef2ca524bbd97 | 37183c5b978cc28004514542b622e3e90be58a95 | /Models/Animated/ModelGearbox4.java | e07bac0bb5f9d3f2d5abe65766835f38ddf6421d | [] | no_license | ruki260/RotaryCraft | 4ae81ce65396965fbab641f054d2f275fb1f0e68 | 9fa1cbd03bbe2a0793d8a28d8d41de77b1b16fb4 | refs/heads/master | 2021-01-22T01:50:55.229160 | 2013-11-16T07:07:01 | 2013-11-16T07:07:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,974 | java | /*******************************************************************************
* @author Reika Kalseki
*
* Copyright 2013
*
* All rights reserved.
* Distribution of the software in any form is only allowed with
* explicit, prior permission from the owner.
******************************************************************************/
// Date: 17/02/2013 2:01:13 AM
// Template version 1.1
// Java generated by Techne
// Keep in mind that you still need to fill in some blanks
// - ZeuX
package Reika.RotaryCraft.Models.Animated;
import java.util.List;
import net.minecraft.client.model.ModelRenderer;
import org.lwjgl.opengl.GL11;
import Reika.RotaryCraft.Base.RotaryModelBase;
public class ModelGearbox4 extends RotaryModelBase
{
//fields
ModelRenderer Shape1;
ModelRenderer Shape2;
ModelRenderer Shape3;
ModelRenderer Shape4;
ModelRenderer Shape5;
ModelRenderer Shape6;
ModelRenderer Shape7;
ModelRenderer Shape8;
ModelRenderer Shape9;
ModelRenderer Shape10;
ModelRenderer Shape11;
ModelRenderer Shape12;
ModelRenderer Shape13;
ModelRenderer Shape14;
ModelRenderer Shape15;
ModelRenderer Shape16;
ModelRenderer Shape17;
ModelRenderer Shape18;
ModelRenderer Shape19;
ModelRenderer Shape20;
ModelRenderer Shape21;
ModelRenderer Shape22;
ModelRenderer Shape23;
ModelRenderer Shape24;
ModelRenderer Shape25;
ModelRenderer Shape26;
ModelRenderer Shape27;
ModelRenderer Shape28;
ModelRenderer Shape29;
ModelRenderer Shape30;
ModelRenderer Shape31;
ModelRenderer Shape32;
ModelRenderer Shape33;
ModelRenderer Shape34;
ModelRenderer Shape35;
public ModelGearbox4()
{
textureWidth = 128;
textureHeight = 32;
Shape1 = new ModelRenderer(this, 0, 0);
Shape1.addBox(0F, 0F, 0F, 16, 1, 16);
Shape1.setRotationPoint(-8F, 23F, -8F);
Shape1.setTextureSize(128, 32);
Shape1.mirror = true;
this.setRotation(Shape1, 0F, 0F, 0F);
Shape2 = new ModelRenderer(this, 64, 0);
Shape2.addBox(0F, 0F, 0F, 1, 12, 16);
Shape2.setRotationPoint(7F, 11F, -8F);
Shape2.setTextureSize(128, 32);
Shape2.mirror = true;
this.setRotation(Shape2, 0F, 0F, 0F);
Shape2.mirror = false;
Shape3 = new ModelRenderer(this, 64, 0);
Shape3.addBox(0F, 0F, 0F, 1, 12, 16);
Shape3.setRotationPoint(-8F, 11F, -8F);
Shape3.setTextureSize(128, 32);
Shape3.mirror = true;
this.setRotation(Shape3, 0F, 0F, 0F);
Shape3.mirror = false;
Shape4 = new ModelRenderer(this, 0, 17);
Shape4.addBox(0F, 0F, 0F, 14, 4, 1);
Shape4.setRotationPoint(-7F, 19F, 7F);
Shape4.setTextureSize(128, 32);
Shape4.mirror = true;
this.setRotation(Shape4, 0F, 0F, 0F);
Shape4.mirror = false;
Shape5 = new ModelRenderer(this, 0, 17);
Shape5.addBox(0F, 0F, 0F, 14, 4, 1);
Shape5.setRotationPoint(-7F, 19F, -8F);
Shape5.setTextureSize(128, 32);
Shape5.mirror = true;
this.setRotation(Shape5, 0F, 0F, 0F);
Shape5.mirror = false;
Shape6 = new ModelRenderer(this, 30, 17);
Shape6.addBox(0F, 0F, 0F, 1, 3, 1);
Shape6.setRotationPoint(6F, 16F, 7F);
Shape6.setTextureSize(128, 32);
Shape6.mirror = true;
this.setRotation(Shape6, 0F, 0F, 0F);
Shape6.mirror = false;
Shape7 = new ModelRenderer(this, 30, 17);
Shape7.addBox(0F, 0F, 0F, 1, 3, 1);
Shape7.setRotationPoint(6F, 16F, -8F);
Shape7.setTextureSize(128, 32);
Shape7.mirror = true;
this.setRotation(Shape7, 0F, 0F, 0F);
Shape7.mirror = false;
Shape8 = new ModelRenderer(this, 30, 17);
Shape8.addBox(0F, 0F, 0F, 1, 3, 1);
Shape8.setRotationPoint(-7F, 16F, 7F);
Shape8.setTextureSize(128, 32);
Shape8.mirror = true;
this.setRotation(Shape8, 0F, 0F, 0F);
Shape8.mirror = false;
Shape9 = new ModelRenderer(this, 30, 17);
Shape9.addBox(0F, 0F, 0F, 1, 3, 1);
Shape9.setRotationPoint(-7F, 16F, -8F);
Shape9.setTextureSize(128, 32);
Shape9.mirror = true;
this.setRotation(Shape9, 0F, 0F, 0F);
Shape9.mirror = false;
Shape10 = new ModelRenderer(this, 42, 17);
Shape10.addBox(0F, 0F, 0F, 1, 3, 10);
Shape10.setRotationPoint(7F, 8F, -5F);
Shape10.setTextureSize(128, 32);
Shape10.mirror = true;
this.setRotation(Shape10, 0F, 0F, 0F);
Shape10.mirror = false;
Shape11 = new ModelRenderer(this, 42, 17);
Shape11.addBox(0F, 0F, 0F, 1, 3, 10);
Shape11.setRotationPoint(-8F, 8F, -5F);
Shape11.setTextureSize(128, 32);
Shape11.mirror = true;
this.setRotation(Shape11, 0F, 0F, 0F);
Shape11.mirror = false;
Shape12 = new ModelRenderer(this, 0, 27);
Shape12.addBox(0F, 0F, 0F, 4, 2, 2);
Shape12.setRotationPoint(-8.5F, 15F, -1F);
Shape12.setTextureSize(128, 32);
Shape12.mirror = true;
this.setRotation(Shape12, 0F, 0F, 0F);
Shape12.mirror = false;
Shape13 = new ModelRenderer(this, 0, 27);
Shape13.addBox(0F, 0F, 0F, 4, 2, 2);
Shape13.setRotationPoint(-8.5F, 16F, -1.4F);
Shape13.setTextureSize(128, 32);
Shape13.mirror = true;
this.setRotation(Shape13, 0.7853982F, 0F, 0F);
Shape13.mirror = false;
Shape14 = new ModelRenderer(this, 100, 0);
Shape14.addBox(0F, 0F, 0F, 1, 4, 4);
Shape14.setRotationPoint(-5F, 15.5F, -5.7F);
Shape14.setTextureSize(128, 32);
Shape14.mirror = true;
this.setRotation(Shape14, 0F, 0F, 0F);
Shape15 = new ModelRenderer(this, 100, 0);
Shape15.addBox(0F, 0F, 0F, 1, 4, 4);
Shape15.setRotationPoint(-5F, 17.5F, -6.5F);
Shape15.setTextureSize(128, 32);
Shape15.mirror = true;
this.setRotation(Shape15, 0.8028515F, 0F, 0F);
Shape16 = new ModelRenderer(this, 100, 0);
Shape16.addBox(0F, 0F, 0F, 1, 6, 6);
Shape16.setRotationPoint(-4F, 11.4F, 0.8F);
Shape16.setTextureSize(128, 32);
Shape16.mirror = true;
this.setRotation(Shape16, 0F, 0F, 0F);
Shape17 = new ModelRenderer(this, 100, 0);
Shape17.addBox(0F, 0F, 0F, 1, 6, 6);
Shape17.setRotationPoint(-4F, 14.5F, -0.5F);
Shape17.setTextureSize(128, 32);
Shape17.mirror = true;
this.setRotation(Shape17, 0.7853982F, 0F, 0F);
Shape18 = new ModelRenderer(this, 100, 0);
Shape18.addBox(0F, 0F, 0F, 1, 3, 3);
Shape18.setRotationPoint(-5F, 14.5F, 2F);
Shape18.setTextureSize(128, 32);
Shape18.mirror = true;
this.setRotation(Shape18, 0.7853982F, 0F, 0F);
Shape19 = new ModelRenderer(this, 100, 0);
Shape19.addBox(0F, 0F, 0F, 1, 3, 3);
Shape19.setRotationPoint(-5F, 13F, 2.5F);
Shape19.setTextureSize(128, 32);
Shape19.mirror = true;
this.setRotation(Shape19, 0F, 0F, 0F);
Shape19.mirror = false;
Shape20 = new ModelRenderer(this, 0, 27);
Shape20.addBox(0F, 0F, 0F, 10, 2, 2);
Shape20.setRotationPoint(-5F, 16.5F, -4.6F);
Shape20.setTextureSize(128, 32);
Shape20.mirror = true;
this.setRotation(Shape20, 0F, 0F, 0F);
Shape21 = new ModelRenderer(this, 0, 27);
Shape21.addBox(0F, 0F, 0F, 10, 2, 2);
Shape21.setRotationPoint(-5F, 17.5F, -5F);
Shape21.setTextureSize(128, 32);
Shape21.mirror = true;
this.setRotation(Shape21, 0.7853982F, 0F, 0F);
Shape22 = new ModelRenderer(this, 100, 0);
Shape22.addBox(0F, 0F, 0F, 1, 4, 4);
Shape22.setRotationPoint(5F, 12.4F, 1.8F);
Shape22.setTextureSize(128, 32);
Shape22.mirror = true;
this.setRotation(Shape22, 0F, 0F, 0F);
Shape23 = new ModelRenderer(this, 100, 0);
Shape23.addBox(0F, 0F, 0F, 1, 4, 4);
Shape23.setRotationPoint(5F, 14.5F, 1F);
Shape23.setTextureSize(128, 32);
Shape23.mirror = true;
this.setRotation(Shape23, 0.7853982F, 0F, 0F);
Shape24 = new ModelRenderer(this, 0, 27);
Shape24.addBox(0F, 0F, 0F, 3, 2, 2);
Shape24.setRotationPoint(5.5F, 15F, -1F);
Shape24.setTextureSize(128, 32);
Shape24.mirror = true;
this.setRotation(Shape24, 0F, 0F, 0F);
Shape25 = new ModelRenderer(this, 0, 27);
Shape25.addBox(0F, 0F, 0F, 3, 2, 2);
Shape25.setRotationPoint(5.5F, 16F, -1.4F);
Shape25.setTextureSize(128, 32);
Shape25.mirror = true;
this.setRotation(Shape25, 0.7853982F, 0F, 0.0174533F);
Shape26 = new ModelRenderer(this, 100, 0);
Shape26.addBox(0F, 0F, 0F, 1, 4, 4);
Shape26.setRotationPoint(5F, 15.5F, -5.5F);
Shape26.setTextureSize(128, 32);
Shape26.mirror = true;
this.setRotation(Shape26, 0F, 0F, 0F);
Shape27 = new ModelRenderer(this, 100, 0);
Shape27.addBox(0F, 0F, 0F, 1, 4, 4);
Shape27.setRotationPoint(5F, 17.5F, -6.5F);
Shape27.setTextureSize(128, 32);
Shape27.mirror = true;
this.setRotation(Shape27, 0.7853982F, 0F, 0F);
Shape28 = new ModelRenderer(this, 100, 19);
Shape28.addBox(0F, 0F, 0F, 2, 7, 3);
Shape28.setRotationPoint(0F, 16F, -5F);
Shape28.setTextureSize(128, 32);
Shape28.mirror = true;
this.setRotation(Shape28, 0F, 0F, 0F);
Shape29 = new ModelRenderer(this, 100, 19);
Shape29.addBox(0F, 0F, 0F, 2, 10, 3);
Shape29.setRotationPoint(0F, 13F, 2.4F);
Shape29.setTextureSize(128, 32);
Shape29.mirror = true;
this.setRotation(Shape29, 0F, 0F, 0F);
Shape30 = new ModelRenderer(this, 0, 27);
Shape30.addBox(0F, 0F, 0F, 8, 2, 2);
Shape30.setRotationPoint(-3F, 14.5F, 2.5F);
Shape30.setTextureSize(128, 32);
Shape30.mirror = true;
this.setRotation(Shape30, 0.7853982F, 0F, 0F);
Shape31 = new ModelRenderer(this, 0, 27);
Shape31.addBox(0F, 0F, 0F, 8, 2, 2);
Shape31.setRotationPoint(-3F, 13.5F, 3F);
Shape31.setTextureSize(128, 32);
Shape31.mirror = true;
this.setRotation(Shape31, 0F, 0F, 0F);
Shape32 = new ModelRenderer(this, 100, 0);
Shape32.addBox(0F, 0F, 0F, 1, 4, 4);
Shape32.setRotationPoint(5F, 14F, -2F);
Shape32.setTextureSize(128, 32);
Shape32.mirror = true;
this.setRotation(Shape32, 0F, 0F, 0F);
Shape33 = new ModelRenderer(this, 100, 0);
Shape33.addBox(0F, 0F, 0F, 1, 4, 4);
Shape33.setRotationPoint(5F, 16F, -3F);
Shape33.setTextureSize(128, 32);
Shape33.mirror = true;
this.setRotation(Shape33, 0.7853982F, 0F, 0F);
Shape34 = new ModelRenderer(this, 100, 0);
Shape34.addBox(0F, 0F, 0F, 1, 4, 4);
Shape34.setRotationPoint(-5F, 14F, -2F);
Shape34.setTextureSize(128, 32);
Shape34.mirror = true;
this.setRotation(Shape34, 0F, 0F, 0F);
Shape35 = new ModelRenderer(this, 100, 0);
Shape35.addBox(0F, 0F, 0F, 1, 4, 4);
Shape35.setRotationPoint(-5F, 16F, -3F);
Shape35.setTextureSize(128, 32);
Shape35.mirror = true;
this.setRotation(Shape35, 0.8028515F, 0F, 0F);
}
@Override
public void renderAll(List li, float phi)
{
Shape1.render(f5);
Shape2.render(f5);
Shape3.render(f5);
Shape4.render(f5);
Shape5.render(f5);
Shape6.render(f5);
Shape7.render(f5);
Shape8.render(f5);
Shape9.render(f5);
Shape10.render(f5);
Shape11.render(f5);
Shape28.render(f5);
Shape29.render(f5);
Shape30.render(f5);
Shape31.render(f5);
double d1 = 0;
double d2 = 1.092;
double d3 = -0.224;
GL11.glTranslated(0, 0.0625, 0.006125);
GL11.glTranslated(d1, d2, d3);
GL11.glRotatef(-phi*1.25F, 1, 0, 0);
GL11.glTranslated(-d1, -d2, -d3);
Shape20.render(f5);
Shape21.render(f5);
Shape26.render(f5);
Shape27.render(f5);
Shape14.render(f5);
Shape15.render(f5);
GL11.glTranslated(d1, d2, d3);
GL11.glRotatef(phi*1.25F, 1, 0, 0);
GL11.glTranslated(-d1, -d2, -d3);
GL11.glTranslated(0, -0.0625, -0.006125);
d1 = 0;
d2 = 0.9025;
d3 = 0.25;
GL11.glTranslated(0, 0.015125, -0.006125);
GL11.glTranslated(d1, d2, d3);
GL11.glRotatef(-phi*1.25F, 1, 0, 0);
GL11.glTranslated(-d1, -d2, -d3);
Shape22.render(f5);
Shape23.render(f5);
Shape16.render(f5);
Shape17.render(f5);
Shape18.render(f5);
Shape19.render(f5);
GL11.glTranslated(d1, d2, d3);
GL11.glRotatef(phi*1.25F, 1, 0, 0);
GL11.glTranslated(-d1, -d2, -d3);
GL11.glTranslated(0, -0.015125, 0.006125);
GL11.glTranslated(0, 1, 0);
GL11.glRotatef(phi*1.25F, 1, 0, 0);
GL11.glTranslated(0, -1, 0);
Shape24.render(f5);
Shape25.render(f5);
Shape32.render(f5);
Shape33.render(f5);
GL11.glTranslated(0, 1, 0);
GL11.glRotatef(-phi*1.25F, 1, 0, 0);
GL11.glTranslated(0, -1, 0);
GL11.glTranslated(0, 1, 0);
GL11.glRotatef(phi, 1, 0, 0);
GL11.glTranslated(0, -1, 0);
Shape12.render(f5);
Shape13.render(f5);
Shape34.render(f5);
Shape35.render(f5);
GL11.glTranslated(0, 1, 0);
GL11.glRotatef(-phi, 1, 0, 0);
GL11.glTranslated(0, -1, 0);
}
}
| [
"[email protected]"
] | |
e67cd3bb4d4cf45cb532b706b51d465537127d98 | a85098e56503fe527759ecae1339a583c718e99b | /src/observer/pattern/demo3/IObserver.java | 017d35427e677baffbbb5cc3b8e965e519fb1a00 | [] | no_license | ajengs/JavaDesignPatterns | a15ba4a15d96f5eb25828dcb501f33f1653022a6 | d5f8102acd534f46f7115e3e22b55fb7902932d4 | refs/heads/master | 2021-05-04T00:20:43.488743 | 2018-02-07T11:28:40 | 2018-02-07T11:28:40 | 120,409,056 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 105 | java | package observer.pattern.demo3;
public interface IObserver {
void update(String message, int value);
}
| [
"[email protected]"
] | |
9211ea81c007d1738fe33b8538c92134156c65d8 | 4066ecc3886c2f4d3abf0540be20579803b82f19 | /app/src/main/java/com/example/studia/projekt/DodawanieActivity.java | eb3385eca4caaff39dec99f22fb7fe63f87da6b4 | [] | no_license | Michal230170/Database-master2-master | 9538f2abffc3d170c18936e63a68709a59fedb6e | efc1630bfa80b310080304809c995ca425415f2d | refs/heads/master | 2020-04-09T10:50:29.687853 | 2018-12-04T02:29:52 | 2018-12-04T02:29:52 | 160,284,459 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,881 | java | package com.example.studia.projekt;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.text.InputType;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import com.example.studia.projekt.db.AppDatabase;
import com.example.studia.projekt.db.model.FieldRecord;
import com.example.studia.projekt.utils.AppExecutors;
import java.util.Calendar;
public class DodawanieActivity extends AppCompatActivity {
private AppDatabase database;
private TextView editTextDate;
private TextView editTextArea;
private TextView editTextPlant;
private TextView editTextSubstance;
private TextView editTextUsage;
private TextView editTextDose;
private EditText getEditTextArea;
private EditText getEditSubstance;
private EditText getEditUsage;
private EditText getEditDose;
private int userId;
private int fieldId;
private int recordFieldsId;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dodawanie);
database = AppDatabase.getInstance(getApplicationContext());
//userId = getIntent().getIntExtra("userId", 0);
fieldId = getIntent().getIntExtra("fieldId", 0);
editTextArea = findViewById(R.id.editTextNumber);
editTextArea.setOnClickListener(new View.OnClickListener() { //budowanie dialogu
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(DodawanieActivity.this);
builder.setTitle("Wpisz obszar [ha]");
// nowy edit text do dialog
getEditTextArea = new EditText(DodawanieActivity.this);
getEditTextArea.setInputType(InputType.TYPE_CLASS_NUMBER); //klawiatura numeryczna
builder.setView(getEditTextArea);
/// przycisk pozytywny
builder.setPositiveButton("Zatwierdź", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
//String txt = getEditTextArea.getText().toString();
editTextArea.setText(getEditTextArea.getText().toString() + "ha");
}
});
/// przycisk negatywny
builder.setNegativeButton("Anuluj", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
});
AlertDialog dialog = builder.create();
dialog.show();
}
});
editTextSubstance = findViewById(R.id.editTextName);
editTextSubstance.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(DodawanieActivity.this);
builder.setTitle("Wpisz nazwę środka");
//edit text do alertDialog
getEditSubstance = new EditText(DodawanieActivity.this);
builder.setView(getEditSubstance);
builder.setPositiveButton("Zatwierdź", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
//String txt = getEditTextArea.getText().toString();
editTextSubstance.setText(getEditSubstance.getText().toString());
}
});
/// przycisk negatywny
builder.setNegativeButton("Anuluj", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
});
AlertDialog dialog = builder.create();
dialog.show();
}
});
editTextUsage = findViewById(R.id.editTextUsage);
editTextUsage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(DodawanieActivity.this);
builder.setTitle("Wpisz powód użycia środka");
getEditUsage = new EditText(DodawanieActivity.this);
builder.setView(getEditUsage);
builder.setPositiveButton("Zatwierdź", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
editTextUsage.setText(getEditUsage.getText().toString());
}
});
builder.setNegativeButton("Anuluj", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
});
AlertDialog dialog = builder.create();
dialog.show();
}
});
editTextDose = findViewById(R.id.editTextDose);
editTextDose.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(DodawanieActivity.this);
builder.setTitle("Wpisz powód użycia środka");
getEditDose = new EditText(DodawanieActivity.this);
builder.setView(getEditDose);
builder.setPositiveButton("Zatwierdź", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
editTextDose.setText(getEditDose.getText().toString() + "l/ha");
}
});
builder.setNegativeButton("Anuluj", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
});
AlertDialog dialog = builder.create();
dialog.show();
}
});
/////////////// KALENDARZ DO USTAWIANIA DATY W DODAWANIU REKORDÓW
Calendar calendar = Calendar.getInstance();
final int Day = calendar.get(Calendar.DAY_OF_MONTH);
final int Month = calendar.get(Calendar.MONTH);
final int Year = calendar.get(Calendar.YEAR);
editTextDate = findViewById(R.id.editTextDate);
editTextDate.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
com.wdullaer.materialdatetimepicker.date.DatePickerDialog dialog = com.wdullaer.materialdatetimepicker.date.DatePickerDialog
.newInstance(
new com.wdullaer.materialdatetimepicker.date.DatePickerDialog.OnDateSetListener() {
@Override
public void onDateSet(
com.wdullaer.materialdatetimepicker.date.DatePickerDialog view, int year,
int monthOfYear, int dayOfMonth) {
String strDate = dayOfMonth + "/" + (monthOfYear + 1) + "/" + year;
editTextDate.setText(strDate);
}
}, Year, Month, Day);
dialog.show(getFragmentManager(), "DatePickerDialog");
}
});
////////////////////////////KONIEC KALENDARZA
}
public void roslina(View view) {
final CharSequence[] kategorie = {"pszenica", "jęczmień", "żyto", "rzepak", "kukurydza"};
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Wybierz roślinę");
editTextPlant = findViewById(R.id.editTextArea);
builder.setItems(kategorie, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
String strDate;
strDate = kategorie[which].toString();
editTextPlant.setText(strDate);
}
});
builder.create();
builder.show();
}
public void addFieldRecord(View view) {
if (editTextDate.getText().toString().equals("") || editTextArea.getText().toString().equals("")
|| editTextPlant.getText().toString().equals("") || editTextSubstance.getText().toString()
.equals("") ||
editTextUsage.getText().toString().equals("") || editTextDose.getText().toString()
.equals("")) {
Toast.makeText(this, "Uzupełnij pola",
Toast.LENGTH_SHORT).show();
} else {
AppExecutors.getInstance().diskIO().execute(new Runnable() {
@Override
public void run() {
FieldRecord fieldRecord = new FieldRecord(editTextDate.getText().toString(),
editTextArea.getText().toString(),
editTextPlant.getText().toString(), editTextSubstance.getText().toString(),
editTextUsage.getText().toString(),
editTextDose.getText().toString(), fieldId );
database.fieldDao().insert(fieldRecord);
}
});
Toast.makeText(this, "Zapisano",
Toast.LENGTH_SHORT).show();
Intent intent = new Intent(DodawanieActivity.this, MainActivity.class);
intent.putExtra("fieldId", fieldId);
startActivity(intent);
finish();
}
}
}
| [
"[email protected]"
] | |
1fc3e94e4781f76fc71d15d448eea3574f3f1d8a | 9e65425bea5f23bee31d6a0ae7f91db67a3bf175 | /achievementdiary/SkillRequirement.java | c15d1806aa50693394cdd85ba1f0caccfea5d01f | [] | no_license | gunnermaster/ae | a63164d15ebf86d348133c65ea12aba0e5ef9cdc | 5665e749d64953ad23638e893f6687ba8ad2cbf9 | refs/heads/master | 2020-08-06T17:36:29.957229 | 2019-10-06T01:49:55 | 2019-10-06T01:49:55 | 213,095,041 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,778 | java | /*
* Copyright (c) 2019 Abex
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package net.runelite.client.plugins.achievementdiary;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import net.runelite.api.Skill;
@RequiredArgsConstructor
@Getter
public class SkillRequirement implements Requirement
{
private final Skill skill;
private final int level;
@Override
public String toString()
{
return level + " " + skill.getName();
}
}
| [
"[email protected]"
] | |
e2edb16b987c4aebedbb5ad1686646245ed95d6a | f63afe58eb20043b08911dd3e95c8f45ac6b8e84 | /src/main/java/frc/robot/commands/SetShooterData.java | 52b587bef850c238f52cc5fe9f28131802a41d60 | [] | no_license | TheTriSonics/InfiniteRecharge | ae7ab9271625f8169c4ff46badad5452af1a948e | 6e2296c60d62a479d131ade9a8b82672f154ccd1 | refs/heads/master | 2021-07-12T04:43:35.475309 | 2021-03-09T00:59:39 | 2021-03-09T00:59:39 | 240,136,519 | 1 | 0 | null | 2020-02-13T01:05:47 | 2020-02-12T23:26:02 | Java | UTF-8 | Java | false | false | 1,143 | java | // Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
package frc.robot.commands;
import edu.wpi.first.wpilibj2.command.CommandBase;
import frc.robot.Robot;
public class SetShooterData extends CommandBase {
double hoodTarget;
int shooterSpeed;
public SetShooterData(double target, int speed) {
hoodTarget = target;
shooterSpeed = speed;
// Use requires() here to declare subsystem dependencies
// eg. requires(chassis);
}
// Called just before this Command runs the first time
@Override
public void initialize() {
Robot.turret.setHoodTarget(hoodTarget);
Robot.shooter.setShooterVelocity(shooterSpeed);
}
// Called repeatedly when this Command is scheduled to run
@Override
public void execute() {}
// Make this return true when this Command no longer needs to run execute()
@Override
public boolean isFinished() {
return true;
}
// Called once after isFinished returns true
@Override
public void end(boolean interrupted) {}
}
| [
"[email protected]"
] | |
a6076d0496454738c0502838a6778cb505a6ad4f | 86fc0ca60c81fb4eebba3a33b79110cd33ae8f5f | /lab4-eureka/client/src/main/java/lab4/client/Client.java | 8823d88d1af57801083ec6e3a0dceab3b2004b95 | [] | no_license | tobiajo/microservices-spring | d6426a9e634e07032b1fb77287ffb8405d2fed92 | 3b2f8069795f4eff5226fb128417077f3d7448e5 | refs/heads/master | 2021-01-11T03:38:11.477631 | 2017-10-05T20:27:21 | 2017-10-05T20:27:21 | 69,972,308 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 389 | java | package lab4.client;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@SpringBootApplication
@EnableDiscoveryClient
public class Client {
public static void main(String[] args) {
SpringApplication.run(Client.class, args);
}
}
| [
"[email protected]"
] | |
9ddfad553383fc513481881389c4b8afda824300 | 02065b72e16bcc761b86e80502cef6eda29a10d1 | /gaja/WepProject/src/main/java/gaja/project/domain/pageing.java | 3a30f88453885c59f3af2eee90fbb12bd09fb938 | [] | no_license | ChoiSiJune/GajaProject | 1141cd335e15c81eac0ca2f091c4c2861dadb1e6 | 7133342dbaaa90b65bbca08454c7cbb68d83e3fc | refs/heads/master | 2022-12-23T07:06:32.071510 | 2019-08-12T08:20:14 | 2019-08-12T08:20:14 | 201,884,602 | 0 | 0 | null | 2022-12-16T11:55:23 | 2019-08-12T07:59:24 | Java | UTF-8 | Java | false | false | 1,100 | java | package gaja.project.domain;
public class pageing {
private int page; //현재 목록 페이지번호
private int perPageNum; // 몇개씩 보여줄껀지의 번호
private String searchType;
private String keyword;
public pageing() {
this.page = 1;
this.perPageNum = 10;
}
public int getPage() {
return page;
}
public void setPage(int page) {
if(page <=0) {
this.page=1;
return;
}
this.page=page;
}
public int getPerPageNum() {
return perPageNum;
}
public void setPerPageNum(int perPageNum) {
if(perPageNum<=0 || perPageNum>100) {
this.perPageNum = 10;
return;
}
this.perPageNum = perPageNum;
}
public int getPageStart() {
return (this.page - 1) * perPageNum;
}
public String getSearchType() {
return searchType;
}
public void setSearchType(String searchType) {
this.searchType = searchType;
}
public String getKeyword() {
return keyword;
}
public void setKeyword(String keyword) {
this.keyword = keyword;
}
}
| [
"[email protected]"
] | |
bf88f480dc4f0167cf75bc16ff4f6ab261cf76bf | cdfc476ac9f80cfe832de69bdd7a9ed778123731 | /src/main/java/com/lucasloose/appfooturestars/resources/exceptions/StandardError.java | 3e2840cb0646e46eb013ced839aec2d7721b4756 | [] | no_license | lucasG3Sistemas/AppFootureStars | 543c93348cdbb9f828a83851694db0f529645436 | 22120839c6b4a005999c6aafd6bd983b72c2729f | refs/heads/master | 2021-06-17T09:17:19.533964 | 2019-11-29T22:29:27 | 2019-11-29T22:29:27 | 198,844,386 | 1 | 0 | null | 2021-04-26T19:35:15 | 2019-07-25T14:13:58 | Java | UTF-8 | Java | false | false | 1,164 | java | package com.lucasloose.appfooturestars.resources.exceptions;
import java.io.Serializable;
public class StandardError implements Serializable {
private static final long serialVersionUID = 1L;
private Long timestamp;
private Integer status;
private String error;
private String message;
private String path;
public StandardError(Long timestamp, Integer status, String error, String message, String path) {
super();
this.timestamp = timestamp;
this.status = status;
this.error = error;
this.message = message;
this.path = path;
}
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
} | [
"[email protected]"
] | |
825ed707a317b68faf9a3f3f924462c28abf91e3 | 30b8b8e678b2f22eb853f7f14a646232d7eba6d8 | /ProjectoTribunal/src/tribunal/controler/usersload.java | 06c038e14715407bb1381cd4206b1181ea6e176e | [] | no_license | RuiFernandes/Tribunal-dos-Menores | 38fbbe75cae57d0a2980ea673d3fff51c0ab2e64 | bfb94a0708a6924968e59fad178fe8b3cbb6b854 | refs/heads/master | 2020-05-30T14:46:13.279115 | 2016-09-15T19:59:08 | 2016-09-15T19:59:08 | 61,491,288 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,103 | java | package tribunal.controler;
import java.util.HashMap;
import java.util.List;
import org.apache.poi.util.SystemOutLogger;
import org.zkoss.bind.annotation.Command;
import org.zkoss.bind.annotation.Init;
import org.zkoss.zhtml.Map;
import org.zkoss.zk.ui.Executions;
import org.zkoss.zk.ui.Sessions;
import org.zkoss.zk.ui.util.Clients;
import tribunal.custom.TribunalDAO;
import tribunal.entities.Usuario;
public class usersload {
private int index;
private Usuario selected;
private List<Usuario> userList=new TribunalDAO(TribunalDAO.class).getAllUsuarios(false);;
private String pass;
//public String password=selected.getPassword();
public String getPass() {
return pass;
}
public void setPass(String pass) {
this.pass = pass;
}
public int getIndex() {
return index;
}
public void setIndex(int index) {
this.index = index;
}
@Init
public void init(){
}
@Command
public void autenticar(){
if (selected.getPassword().equals(pass)) {
Clients.showNotification("worked");
//HashMap<String, Object> map= new HashMap<>();
//map.put("user", selected);
Sessions.getCurrent().setAttribute("user", selected);
Executions.getCurrent().sendRedirect("../index.zul");
System.out.println(Executions.getCurrent().getContextPath());
} else{
Clients.showNotification("failed");
}
}
@Command
public void autenticar2(){
if (selected.getPassword().equals(pass)) {
Clients.showNotification("worked");
//HashMap<String, Object> map= new HashMap<>();
//map.put("user", selected);
Sessions.getCurrent().setAttribute("user", selected);
Executions.getCurrent().sendRedirect("./index.zul");
System.out.println(Executions.getCurrent().getContextPath());
} else{
Clients.showNotification("failed");
}
}
public Usuario getSelected() {
return selected;
}
public void setSelected(Usuario selected) {
this.selected = selected;
}
public List<Usuario> getUserList() {
return userList;
}
public void setUserList(List<Usuario> userList) {
this.userList = userList;
}
}
| [
"[email protected]"
] | |
488a3fc1a848e452042b82c62625149475cc372c | b603497e793d08c681d1e178eddfa0288d7ca9c5 | /RestSismos/src/main/java/com/ApiRest/RestSismosApplication.java | 92ef4e3378ef9a05070b2aaf4f90764aae4266d9 | [] | no_license | xtramann1/Rest-Paralelas | 5be69cd852856953bd20d9a47713854b69496702 | 722bc491fca7a4a72927709f6c9bdb6e27cac6e2 | refs/heads/master | 2023-07-11T18:42:46.259951 | 2021-07-28T18:27:19 | 2021-07-28T18:27:19 | 385,097,038 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 313 | java | package com.ApiRest;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class RestSismosApplication {
public static void main(String[] args) {
SpringApplication.run(RestSismosApplication.class, args);
}
}
| [
"[email protected]"
] | |
44f19022925ad605bdeaeeeeb614dcbc2a1db948 | 9364ec899f9f7b9ece0758ebe5f9953cfbfb3ef3 | /src/main/java/pothi_discord/managers/GuildAudioManager.java | cc4d92989305f70b9bfee16714ad3ea605743578 | [] | no_license | p0thi/pothi_discord_music | c364cf64e5534f535b13eaf6bebaa4748aa6e958 | 46834a8a93fc47bbd214e117866e6562b963ea7f | refs/heads/master | 2021-01-22T21:06:58.922997 | 2018-10-21T13:36:34 | 2018-10-21T13:36:34 | 85,389,789 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 398 | java | package pothi_discord.managers;
import com.sedmelluq.discord.lavaplayer.player.AudioPlayer;
import pothi_discord.handlers.AudioPlayerSendHandler;
import pothi_discord.listeners.TrackScheduler;
/**
* Created by Pascal Pothmann on 27.03.2017.
*/
public interface GuildAudioManager {
AudioPlayer getPlayer();
AudioPlayerSendHandler getSendHandler();
TrackScheduler getScheduler();
}
| [
"[email protected]"
] | |
bab995c0e1c0a6c2f1f98cb70317c875b8bde74d | 6e789030055536896a41f7cf45ea2402011da206 | /app/src/main/java/licttrainer/ttinnovations/batchschedule/GetSetTrainer.java | 76c7bff720393869ff21bbe9dde4219d3ced5b7d | [] | no_license | tbarua1/BatchSchedule | 433c9479a77c84a6c65df853f9aab66d34c3d6c3 | a521393e191fca8782b212f5965e963c86067995 | refs/heads/master | 2021-01-22T20:55:02.288163 | 2017-03-18T05:24:53 | 2017-03-18T05:24:53 | 85,377,909 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,525 | java | package licttrainer.ttinnovations.batchschedule;
/**
*
* @author tarun
*/
public class GetSetTrainer{
private static final long serialVersionUID = 1L;
private Long id;
private String username, password, usertype;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUsertype() {
return usertype;
}
public void setUsertype(String usertype) {
this.usertype = usertype;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
@Override
public int hashCode() {
int hash = 0;
hash += (id != null ? id.hashCode() : 0);
return hash;
}
@Override
public boolean equals(Object object) {
// TODO: Warning - this method won't work in the case the id fields are not set
if (!(object instanceof GetSetTrainer)) {
return false;
}
GetSetTrainer other = (GetSetTrainer) object;
if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) {
return false;
}
return true;
}
@Override
public String toString() {
return "com.tarkesh.entity.GetSetTrainer[ id=" + id + " ]";
}
}
| [
"[email protected]"
] | |
c2f94a689ef266bdd2491b59128303d74be52e48 | ce93995e96f554cfd587702b17d43f575c36a437 | /Samples/java工作空间/Java教程/src/Chapter8/ThreadExample8.java | d28fc0d25ebf0f12d7517f83d563df9783d6592f | [] | no_license | inetfun/JavaBasic | a2738d8b50a164e4fca6c0c79f45cf8986ee2c5e | 915ae675ba9c282584a03e93230d47cd93089ec1 | refs/heads/master | 2021-05-30T20:27:57.240205 | 2016-03-23T14:26:37 | 2016-03-23T14:26:37 | null | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 620 | java | // ThreadExample8.java
package Chapter8;
class MyThread7 implements Runnable {
private int count = 0; // 定义共享变量count
public void run() {
test();
}
private synchronized void test() {
for (int i = 0; i < 5; i++) {
count++;
Thread.yield(); // 线程让步
count--;
System.out.print(count + " "); // 输出count的值
}
}
}
public class ThreadExample8 {
public static void main(String[] args) throws InterruptedException {
MyThread7 t = new MyThread7();
Thread t1 = new Thread(t);
Thread t2 = new Thread(t);
t1.start(); // 启动线程t1
t2.start(); // 启动线程t2
}
}
| [
"[email protected]"
] | |
61a81ec773f1f37d48e6408666ff90c9c5f2f131 | 94bd29994a3f016bbc690741ed5077f8955ca791 | /src/main/java/com/example/demo/enteties/Delivary.java | 402febcf0214fb57b03c0fe7c24dc8780863141a | [] | no_license | mjweather/Ecommerce1 | 4de2d9852cda121b13ca32f1d24ba8e705e0cb27 | 8c1d6113c4b56ab2ec3a687868314fc65816502a | refs/heads/master | 2023-05-08T06:36:32.569579 | 2021-05-28T19:15:21 | 2021-05-28T19:15:21 | 371,798,036 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,019 | java | package com.example.demo.enteties;
import javax.persistence.*;
import javax.validation.constraints.NotNull;
import java.util.Date;
@Entity
public class Delivary {
@Id
private int delivar_id;
@NotNull
private Date delivary_time;
/* @ManyToOne
private Employee employee;*/
@OneToOne(cascade=CascadeType.ALL)
private Payment payment;
public int getDelivar_id() {
return delivar_id;
}
public void setDelivar_id(int delivar_id) {
this.delivar_id = delivar_id;
}
public Date getDelivary_time() {
return delivary_time;
}
public void setDelivary_time(Date delivary_time) {
this.delivary_time = delivary_time;
}
public Payment getPayment() {
return payment;
}
public void setPayment(Payment payment) {
this.payment = payment;
}
/*public Employee getEmployee() {
return employee;
}
public void setEmployee(Employee employee) {
this.employee = employee;
}*/
}
| [
"[email protected]"
] | |
e95ef1047c43b26ea9ac9a15839143b3bb2f9336 | a1b1ba5400b2ecac4853e74cd624af0a64f93ff6 | /java/com/certainty/hr/service/DepartmentServiceImpl.java | 58fc450dfaf018792023a00d562ee46b22912867 | [] | no_license | yuvaansinhal/certaintyhr | b64884e9e15934be4d448097220e907502c8821f | bdae058859942b95444878def0cde843d1afdbec | refs/heads/master | 2020-03-06T14:59:39.524233 | 2018-03-27T07:36:20 | 2018-03-27T07:36:20 | 126,944,268 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,992 | java | package com.certainty.hr.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.certainty.hr.dao.DepartmentDAO;
import com.certainty.hr.model.Department;
/**
* Service class implementing methods to access Department data using DAO
* methods
*
*
*/
@Service
@Transactional
public class DepartmentServiceImpl implements DepartmentService {
@Autowired
private DepartmentDAO departmentDAO;
/**
* Setting the autowired Department DAO passed from Application Context
*
* @param departmentDAO
* the Department DAO to set
*/
public void setDepartmentDAO(DepartmentDAO departmentDAO) {
this.departmentDAO = departmentDAO;
}
/**
* To add a new Department
*
* @param department
* detail of a new department
*/
@Override
public void addDepartment(Department department) {
this.departmentDAO.addDepartment(department);
}
/**
* To update an existing department
*
* @param department
* detail of an existing department
*/
@Override
public void updateDepartment(Department department) {
this.departmentDAO.updateDepartment(department);
}
/**
* To get the list of all departments
*
* @return list of all the departments
*/
@Override
public List<Department> listDepartments() {
return this.departmentDAO.listDepartments();
}
/**
* To get a department based on department id
*
* @param id
* id of an existing department
* @return department of an existing department
*/
@Override
public Department getDepartmentByID(int id) {
return this.departmentDAO.getDepartmentByID(id);
}
/**
* To delete a department based on department id
*
* @param id
* id of an existing department
*/
@Override
public void removeDepartment(int id) {
this.departmentDAO.removeDepartment(id);
}
}
| [
"[email protected]"
] | |
6bbae61210e12adc4096075da86cf6592d539859 | 718c2ecb5d3fa5f1a7123addb6ab41b72b730ef1 | /src/lesson33ConsoleMenu/User.java | 7ca5cd605f173ef7150dd679a57ca30fcd40e409 | [] | no_license | BittahMenace/YarSJava | db7bed990716e353463f58ab4876f03fdf7ecea7 | 7e26db8aba9780d2bf5ea48d5f1d534a717e06f5 | refs/heads/master | 2020-03-23T10:54:02.559114 | 2018-07-18T17:55:27 | 2018-07-18T17:55:27 | 141,468,674 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,577 | java | package lesson33ConsoleMenu;
import java.io.Serializable;
import java.time.LocalDate;
public class User implements Serializable {
private static final long SerialVersionUID = 100L;
private static int nextID = 1000;
private int id;
private String login;
private String password;
private LocalDate created;
public User() {
setId();
this.login = "login";
this.password = "password";
this.created = LocalDate.now();
}
public User( String login, String password, LocalDate created) {
setId();
this.login = login;
this.password = password;
this.created = created;
}
public int getId() {
return id;
}
// public void setId(int id) {
// this.id = id;
// }
private void setId() {
this.id = nextID;
nextID++;
}
public String getLogin() {
return login;
}
public void setLogin(String login) {
this.login = login;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public LocalDate getCreated() {
return created;
}
public void setCreated(LocalDate created) {
this.created = created;
}
@Override
public String toString() {
return "User{" +
"id=" + id +
", login='" + login + '\'' +
", password='" + password + '\'' +
", created=" + created +
'}';
}
}
| [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.