blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 332 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 7 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 557
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M โ | star_events_count int64 0 77.7k | fork_events_count int64 0 48k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 82
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 7 5.41M | extension stringclasses 11
values | content stringlengths 7 5.41M | authors listlengths 1 1 | author stringlengths 0 161 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0f3be01f8aa950ba2740bcf400e5fe4d6970ed22 | be457457e0ef74ba69543de13e3e064eab4b0ec1 | /JaBaeProject/JaBaeProject/src/JaBae/admin/Main/Mgt/MemberManagement.java | e7c5028c3367652ee8169bbb3009716562e16c4a | [] | no_license | codingdobby/JavaProject-delivery | 091f6ebb3081e972ef0b9624ca647fd9cfb4b3e1 | dfea501181717843e5823dac172237cd65a15407 | refs/heads/master | 2021-08-02T10:35:46.489700 | 2021-07-21T15:33:13 | 2021-07-21T15:33:13 | 213,139,025 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,719 | java | /*
* w.์ด์น์ฐ
* */
package JaBae.admin.Main.Mgt;
import java.awt.BorderLayout;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JLabel;
import javax.swing.JTextField;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JTable;
import javax.swing.JScrollBar;
import javax.swing.JScrollPane;
import javax.swing.ScrollPaneConstants;
import javax.swing.table.DefaultTableModel;
import JaBae.admin.EventAction.MemberEventAction.MemberEventClass;
import JaBae.admin.Main.AdminMain;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Vector;
import javax.swing.JRadioButton;
import javax.swing.ListSelectionModel;
import java.awt.Component;
import java.awt.ScrollPane;
public class MemberManagement extends JFrame {
private JPanel contentPane;
private JTextField tfName;
private JTextField tfId;
private JTable tableCustomer;
private JTable tableSeller;
Vector titleCustomer = null, titleSeller = null;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
MemberManagement frame = new MemberManagement();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public MemberManagement() {
setTitle("์๋ฐฐ ํ๋ฐฐ");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(900,650);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(new BorderLayout(0, 0));
JPanel panelNorth = new JPanel();
contentPane.add(panelNorth, BorderLayout.NORTH);
panelNorth.setLayout(new GridLayout(2, 0, 0, 0));
JPanel panelSwitch = new JPanel();
panelNorth.add(panelSwitch);
ButtonGroup bg = new ButtonGroup();
JPanel panelBack = new JPanel();
panelBack.setBorder(new EmptyBorder(0, 0, 0, 300));
panelSwitch.add(panelBack);
JButton btnBack = new JButton("โ");
panelBack.add(btnBack);
JPanel panelRdbtn = new JPanel();
panelRdbtn.setBorder(new EmptyBorder(0, 0, 0, 350));
panelSwitch.add(panelRdbtn);
JRadioButton rdbtnCustomer = new JRadioButton("ํ์");
panelRdbtn.add(rdbtnCustomer);
rdbtnCustomer.setSelected(true);
bg.add(rdbtnCustomer);
JRadioButton rdbtnSeller = new JRadioButton("ํ๋งค์");
panelRdbtn.add(rdbtnSeller);
bg.add(rdbtnSeller);
/****************************************************************/
JPanel panelSearch = new JPanel();
panelNorth.add(panelSearch);
JLabel lblId = new JLabel("์์ด๋");
panelSearch.add(lblId);
tfId = new JTextField();
panelSearch.add(tfId);
tfId.setColumns(10);
JLabel lblName = new JLabel("์ด๋ฆ");
panelSearch.add(lblName);
tfName = new JTextField();
panelSearch.add(tfName);
tfName.setColumns(10);
JButton btnSearch = new JButton("๊ฒ์");
panelSearch.add(btnSearch);
/*********************************************************************************/
JPanel panelShowTable = new JPanel();
contentPane.add(panelShowTable, BorderLayout.CENTER);
panelShowTable.setLayout(new GridLayout(0, 1, 0, 0));
JScrollPane spTable = new JScrollPane();
spTable.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER);
panelShowTable.add(spTable);
/******************ํ์ ํ
์ด๋ธ******************************************************/
titleCustomer = new Vector<>();
titleCustomer.add("์์ด๋"); titleCustomer.add("์ด๋ฆ");
titleCustomer.add("์๋
์์ผ"); titleCustomer.add("๊ฐ์
์ผ"); titleCustomer.add("๋ง์ง๋ง ๋ฐฐ์ก ์๋ฃ ๋ ์ง");
titleCustomer.add("ํฌ์ธํธ");
DefaultTableModel modelCustomer = new DefaultTableModel(titleCustomer, 0);
tableCustomer = new JTable(modelCustomer);
tableCustomer.getTableHeader().setReorderingAllowed(false);
spTable.setViewportView(tableCustomer);
/******************ํ๋งค์ ํ
์ด๋ธ******************************************************/
titleSeller = new Vector<>();
titleSeller.add("์์ด๋"); titleSeller.add("์ด๋ฆ");
titleSeller.add("๊ฐ์
์ผ"); titleSeller.add("์ ๊ธฐ๊ถ");
DefaultTableModel modelSeller = new DefaultTableModel(titleSeller, 0);
tableSeller = new JTable(modelSeller);
tableSeller.getTableHeader().setReorderingAllowed(false);
/*******************ActionListener******************************************************/
btnSearch.addActionListener(new MemberEventClass(tfId, tfName, rdbtnCustomer, rdbtnSeller, modelCustomer, modelSeller));
rdbtnSeller.addActionListener(new ActionListener() { //ํ๋งค์ ์ฐฝ์ ์ ํํ์ ๋
public void actionPerformed(ActionEvent e) {
panelShowTable.removeAll();
panelShowTable.revalidate();
panelShowTable.repaint();
panelShowTable.add(spTable);
spTable.setViewportView(tableSeller);
}
});
rdbtnCustomer.addActionListener(new ActionListener() {//์ฌ์ฉ์ ์ฐฝ์ ์ ํํ์ ๋
@Override
public void actionPerformed(ActionEvent e) {
if(rdbtnCustomer.isSelected()) {
panelShowTable.removeAll();
panelShowTable.revalidate();
panelShowTable.repaint();
panelShowTable.add(spTable);
spTable.setViewportView(tableCustomer);
}
}
});
btnBack.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
AdminMain newwin = new AdminMain();
newwin.setVisible(true);
dispose();
}
});
setLocationRelativeTo(null);
}//end
}
| [
"ch30825@naver.com"
] | ch30825@naver.com |
0d1275857c08b71189407a7759c347650001024c | c7ebb36ae32aaad2489c751611f4d856fb86abd0 | /app/src/androidTest/java/edu/neu/madcourse/numad21su_tahseenhameed/ExampleInstrumentedTest.java | 47faeedc08b62e9578542ba420a32890de9a8703 | [] | no_license | tahseen31/MADApplication | c9e5d8db4eecec417a930a7e5af46a42c7eff6cd | ef145237ade6d8da83d5669908f538659674e3c0 | refs/heads/A1 | 2023-06-12T05:18:39.175110 | 2021-06-12T06:26:35 | 2021-06-12T06:26:35 | 366,914,334 | 0 | 0 | null | 2021-06-12T06:26:35 | 2021-05-13T02:42:29 | Java | UTF-8 | Java | false | false | 796 | java | package edu.neu.madcourse.numad21su_tahseenhameed;
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("edu.neu.madcourse.numad21su_tahseenhameed", appContext.getPackageName());
}
} | [
"63615375+tahseen31@users.noreply.github.com"
] | 63615375+tahseen31@users.noreply.github.com |
b60577d4847ae80ae076091e238c06528ff601bc | 5c3830cc28f219805a9482e35be880b2c3258b69 | /consumer-node2/src/main/java/com/example/consumernode2/controller/ConsumerController.java | e1f976966e9a6bd33e2478f3f560cc4e6eede9be | [] | no_license | SideGreenHand/spring-cloud-hystrix | a7920aed99461f0055b431bc9a324fe8ed1259a3 | 1daf4de9e959e482f283b2f39f85e3cc475ef637 | refs/heads/master | 2020-04-12T09:55:55.427637 | 2018-12-19T09:25:51 | 2018-12-19T09:25:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 557 | java | package com.example.consumernode2.controller;
import com.example.consumernode2.client.HelloClient;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
@RestController
public class ConsumerController {
@Resource
HelloClient helloClient;
@RequestMapping("/hello/{name}")
public String index(@PathVariable String name){
return helloClient.hello2(name);
}
}
| [
"jiaoW526@163.com"
] | jiaoW526@163.com |
6a2f9f959ef1830ef9598a49d0ab925dca09a6c1 | 790a17ecd117b9e7ada35fdf279c8925d2a45363 | /app/src/androidTest/java/calculator/a1311511032/mobileprogramming/com/calculator/ExampleInstrumentedTest.java | 0e71e9f3629e2481e9b7e35b127dc09d4e09d934 | [] | no_license | danihamdani25/uts_moprog | e47b8b9ce9276fea9849aae76382a6c2dd597a1b | e9182d8672133d962e365e93c0629646d412532a | refs/heads/master | 2020-03-21T12:59:24.362625 | 2018-06-25T10:51:50 | 2018-06-25T10:51:50 | 138,582,021 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 811 | java | package calculator.a1311511032.mobileprogramming.com.calculator;
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.*;
/**
* 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() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("calculator.a1311511032.mobileprogramming.com.calculator", appContext.getPackageName());
}
}
| [
"supri1703@gmail.com"
] | supri1703@gmail.com |
c9fa170f46e1fc7659c180028d5d85ba4407dedf | 0983a239db29e1cab99cbcaab158585c34019536 | /src/plo/web/admin/entity/User.java | 750e89ffe62e9bd23ba93c70514b3e829a8208d5 | [] | no_license | wany0530/PLO | 9a5a260ee7ddf27d6e4612fc2fb1269596998210 | d6a340ea570f0dbc7a198f493bf971c2daa17e11 | refs/heads/main | 2023-04-18T09:22:17.484332 | 2021-05-02T14:31:59 | 2021-05-02T14:31:59 | 351,773,269 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,408 | java | package plo.web.admin.entity;
import java.util.Date;
public class User {
private int u_no;
private String u_id;
private String u_pass;
private String u_name;
private String u_mail;
private Date u_date;
public User() {
// TODO Auto-generated constructor stub
}
public User(int u_no, String u_id, String u_pass, String u_name, String u_mail) {
super();
this.u_no = u_no;
this.u_id = u_id;
this.u_pass = u_pass;
this.u_name = u_name;
this.u_mail = u_mail;
}
public User(int u_no, String u_id, String u_pass, String u_name, String u_mail, Date u_date) {
super();
this.u_no = u_no;
this.u_id = u_id;
this.u_pass = u_pass;
this.u_name = u_name;
this.u_mail = u_mail;
this.u_date = u_date;
}
public int getU_no() {
return u_no;
}
public void setU_no(int u_no) {
this.u_no = u_no;
}
public String getU_id() {
return u_id;
}
public void setU_id(String u_id) {
this.u_id = u_id;
}
public String getU_pass() {
return u_pass;
}
public void setU_pass(String u_pass) {
this.u_pass = u_pass;
}
public String getU_name() {
return u_name;
}
public void setU_name(String u_name) {
this.u_name = u_name;
}
public String getU_mail() {
return u_mail;
}
public void setU_mail(String u_mail) {
this.u_mail = u_mail;
}
public Date getU_date() {
return u_date;
}
public void setU_date(Date u_date) {
this.u_date = u_date;
}
}
| [
"ljw6398@hanmail.net"
] | ljw6398@hanmail.net |
abd7d394b33f56603032316f8e4a09c64e5f4b5d | bbbe8e8e6353dcd8ca0a05d64572b25c928301d8 | /app/src/main/java/http/AllFriendData.java | 5d87ddcbc20c243ba46ae913eb47fde278dc36b7 | [] | no_license | heXiangpeng/suiyue | ef25fd67942d10c2e161bfb43d838ee42396b35a | 9a130698d62f54677defdd73bf2c6eb8f8b7faac | refs/heads/master | 2021-01-01T18:54:16.634491 | 2015-12-10T07:28:37 | 2015-12-10T07:28:37 | 42,166,005 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 123 | java | package http;
/**
* Created by hexiangpeng on 15/6/10.
* ไฟๅญๆๆ็็จๆทไฟกๆฏ
*/
public class AllFriendData {
}
| [
"1483767097@qq.com"
] | 1483767097@qq.com |
545130689e5f52aafaef1bd9a1fdfbdbdd85015e | a3b5a63731b3ee83c1143a521912c7bd89430080 | /src/team9/viewer/dialog/ShowClassScheduleDialog.java | 48a87856a38078dbf2af29dad44d2a1749800802 | [] | no_license | yunJ35/jiaowuxitong | 3a60b3f3dfbacf689ef739e1640e7a76b12ca10f | 1b0b63dbcfd8fce787c7e90f2b2f367ea35ce015 | refs/heads/master | 2020-04-15T15:15:22.889778 | 2019-01-16T10:37:30 | 2019-01-16T10:37:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,276 | java | package team9.viewer.dialog;
import java.awt.Color;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Vector;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.ListSelectionModel;
import javax.swing.SwingConstants;
import javax.swing.border.Border;
import javax.swing.border.TitledBorder;
import team9.control.utils.DButils;
import team9.model.ClassScheduleInfo;
import team9.model.ScreenSize;
@SuppressWarnings("serial")
public class ShowClassScheduleDialog extends JDialog implements SwingConstants {
private JPanel p, p2;
private JTable table1, table2;
private JScrollPane sp1, sp2;
private Border border, titled;
private Vector<String> columnNames1, columnNames2;
private Vector<Vector<Object>> tableValue1, tableValue2;
public ShowClassScheduleDialog(JFrame f) {
super(f, " ไฟฎๆน็ญ็บงไฟกๆฏ", true);
ImageIcon icon = new ImageIcon("lib/images/Settings.png");
this.setIconImage(icon.getImage());
p = new JPanel(null);
p2 = new JPanel(null);
border = BorderFactory.createLineBorder(Color.lightGray, 3);
titled = BorderFactory.createTitledBorder(border, " ่ฏพ่กจไฟกๆฏ ", TitledBorder.LEFT, TitledBorder.TOP,
new Font("ๅฎไฝ", Font.PLAIN, 20), Color.black);
sp1 = new JScrollPane();
sp2 = new JScrollPane();
columnNames1 = new Vector<>();
columnNames1.add("ๅบๅท");
columnNames1.add("็ญ็บง็ผๅท");
columnNames1.add("ๅญฆๆ");
columnNames1.add("ๆๆไธ็ฌฌไธ่");
columnNames1.add("ๆๆไธ็ฌฌไบ่");
columnNames1.add("ๆๆไธ็ฌฌไธ่");
columnNames1.add("ๆๆไธ็ฌฌๅ่");
columnNames1.add("ๆๆไบ็ฌฌไธ่");
columnNames1.add("ๆๆไบ็ฌฌไบ่");
columnNames1.add("ๆๆไบ็ฌฌไธ่");
columnNames1.add("ๆๆไบ็ฌฌๅ่");
columnNames1.add("ๆๆไธ็ฌฌไธ่");
columnNames1.add("ๆๆไธ็ฌฌไบ่");
columnNames2 = new Vector<>();
columnNames2.add("ๅบๅท");
columnNames2.add("็ญ็บง็ผๅท");
columnNames2.add("ๅญฆๆ");
columnNames2.add("ๆๆไธ็ฌฌไธ่");
columnNames2.add("ๆๆไธ็ฌฌๅ่");
columnNames2.add("ๆๆๅ็ฌฌไธ่");
columnNames2.add("ๆๆๅ็ฌฌไบ่");
columnNames2.add("ๆๆๅ็ฌฌไธ่");
columnNames2.add("ๆๆๅ็ฌฌๅ่");
columnNames2.add("ๆๆไบ็ฌฌไธ่");
columnNames2.add("ๆๆไบ็ฌฌไบ่");
columnNames2.add("ๆๆไบ็ฌฌไธ่");
columnNames2.add("ๆๆไบ็ฌฌๅ่");
tableValue1 = new Vector<>();
tableValue2 = new Vector<>();
JLabel lblClassId = new JLabel("็ญ็บงid:", RIGHT);
JLabel lblSemester = new JLabel("ๅญฆๆ:", RIGHT);
JTextField txtClassId = new JTextField(20);
JTextField txtSemester = new JTextField(10);
JButton btnQuery = new JButton(" ๆฅ่ฏข ");
JButton btnRefresh = new JButton(" ๅทๆฐ ");
tableShow();
btnQuery.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String classId = txtClassId.getText();
String semester = txtSemester.getText();
try {
tableValue1.clear();
tableValue2.clear();
int n = 1;
for (ClassScheduleInfo classScheduleInfo : DButils.getClassScheduleInfoFromFuzzyQuery(classId,
semester)) {
try {
Vector<Object> rowValue1 = new Vector<>();
Vector<Object> rowValue2 = new Vector<>();
rowValue1.add(n);
rowValue1.add(classScheduleInfo.getClassId());
rowValue1.add(classScheduleInfo.getSemester());
rowValue1.add(classScheduleInfo.getMonNo1());
rowValue1.add(classScheduleInfo.getMonNo2());
rowValue1.add(classScheduleInfo.getMonNo3());
rowValue1.add(classScheduleInfo.getMonNo4());
rowValue1.add(classScheduleInfo.getTueNo1());
rowValue1.add(classScheduleInfo.getTueNo2());
rowValue1.add(classScheduleInfo.getTueNo3());
rowValue1.add(classScheduleInfo.getTueNo4());
rowValue1.add(classScheduleInfo.getWedNo1());
rowValue1.add(classScheduleInfo.getWedNo2());
tableValue1.add(rowValue1);
rowValue2.add(n);
rowValue2.add(classScheduleInfo.getClassId());
rowValue2.add(classScheduleInfo.getSemester());
rowValue2.add(classScheduleInfo.getWedNo3());
rowValue2.add(classScheduleInfo.getWedNo4());
rowValue2.add(classScheduleInfo.getThursNo1());
rowValue2.add(classScheduleInfo.getThursNo2());
rowValue2.add(classScheduleInfo.getThursNo3());
rowValue2.add(classScheduleInfo.getThursNo4());
rowValue2.add(classScheduleInfo.getFriNo1());
rowValue2.add(classScheduleInfo.getFriNo2());
rowValue2.add(classScheduleInfo.getFriNo3());
rowValue2.add(classScheduleInfo.getFriNo4());
tableValue2.add(rowValue2);
n++;
} catch (Exception e2) {
}
}
table1 = new JTable(tableValue1, columnNames1);
table2 = new JTable(tableValue1, columnNames2);
for (int i = 0; i < 13; i++) {
table1.getColumnModel().getColumn(i).setPreferredWidth(getSize().width / 13);
table1.getColumnModel().getColumn(i).setMinWidth(100);
table2.getColumnModel().getColumn(i).setPreferredWidth(getSize().width / 13);
table2.getColumnModel().getColumn(i).setMinWidth(100);
}
table1.getTableHeader().setFont(new Font("้ปไฝ", Font.PLAIN, 20));
table1.setFont(new Font("ๅฎไฝ", Font.PLAIN, 20));
table1.setRowHeight(30);
table1.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
sp1.setViewportView(table1);
table2.getTableHeader().setFont(new Font("้ปไฝ", Font.PLAIN, 20));
table2.setFont(new Font("ๅฎไฝ", Font.PLAIN, 20));
table2.setRowHeight(30);
table2.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
sp2.setViewportView(table2);
p.updateUI();
} catch (Exception e2) {
} finally {
table1.updateUI();
table2.updateUI();
}
}
});
btnRefresh.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
txtClassId.setText("");
txtSemester.setText("");
tableShow();
}
});
lblClassId.setFont(new Font("ๅฎไฝ", Font.PLAIN, 20));
lblSemester.setFont(new Font("ๅฎไฝ", Font.PLAIN, 20));
txtClassId.setFont(new Font("ๅฎไฝ", Font.PLAIN, 20));
txtSemester.setFont(new Font("ๅฎไฝ", Font.PLAIN, 20));
btnQuery.setFont(new Font("ๅฎไฝ", Font.PLAIN, 20));
btnRefresh.setFont(new Font("ๅฎไฝ", Font.PLAIN, 20));
lblClassId.setBounds(10, 10, 70, 35);
txtClassId.setBounds(80, 10, 100, 35);
lblSemester.setBounds(190, 10, 70, 35);
txtSemester.setBounds(260, 10, 100, 35);
btnQuery.setBounds(370, 10, 100, 35);
btnRefresh.setBounds(480, 10, 100, 35);
this.setSize(ScreenSize.WIDTH, ScreenSize.HEIGHT);
p.setSize(this.getSize().width, this.getSize().height);
p2.setBounds(0, 50, p.getSize().width, p.getSize().height - 50);
sp1.setBounds(0, 0, p2.getSize().width, p2.getSize().height / 2);
sp2.setBounds(0, p2.getSize().height / 2, p2.getSize().width, p2.getSize().height / 2);
p2.setBorder(titled);
p2.add(sp1);
p2.add(sp2);
p.add(lblClassId);
p.add(lblSemester);
p.add(txtClassId);
p.add(txtSemester);
p.add(btnQuery);
p.add(btnRefresh);
p.add(p2);
this.add(p);
this.pack();
this.setSize(ScreenSize.WIDTH, ScreenSize.HEIGHT);
this.setResizable(false);
this.setLocationRelativeTo(null);
}
private void tableShow() {
try {
tableValue1.clear();
tableValue2.clear();
int n = 1;
for (ClassScheduleInfo classScheduleInfo : DButils.getAllClassScheduleInfoList()) {
try {
Vector<Object> rowValue1 = new Vector<>();
Vector<Object> rowValue2 = new Vector<>();
rowValue1.add(n);
rowValue1.add(classScheduleInfo.getClassId());
rowValue1.add(classScheduleInfo.getSemester());
rowValue1.add(classScheduleInfo.getMonNo1());
rowValue1.add(classScheduleInfo.getMonNo2());
rowValue1.add(classScheduleInfo.getMonNo3());
rowValue1.add(classScheduleInfo.getMonNo4());
rowValue1.add(classScheduleInfo.getTueNo1());
rowValue1.add(classScheduleInfo.getTueNo2());
rowValue1.add(classScheduleInfo.getTueNo3());
rowValue1.add(classScheduleInfo.getTueNo4());
rowValue1.add(classScheduleInfo.getWedNo1());
rowValue1.add(classScheduleInfo.getWedNo2());
tableValue1.add(rowValue1);
rowValue2.add(n);
rowValue2.add(classScheduleInfo.getClassId());
rowValue2.add(classScheduleInfo.getSemester());
rowValue2.add(classScheduleInfo.getWedNo3());
rowValue2.add(classScheduleInfo.getWedNo4());
rowValue2.add(classScheduleInfo.getThursNo1());
rowValue2.add(classScheduleInfo.getThursNo2());
rowValue2.add(classScheduleInfo.getThursNo3());
rowValue2.add(classScheduleInfo.getThursNo4());
rowValue2.add(classScheduleInfo.getFriNo1());
rowValue2.add(classScheduleInfo.getFriNo2());
rowValue2.add(classScheduleInfo.getFriNo3());
rowValue2.add(classScheduleInfo.getFriNo4());
tableValue2.add(rowValue2);
n++;
} catch (Exception e2) {
}
}
table1 = new JTable(tableValue1, columnNames1);
table2 = new JTable(tableValue2, columnNames2);
for (int i = 0; i < 13; i++) {
table1.getColumnModel().getColumn(i).setPreferredWidth(getSize().width / 12);
table2.getColumnModel().getColumn(i).setPreferredWidth(getSize().width / 12);
// table.getColumnModel().getColumn(i).setMinWidth(100);
}
table1.getTableHeader().setFont(new Font("้ปไฝ", Font.PLAIN, 20));
table1.setFont(new Font("ๅฎไฝ", Font.PLAIN, 20));
table1.setRowHeight(30);
table1.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
sp1.setViewportView(table1);
table2.getTableHeader().setFont(new Font("้ปไฝ", Font.PLAIN, 20));
table2.setFont(new Font("ๅฎไฝ", Font.PLAIN, 20));
table2.setRowHeight(30);
table2.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
sp2.setViewportView(table2);
p.updateUI();
} catch (Exception e2) {
} finally {
table1.updateUI();
table2.updateUI();
}
}
} | [
"yun@yumengteam.xyz"
] | yun@yumengteam.xyz |
a0329cde7dc8ce57b052ac685056e19beb98fe27 | eb50ad1fec6a1915b79ab94f5b1446444ff827f5 | /src/leetcode/StringToInteger.java | 5fd6560d2dfff3e4a3f4efffe980da22a8eee9a8 | [] | no_license | doris90/Leetcode | 2d54deee875bdc52c6b26680a8310b69ed533323 | 84dec8234a75f28d8cb3511dc31cc0b146a6e9b8 | refs/heads/master | 2021-01-15T09:14:02.915157 | 2020-11-06T05:02:39 | 2020-11-06T05:02:39 | 57,205,672 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,332 | java | package leetcode;
/*
* Implement atoi which converts a string to an integer.
The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus sign followed by as many numerical digits as possible, and interprets them as a numerical value.
The string can contain additional characters after those that form the integral number, which are ignored and have no effect on the behavior of this function.
If the first sequence of non-whitespace characters in str is not a valid integral number, or if no such sequence exists because either str is empty or it contains only whitespace characters, no conversion is performed.
If no valid conversion could be performed, a zero value is returned.*/
import org.junit.Assert;
import org.junit.Test;
public class StringToInteger {
private static int max = Integer.MAX_VALUE;
private static int min = Integer.MIN_VALUE;
@Test
public void test() {
// Assert.assertEquals(0, myAtoi(" "));
Assert.assertEquals(0, myAtoi(" abd12"));
// Assert.assertEquals(4193, myAtoi(" 4193 with words"));
// Assert.assertEquals(-42, myAtoi(" -42abd"));
// Assert.assertEquals(-2147483648, myAtoi(" -91283472332"));
}
public static int myAtoi(String str) {
if(str == null || str.length()==0) return 0;
String source = str.trim();
if(source == null || source.length()==0) return 0;
String res = null;
boolean isNegative = false;
StringBuilder sb;
if(source.charAt(0) == '+' || source.charAt(0) == '-' ) {
if(source.charAt(0) == '-') isNegative = true;
if(source.length()>1) {
sb = new StringBuilder(String.valueOf(source.charAt(0))); //"+-"
res = removeZeroOfBegining(source.substring(1));
if(res != null && res.charAt(0)>='1' && res.charAt(0)<='9')sb.append(res.charAt(0));
}
else return 0;
} else if(source.charAt(0) >= '0' && source.charAt(0) <= '9') {
res = removeZeroOfBegining(source);
if(res != null && res.charAt(0)>='1' && res.charAt(0)<='9')sb = new StringBuilder(String.valueOf(res.charAt(0)));
else return 0;
}else return 0;
if(res.charAt(0)>'9' || res.charAt(0)<'0') return 0;
Long result = 0l;
for (int i = 1; i < res.length(); i++) {
char tmp = res.charAt(i);
if(tmp>='0' && tmp<='9') sb.append(res.charAt(i));
else break;
}
if(sb.length() ==0 ) return 0;
else if(sb.length()> 11) {
if(isNegative) return min;
else return max;
}else {
result = Long.valueOf(sb.toString());
if(result >= max) return max;
else if(result <= min) return min;
else {
return result.intValue();
}
}
}
public static String removeZeroOfBegining(String s) {
for (int i = 0; i < s.length(); i++) {
if(s.charAt(i) != '0') return s.substring(i);
}
return null;
}
public static void main(String[] args) {
System.out.println(myAtoi(" +0 123"));
}
}
| [
"yushao@ebay.com"
] | yushao@ebay.com |
92f9c64618233244c333b353a9d4bb8293cfb9df | d3596e8876c212a12ac684cca7d3961738cdc2f7 | /app/src/main/java/com/hippo/scene/preference/PreferenceCategoryHolder.java | 4f3184dfc95b84646c1eb4911863d4dcbb9b08f4 | [] | no_license | jackyyf/EhViewer | 0c186a9ff65e984243baa137796e59123f0ff1a0 | 30ff85e25b64a97f1009649927b7ec0e837387d5 | refs/heads/dev0121 | 2020-12-11T09:05:58.330160 | 2015-07-07T15:32:43 | 2015-07-07T15:32:43 | 38,840,061 | 1 | 0 | null | 2015-07-09T19:11:24 | 2015-07-09T19:11:24 | null | UTF-8 | Java | false | false | 969 | java | /*
* Copyright (C) 2015 Hippo Seven
*
* 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.hippo.scene.preference;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.widget.TextView;
public class PreferenceCategoryHolder extends RecyclerView.ViewHolder {
public TextView title;
public PreferenceCategoryHolder(View itemView) {
super(itemView);
title = (TextView) itemView;
}
}
| [
"seven332@163.com"
] | seven332@163.com |
cac5cb64937df0fea461bfaa117ae0ff8e97e7a8 | cbca883fab9332f48081c235c13ab4b8e65e851d | /Practicas/SeminarioPractica1/ejemplosUsoClasesPropias/src/base/ProcesarEmpleados.java | 554c9ba2e033f735903bcabdb40b05731f23f6cc | [] | no_license | Ancaor/NTP | fb4d08c5f105c425f74be86a06a7ac07ad6cda5f | 84801175e6d578c1246744708889de203e7a2de4 | refs/heads/master | 2020-04-25T15:41:38.021544 | 2019-06-12T19:56:35 | 2019-06-12T19:56:35 | 172,886,994 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,786 | java | package base;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.*;
import java.util.function.Predicate;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class ProcesarEmpleados {
/**
* Contador del numero de empleados
*/
int numeroEmpleados;
/**
* Dato miembro para almacenar la lista de empleados ya generados
*/
private List<Empleado> empleados;
/**
* Constructor de la clase
*
* @param nombreArchivo
* @throws IOException
*/
public ProcesarEmpleados(String nombreArchivo){
try {
// Se leen las lineas del archivo
Stream<String> lineas = Files.lines(Paths.get(nombreArchivo));
// Se procesan las lineas del archivo
empleados = lineas.map(linea -> new Empleado(linea)).
collect(Collectors.toList());
// se da valor a numero empleados
numeroEmpleados=empleados.size();
System.out.println("Numero de empleados: "+numeroEmpleados);
}catch(IOException e){
System.out.println("Error reading file: "+nombreArchivo);
System.exit(0);
}
}
public void listadoImperativo(){
for(int i=0; i < numeroEmpleados; i++){
System.out.println(empleados.get(i).generarLineaSimple());
}
}
public void listadoFuncional(){
empleados.stream().forEach(empleado ->
System.out.println(empleado.generarLineaSimple()));
}
public void listadoFuncionalParalelo(){
empleados.stream().parallel().forEach(empleado ->
System.out.println(empleado.generarLineaSimple()));
}
/**
* Metodo main para pruebas
*
* @param args
*/
public static void main(String[] args) {
// Inicializa el array de empleados
Empleado[] empleados = {
new Empleado("Juan", "Lopez", 5000, "IT"),
new Empleado("Antonio", "Garcia", 7600, "IT"),
new Empleado("Mateo", "Insausti", 3587.5, "Ventas"),
new Empleado("Joaquรญn", "Fernandez", 4700.77, "Marketing"),
new Empleado("Lucas", "Martinez", 6200, "IT"),
new Empleado("Pedro", "Garcia", 3200, "Ventas"),
new Empleado("Fernado", "Gonzalez", 4236.4, "Marketing")
};
//Filtrado por condicion y ordenacion
Predicate<Empleado> condicion = empleado ->
(empleado.obtenerSueldo() >= 4000 &&
empleado.obtenerSueldo() <= 6000);
Comparator<Empleado> comparador = Comparator.comparing(Empleado::obtenerSueldo);
Arrays.stream(empleados).filter(condicion).sorted(comparador).forEach(empleado ->
System.out.println(empleado.generarLineaSimple()));
//Listar todos los nombres sin repetidos
List<String> nombres_no_repetidos = Arrays.stream(empleados).map(empleado -> empleado.obtenerNombre()).distinct().collect(Collectors.toList());
//Agrupamiento de empleados por departamento imperativo
Map<String,List<Empleado>> agrupamiento = new HashMap<>();
String departamento;
List<Empleado> listaEmpleados;
for(int i=0; i < empleados.length; i++) {
departamento = empleados[i].obtenerDepartamento();
//ver si existe clave en mapa
listaEmpleados = agrupamiento.get(departamento);
if (listaEmpleados == null) {
listaEmpleados = new LinkedList<>();
listaEmpleados.add(empleados[i]);
agrupamiento.put(departamento, listaEmpleados);
} else {
listaEmpleados.add(empleados[i]);
}
}
Iterator<String> claves = agrupamiento.keySet().iterator();
String clave;
while(claves.hasNext()){
clave = claves.next();
System.out.println(clave + " : " + agrupamiento.get(clave).size());
}
// Funcional
Map<String,List<Empleado>> agrupamientoDep = Arrays.stream(empleados).collect(Collectors.groupingBy(Empleado::obtenerDepartamento)); //el mapa puede ser de distintos tipos : Map es abstracto
agrupamientoDep.forEach(
(dept, asignados) -> {
System.out.println(dept + " : " + asignados.size());
}
);
//Creacion de maps con metodos especificos : conteo de empleados en cada departamento.
//Objeto: Map<String, int>
TreeMap<String,Long> contaores = Arrays.stream(empleados).collect(Collectors.groupingBy(Empleado::obtenerDepartamento,TreeMap::new,Collectors.counting())); // especifico que Map quiero en este caso TreeMap
//Media de sueldos de todos los empleados
double media = Arrays.stream(empleados).mapToDouble(empleado -> empleado.obtenerSueldo()).average().getAsDouble();
}
}
| [
"Ancaor@correo.ugr.es"
] | Ancaor@correo.ugr.es |
a014a290f65d967843ccecda412805a8649e7249 | 9500e5e813bc0e4e880672d70660dd1a9f1bd910 | /CaseStudyMain/src/main/java/com/training/jdbc/App.java | 103ed32046eaa3d4375396ed68cf05f98a860164 | [] | no_license | kandalam98/javaTrainingCodes | 8a4092315025dfaa0112683de166c18a7bb72b4f | 1e0f08f85cbc849e467f8575fbb721ce962d4ca4 | refs/heads/master | 2023-08-23T04:26:43.040146 | 2021-10-13T10:46:34 | 2021-10-13T10:46:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 206 | java | //package com.training.jdbc;
//
///**
// * Hello world!
// *
// */
//public class App
//{
// public static void main( String[] args )
// {
// System.out.println( "Hello World!" );
// }
//}
| [
"kvps148@gmail.com"
] | kvps148@gmail.com |
bda038f2491bb083dcdf4238e04882fe70916a5b | 1f08c977fa405be89235a3938f4bc7cd117e5564 | /src/com/company/patterns/behavioral/template/ServiceRunner.java | dd42ce6841d8b49e7938c805f86dd6f2b90ed89c | [] | no_license | Rentori/patterns | 8c107f478b95ad5d05ecb0f6953e2fdb63df7d58 | e7ba8c7a91c8479c7b300535b3df40581dbc373c | refs/heads/master | 2023-05-04T11:26:46.412045 | 2021-05-27T09:36:35 | 2021-05-27T09:36:35 | 371,298,560 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 324 | java | package com.company.patterns.behavioral.template;
public class ServiceRunner {
public static void main(String[] args) {
PriceListTemplate headphones = new HeadphonesPriceList();
PriceListTemplate tablet = new TabletPriceList();
headphones.getPriceList();
tablet.getPriceList();
}
}
| [
"vitya.erofeev.90@gmail.com"
] | vitya.erofeev.90@gmail.com |
935a0194c22ad10b2a1ff82f7bd860020c373525 | 9ebf884d8aa4a37ec5bf6828d571c3d19eca5bfb | /src/main/java/de/cismet/cids/custom/sudplan/wupp/RunoffModelManager.java | c7abc8e554754f6a5092f44dca291620245e6b74 | [] | no_license | cismet/cids-custom-sudplan-wupp | 7f96773c752fe6875e93751fb4cbefa5e94db134 | 5208306174c872adcd9c5a85e0e447c37a93a695 | refs/heads/master | 2020-05-19T11:18:42.374528 | 2012-12-18T14:42:23 | 2012-12-18T14:42:23 | 7,224,817 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,063 | java | /***************************************************
*
* cismet GmbH, Saarbruecken, Germany
*
* ... and it just works.
*
****************************************************/
package de.cismet.cids.custom.sudplan.wupp;
import org.apache.log4j.Logger;
import org.codehaus.jackson.map.ObjectMapper;
import java.io.IOException;
import java.io.StringWriter;
import java.util.ArrayList;
import de.cismet.cids.custom.sudplan.AbstractAsyncModelManager;
import de.cismet.cids.custom.sudplan.AbstractModelRunWatchable;
import de.cismet.cids.custom.sudplan.SMSUtils;
import de.cismet.cids.custom.sudplan.geocpmrest.GeoCPMRestClient;
import de.cismet.cids.custom.sudplan.geocpmrest.io.*;
import de.cismet.cids.dynamics.CidsBean;
/**
* DOCUMENT ME!
*
* @author martin.scholl@cismet.de
* @version $Revision$, $Date$
*/
public final class RunoffModelManager extends AbstractAsyncModelManager {
//~ Static fields/initializers ---------------------------------------------
private static final transient Logger LOG = Logger.getLogger(RunoffModelManager.class);
public static final String CLIENT_URL = "http://192.168.100.12:9988/GeoCPM.json"; // NOI18N public static final
// String CLIENT_URL =
// "http://localhost:9988/GeoCPM.json";
//// NOI18N
//~ Methods ----------------------------------------------------------------
@Override
protected void prepareExecution() throws IOException {
if (isFinished()) {
return;
}
final RunoffInput io = (RunoffInput)getUR();
final CidsBean geocpmBean = io.fetchGeocpmInput();
final CidsBean rainEventBean = io.fetchRainevent();
// --- prepare rain event
final Integer interval = (Integer)rainEventBean.getProperty("interval");
final String rainEventData = (String)rainEventBean.getProperty("data");
final String[] valueFragments = rainEventData.split(":");
final ArrayList<Double> values = new ArrayList<Double>(valueFragments.length);
for (int i = 0; i < valueFragments.length; i++) {
values.add(Double.valueOf(valueFragments[i]));
}
final Rainevent rainEvent = new Rainevent(interval, values);
// --- get GeoCPM config id
final int geoCPMConfigId = (Integer)geocpmBean.getProperty("id");
final SimulationConfig input = new SimulationConfig(geoCPMConfigId, rainEvent, true);
String runId = null;
try {
final GeoCPMRestClient client = new GeoCPMRestClient(CLIENT_URL);
final ExecutionStatus execStatus = client.startSimulation(input);
runId = execStatus.getTaskId();
final GeoCPMRunInfo runinfo = new GeoCPMRunInfo(runId, CLIENT_URL);
final ObjectMapper mapper = new ObjectMapper();
final StringWriter writer = new StringWriter();
mapper.writeValue(writer, runinfo);
cidsBean.setProperty("runinfo", writer.toString()); // NOI18N
cidsBean = cidsBean.persist();
} catch (final Exception ex) {
final String message = "cannot store runinfo: " + runId; // NOI18N
LOG.error(message, ex);
throw new IOException(message, ex);
}
}
@Override
protected CidsBean createOutputBean() throws IOException {
if (!isFinished()) {
throw new IllegalStateException("cannot create outputbean when not finished yet"); // NOI18N
}
if (!(getWatchable() instanceof GeoCPMWatchable)) {
throw new IllegalStateException("cannot create output if there is no valid watchable"); // NOI18N
}
if (LOG.isDebugEnabled()) {
LOG.debug("creating output bean for run: " + cidsBean); // NOI18N
}
final GeoCPMWatchable watch = (GeoCPMWatchable)getWatchable();
final String runId = watch.getRunId();
try {
final CidsBean modelOutput = SMSUtils.createModelOutput("Output of Run: " + runId, // NOI18N
watch.getOutput(),
SMSUtils.Model.GEOCPM);
return modelOutput.persist();
} catch (final Exception e) {
final String message = "cannot get results for run: " + runId; // NOI18N
LOG.error(message, e);
throw new IOException(message, e);
}
}
@Override
protected boolean needsDownload() {
return true;
}
@Override
public AbstractModelRunWatchable createWatchable() throws IOException {
final ObjectMapper mapper = new ObjectMapper();
final String info = (String)cidsBean.getProperty("runinfo"); // NOI18N
try {
final GeoCPMRunInfo runInfo = mapper.readValue(info, GeoCPMRunInfo.class);
return new GeoCPMWatchable(cidsBean, new GeoCPMRestClient(runInfo.getClientUrl()), runInfo.getRunId());
} catch (final Exception ex) {
final String message = "cannot read runInfo from run: " + cidsBean; // NOI18N
LOG.error(message, ex);
throw new IOException(message, ex);
}
}
@Override
protected String getReloadId() {
try {
final RunoffInput io = (RunoffInput)getUR();
final CidsBean geocpmBean = io.fetchGeocpmInput();
final CidsBean iaBean = (CidsBean)geocpmBean.getProperty("investigation_area"); // NOI18N
final int iaId = iaBean.getMetaObject().getID();
return "ia_id" + iaId + "_scenarios"; // NOI18N
} catch (final Exception e) {
LOG.warn("cannot fetch reload id", e); // NOI18N
return null;
}
}
@Override
public GeoCPMRunInfo getRunInfo() {
return SMSUtils.getRunInfo(cidsBean, GeoCPMRunInfo.class);
}
}
| [
"martin.scholl@cismet.de"
] | martin.scholl@cismet.de |
6faf250baa69b4afb08d15a3380a7a4b197a90f1 | eb790c1dc551e55f17525a33041af150ba98d239 | /src/edu/drexel/cs/serg/ape/Randomizer.java | 1fd7d32c7e9006294d7328f2e51f3f0c89de26f5 | [] | no_license | klynch/ape | 979feabe2260201b6cd855f674430606a631a1f7 | f106b62065c3e03cc355436af85d4ceda0b0120a | refs/heads/master | 2020-04-23T22:04:15.718599 | 2014-06-27T20:27:58 | 2014-06-27T20:27:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,429 | java | package edu.drexel.cs.serg.ape;
import java.util.Random;
import edu.drexel.cs.serg.ape.grammar.CompareOper;
import edu.drexel.cs.serg.ape.grammar.LogicOper;
/**
* Random helper methods
*
* @author klynch
* @since 0.1
*/
public abstract class Randomizer {
protected final Random rand;
protected Randomizer() {
this(new Random(System.nanoTime() ^ Thread.currentThread().getId()));
}
protected Randomizer(final Random rand) {
this.rand = rand;
}
protected final int randInt(int n) {
return rand.nextInt(n);
}
protected final int randInt(int min, int max) {
return rand.nextInt(max - min) + min;
}
protected final boolean randBoolean() {
return rand.nextBoolean();
}
protected final double randDouble() {
return rand.nextDouble();
}
protected final <T> T randFromArray(final T[] array) {
final int index = rand.nextInt(array.length);
return array[index];
}
/**
* Select a random compare operator from the grammar
*
* @return
*/
protected final CompareOper randCompareOper() {
return randFromArray(CompareOper.values());
}
/**
* Select a random logic operator from the grammar
*
* @return
*/
protected final LogicOper randLogicOper() {
return randFromArray(LogicOper.values());
}
/**
* Select a random identifier from the available dataset
*
* @return
*/
protected final String randIdentifier() {
return randFromArray(DataOracle.fields);
}
}
| [
"klynch@drakontas.com"
] | klynch@drakontas.com |
47ae0a22b71cdbcbba936a5672cabb852760696e | edfc4803c58ac602c69106131ca52b8bb9514f39 | /src/test/java/demoapp/validation/validator/spring/DeviceInfoValidatorTest.java | 90af012f269b15cda5cf37722ec390de11141210 | [] | no_license | Jack-WangZhe/validation_in_java | 4c0b30550bba86630880547e21a6ea05065b0108 | 553906fb7c8726399ed9701b7c70b467d32c16ce | refs/heads/master | 2023-01-13T20:58:12.867348 | 2020-11-19T05:57:52 | 2020-11-19T05:57:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,621 | java | package demoapp.validation.validator.spring;
import demoapp.validation.modal.Device;
import demoapp.validation.modal.DeviceInfo;
import org.junit.Test;
import org.springframework.validation.BeanPropertyBindingResult;
import org.springframework.validation.Errors;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.List;
import java.util.Scanner;
import java.util.stream.Stream;
import static org.junit.Assert.*;
public class DeviceInfoValidatorTest {
private final DeviceInfoValidator validator = new DeviceInfoValidator();
@Test
public void shouldSupport_whenClassIsDevice() {
assertTrue(validator.supports(DeviceInfo.class));
}
@Test
public void shouldNotSupport_whenClassIsNotDevice() {
assertFalse(validator.supports(Device.class));
}
@Test
public void shouldFail_whenDeviceInvalid() {
DeviceInfo device = prepareInvalidInput();
Errors errors = new BeanPropertyBindingResult(device, "validAddress");
validator.validate(device, errors);
assertEquals("Invalid IP address", errors.getFieldError("ipAddress").getCode());
}
void readFile1(String filename) throws IOException {
List<String> lines = Files.readAllLines(Paths.get(filename),
StandardCharsets.UTF_8);
lines.forEach(System.out::println);
}
void readFile2(String filename) throws IOException {
Stream<String> lines = Files.lines(Paths.get(filename));
lines.forEach(System.out::println);
}
void readFile3(String filename) throws IOException {
String content = Files.readString(Paths.get(filename));
System.out.println(content);
}
void readFile11(String filename) throws IOException {
try (BufferedReader br = new BufferedReader(new FileReader(filename))) {
String line;
while ((line = br.readLine()) != null) {
System.out.println(line);
}
}
}
void readFile15(String filename) throws FileNotFoundException {
try (Scanner sc = new Scanner(new FileReader(filename))) {
while (sc.hasNextLine()) {
String line = sc.nextLine();
}
}
}
private static DeviceInfo prepareInvalidInput() {
DeviceInfo input = new DeviceInfo();
input.setIpAddress("invalid");
input.setNumberBetweenOneAndTen(99);
return input;
}
}
| [
"bill.libin.yan@kingland.com"
] | bill.libin.yan@kingland.com |
c070551f176f88cdb77e01377ec36204cc09e8b1 | 449d301c5b86f3da8b062a8a2f25ab67354bd941 | /src/main/java/org/datasyslab/GeoReach/ReachabilityQuerySolver.java | 7c89eebac8295025641859941816f4187f7ab2eb | [] | no_license | YuhanSun/GeoReach_Comparison | 67cffcc38a58d4f907f9367f3c0baf3db625f282 | 51073eb78fe6df08d173cab11287034ce1c73f27 | refs/heads/master | 2021-01-24T17:48:38.419982 | 2017-07-02T05:51:39 | 2017-07-02T05:51:39 | 62,690,616 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 164 | java | package org.datasyslab.GeoReach;
public interface ReachabilityQuerySolver {
void Preprocess();
boolean ReachabilityQuery(long start_id, MyRectangle rect);
} | [
"wdmzssyh@gmail.com"
] | wdmzssyh@gmail.com |
8a5f05eafda9ff117c85ad40383226516977fb54 | b0f25a57f94d923f24a69c119e6b08e40bde6854 | /BackEnd/CRUD-FIN3/src/main/java/com/crudfin3/service/Schedule.java | 305c7111c01446601002fed57422dba09c914733 | [] | no_license | tblong2105/CRUD-React-Redux-Typescripts | a8dd2b821a6de53111f67b0a369d0765cca5300f | 7091ebc42d0bcbe4d64376e1977122beb4602bd7 | refs/heads/master | 2023-05-15T08:39:46.888703 | 2021-06-10T14:15:37 | 2021-06-10T14:15:37 | 375,721,132 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,179 | java | package com.crudfin3.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;
import com.crudfin3.model.User;
import com.crudfin3.repository.UserRepository;
/**
* Schedule
*
* Version 1.0
*
* Date: 08-06-2021
*
* Copyright
*
* Modification Logs:
* DATE AUTHOR DESCRIPTION
* -----------------------------------------------------------------------
* 08-06-2021 LONGTB4 Create
*/
@Service
public class Schedule {
@Autowired
private UserRepository repo;
/**
* remove account inactive every day
*/
@Scheduled(cron = "59 59 23 ? * *")
public void scheduleTaskWithFixedRate() {
// Get all account available
List<User> lsUser = repo.listValid();
for (User user : lsUser) {
// Check account if dont activate greater than 60 day
if(System.currentTimeMillis() - user.getActionTime().getTime() > 5184000000L ) {
// Delete account by delete logic
repo.deleteLogic(user.getId());
}
}
}
}
| [
"tblong2105@gmail.com"
] | tblong2105@gmail.com |
94569a0a33e8e996deecd3e79db766457fc4883b | 92af1cff5836534928514b16faa2d9fdd1d4c614 | /app/src/main/java/com/cris/cms/cmsmobile/BioScreen.java | 7d68d8dca67125116d316fa0c60b713610a5d2fb | [] | no_license | rangasanju/CMSMobile | 1bc9d5b47dd21ca9c1629b7bbbea957eb709c794 | 56e5d85052d8f2f3e0cd416d3283c9994026b18c | refs/heads/master | 2021-01-20T16:45:11.304492 | 2017-04-20T07:45:41 | 2017-04-20T07:45:41 | 64,415,932 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 66,142 | java | package com.cris.cms.cmsmobile;
import java.io.*;
import java.nio.ByteBuffer;
import java.text.SimpleDateFormat;
import java.util.Date;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.PendingIntent;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.BroadcastReceiver;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteStatement;
import android.hardware.usb.UsbDevice;
import android.hardware.usb.UsbManager;
import android.os.Bundle;
import android.os.Environment;
import android.os.Handler;
import android.os.Message;
import android.support.v4.app.NotificationCompatSideChannelService;
import android.util.Base64;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.ColorMatrix;
import android.graphics.ColorMatrixColorFilter;
import android.graphics.Paint;
import android.widget.Spinner;
import android.widget.Toast;
import SecuGen.FDxSDKPro.*;
public class BioScreen extends Activity
implements View.OnClickListener, Runnable, SGFingerPresentEvent {
private static final String TAG = "SecuGen USB";
private String crewid;
private String registerflag="false";
private String match = "nomatch";
private Button mButtonRegister;
private Button mButtonMatch;
//private Button mButtonOK;
private Spinner fingers;
private String selectedFinger;
private String doneFinger="NONE";
private int verify_count = 0;
private String registered_finger_1;
private String registered_finger_2;
//private android.widget.TextView mTextViewResult;
//private android.widget.CheckBox mCheckBoxMatched;
private EditText mEditLog;
private PendingIntent mPermissionIntent;
private ImageView mImageViewFinger1;
private ImageView mImageViewFinger2;
private ImageView mImageViewLeft;
private ImageView mImageViewRight;
//private ImageView mImageViewVerify;
private byte[] mRegisterImage;
private byte[] mVerifyImage;
private byte[] mRegisterTemplate;
private byte[] mRegisterTemplate2; // TO STORE THE SECOND FINGER FROM DB
private byte[] mVerifyTemplate;
private int[] mMaxTemplateSize;
private int mImageWidth;
private int mImageHeight;
private int[] grayBuffer;
private Bitmap grayBitmap;
private IntentFilter filter; //2014-04-11
private SGAutoOnEventNotifier autoOn;
private boolean mLed;
private boolean mAutoOnEnabled;
private JSGFPLib sgfplib;
private void debugMessage(String message) {
//this.mEditLog.append(message);
//this.mEditLog.invalidate(); //TODO trying to get Edit log to update after each line written
Log.d("INFO : " , message);
}
//RILEY
//This broadcast receiver is necessary to get user permissions to access the attached USB device
private static final String ACTION_USB_PERMISSION = "com.android.example.USB_PERMISSION";
private final BroadcastReceiver mUsbReceiver = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
//DEBUG Log.d(TAG,"Enter mUsbReceiver.onReceive()");
if (ACTION_USB_PERMISSION.equals(action)) {
synchronized (this) {
UsbDevice device = (UsbDevice)intent.getParcelableExtra(UsbManager.EXTRA_DEVICE);
if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) {
if(device != null){
//DEBUG Log.d(TAG, "Vendor ID : " + device.getVendorId() + "\n");
//DEBUG Log.d(TAG, "Product ID: " + device.getProductId() + "\n");
debugMessage("Vendor ID : " + device.getVendorId() + "\n");
debugMessage("Product ID: " + device.getProductId() + "\n");
}
else
Log.e(TAG, "mUsbReceiver.onReceive() Device is null");
}
else
Log.e(TAG, "mUsbReceiver.onReceive() permission denied for device " + device);
}
}
}
};
//RILEY
//This message handler is used to access local resources not
//accessible by SGFingerPresentCallback() because it is called by
//a separate thread.
public Handler fingerDetectedHandler = new Handler(){
// @Override
public void handleMessage(Message msg) {
//Handle the message
if(registerflag.equals("true"))
CaptureFingerPrintForRegistration();
else
CaptureFingerPrintForVerification();
}
};
public void SGFingerPresentCallback (){
autoOn.stop();
//EnableControls();
sgfplib.SetLedOn(false);
fingerDetectedHandler.sendMessage(new Message());
}
public long CaptureFingerPrintForRegistration(){
if (mRegisterImage != null)
mRegisterImage = null;
mRegisterImage = new byte[mImageWidth*mImageHeight];
long timeout = 10000;
long qual = 60;
// Capture Image For Registration
long code = sgfplib.GetImageEx(mRegisterImage,timeout,qual);
// Set image in the Big Box
//mImageViewFinger1.setImageBitmap(grayBitmap);
//mImageViewFinger2.setImageBitmap(grayBitmap);
if(doneFinger.equals("NONE"))
{
mImageViewFinger1.setImageBitmap(this.toGrayscale(mRegisterImage));
mImageViewFinger1.setScaleType(ImageView.ScaleType.FIT_CENTER);
doneFinger = selectedFinger;
//mTextViewResult.setText("One Finger Registered Successfully");
ShowAlert("One Finger Registered Successfully. Please select another finger and click on Register");
}
else
{
mImageViewFinger2.setImageBitmap(this.toGrayscale(mRegisterImage));
mImageViewFinger2.setScaleType(ImageView.ScaleType.FIT_CENTER);
mButtonRegister.setText("OK");
}
// CONVERT TO TEMPLATE
long result = sgfplib.SetTemplateFormat(SGFDxTemplateFormat.TEMPLATE_FORMAT_SG400);
SGFingerInfo fpInfo = new SGFingerInfo();
for (int i=0; i< mRegisterTemplate.length; ++i)
mRegisterTemplate[i] = 0;
long templateresult = sgfplib.CreateTemplate(fpInfo, mRegisterImage, mRegisterTemplate);
// Insert into DB
insertUser(selectedFinger,mRegisterTemplate);
//mTextViewResult.setText("getImageEx(10000,60) ret: " + code + " [ " + doneFinger + "] \n");
return result;
}
public long CaptureFingerPrintForVerification(){
verify_count++;
if (mVerifyImage != null)
mVerifyImage = null;
mVerifyImage = new byte[mImageWidth*mImageHeight];
long timeout = 10000;
long qual = 60;
// Capture Image For Registration
long code = sgfplib.GetImageEx(mVerifyImage,timeout,qual);
// Set image in the ImageView
mImageViewFinger1.setImageBitmap(this.toGrayscale(mVerifyImage));
mImageViewFinger1.setScaleType(ImageView.ScaleType.FIT_CENTER);
// CONVERT TO TEMPLATE
long result = sgfplib.SetTemplateFormat(SGFDxTemplateFormat.TEMPLATE_FORMAT_SG400);
SGFingerInfo fpInfo = new SGFingerInfo();
for (int i=0; i< mVerifyTemplate.length; ++i)
mVerifyTemplate[i] = 0;
result = sgfplib.CreateTemplate(fpInfo, mVerifyImage, mVerifyTemplate);
// MATCHING PROCESS
boolean[] matched = new boolean[1];
result = sgfplib.MatchTemplate(mRegisterTemplate, mVerifyTemplate, SGFDxSecurityLevel.SL_NORMAL, matched);
if (matched[0]) {
//mTextViewResult.setText("MATCHED!!\n");
//this.mCheckBoxMatched.setChecked(true);
debugMessage("MATCHED!!\n");
match = "<<MATCH>>";
ShowAlert("Verification Successfull");
mButtonMatch.setText("Continue");
}
else {
result = sgfplib.MatchTemplate(mRegisterTemplate2, mVerifyTemplate, SGFDxSecurityLevel.SL_NORMAL, matched);
if (matched[0]) {
//mTextViewResult.setText("MATCHED!!\n");
//this.mCheckBoxMatched.setChecked(true);
debugMessage("MATCHED!!\n");
match = "<<MATCH>>";
ShowAlert("Verification Successfull");
mButtonMatch.setText("Continue");
}
else {
//mTextViewResult.setText("NOT MATCHED!!");
//this.mCheckBoxMatched.setChecked(false);
debugMessage("NOT MATCHED!!\n");
match = "<<NO MATCH>>";
ShowAlert("Verification Failed");
}
}
mVerifyImage = null;
fpInfo = null;
matched = null;
return result;
}
//RILEY
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
dlgAlert.setMessage("onCreate1");
Intent mainactivity = getIntent();
crewid = mainactivity.getExtras().getString("crewid");
verify_count = 0;
//mRegisterTemplate = getUser();
getUser();
// Toast.makeText(this, register, Toast.LENGTH_SHORT).show();
// set the layout to biolayout or biolayoutregister accordingly
if(registerflag.equals("true"))
setContentView(R.layout.registrationlayout);
else
setContentView(R.layout.verificationlayout);
// HANDS VIEW
mImageViewLeft = (ImageView) findViewById(R.id.imageViewLeft);
mImageViewRight = (ImageView) findViewById(R.id.imageViewRight);
mImageViewLeft.setImageResource(R.drawable.l);
mImageViewRight.setImageResource(R.drawable.r);
mImageViewFinger1 = (ImageView)findViewById(R.id.imageViewFinger1);
if(registerflag.equals("true"))
{
mButtonRegister = (Button)findViewById(R.id.buttonRegister);
mButtonRegister.setOnClickListener(this);
mImageViewFinger2 = (ImageView)findViewById(R.id.imageViewFinger2);
addItemsToSpinner();
addListenerToFingerSpinner();
ShowAlert("This process will register two fingers. Please select a finger and click on Register button ");
}else
{
mButtonMatch = (Button)findViewById(R.id.buttonMatch);
mButtonMatch.setOnClickListener(this);
switch (registered_finger_1)
{
case "L1" :
mImageViewLeft.setImageResource(R.drawable.l1);
break;
case "L2" :
mImageViewLeft.setImageResource(R.drawable.l2);
break;
case "L3" :
mImageViewLeft.setImageResource(R.drawable.l3);
break;
case "L4" :
mImageViewLeft.setImageResource(R.drawable.l4);
break;
case "L5" :
mImageViewLeft.setImageResource(R.drawable.l5);
break;
}
switch (registered_finger_2)
{
case "R1" :
mImageViewRight.setImageResource(R.drawable.r1);
break;
case "R2" :
mImageViewRight.setImageResource(R.drawable.r2);
break;
case "R3" :
mImageViewRight.setImageResource(R.drawable.r3);
break;
case "R4" :
mImageViewRight.setImageResource(R.drawable.r4);
break;
case "R5" :
mImageViewRight.setImageResource(R.drawable.r5);
break;
}
}
//mTextViewResult = (android.widget.TextView)findViewById(R.id.textViewResult);
//mImageViewVerify = (ImageView)findViewById(R.id.imageViewVerify); // small verify box
grayBuffer = new int[JSGFPLib.MAX_IMAGE_WIDTH_ALL_DEVICES*JSGFPLib.MAX_IMAGE_HEIGHT_ALL_DEVICES];
for (int i=0; i<grayBuffer.length; ++i)
grayBuffer[i] = Color.GRAY;
grayBitmap = Bitmap.createBitmap(JSGFPLib.MAX_IMAGE_WIDTH_ALL_DEVICES, JSGFPLib.MAX_IMAGE_HEIGHT_ALL_DEVICES, Bitmap.Config.ARGB_8888);
grayBitmap.setPixels(grayBuffer, 0, JSGFPLib.MAX_IMAGE_WIDTH_ALL_DEVICES, 0, 0, JSGFPLib.MAX_IMAGE_WIDTH_ALL_DEVICES, JSGFPLib.MAX_IMAGE_HEIGHT_ALL_DEVICES);
int[] sintbuffer = new int[(JSGFPLib.MAX_IMAGE_WIDTH_ALL_DEVICES/2)*(JSGFPLib.MAX_IMAGE_HEIGHT_ALL_DEVICES/2)];
for (int i=0; i<sintbuffer.length; ++i)
sintbuffer[i] = Color.GRAY;
Bitmap sb = Bitmap.createBitmap(JSGFPLib.MAX_IMAGE_WIDTH_ALL_DEVICES/2, JSGFPLib.MAX_IMAGE_HEIGHT_ALL_DEVICES/2, Bitmap.Config.ARGB_8888);
sb.setPixels(sintbuffer, 0, JSGFPLib.MAX_IMAGE_WIDTH_ALL_DEVICES/2, 0, 0, JSGFPLib.MAX_IMAGE_WIDTH_ALL_DEVICES/2, JSGFPLib.MAX_IMAGE_HEIGHT_ALL_DEVICES/2);
//mImageViewVerify.setImageBitmap(grayBitmap);
mMaxTemplateSize = new int[1];
dlgAlert.setMessage("onCreate2");
//USB Permissions
mPermissionIntent = PendingIntent.getBroadcast(this, 0, new Intent(ACTION_USB_PERMISSION), 0);
filter = new IntentFilter(ACTION_USB_PERMISSION);
dlgAlert.setMessage("onCreate3");
registerReceiver(mUsbReceiver, filter);
sgfplib = new JSGFPLib((UsbManager)getSystemService(Context.USB_SERVICE));
dlgAlert.setMessage("onCreate4");
debugMessage("jnisgfplib version: " + sgfplib.Version() + "\n");
mLed = true;
mAutoOnEnabled = true;
autoOn = new SGAutoOnEventNotifier (sgfplib, this);
}
public void onClick(View v) {
//long dwTimeStart = 0, dwTimeEnd = 0, dwTimeElapsed = 0;
//mTextViewResult.setText("Clicked");
if (v == this.mButtonRegister) {
if(mButtonRegister.getText().equals("OK"))
{
mRegisterImage = null;
match = "<<MATCH>>";
Intent goingBack = new Intent();
goingBack.putExtra("match",match);
setResult(RESULT_OK,goingBack);
finish();
}
else
{
if(doneFinger == selectedFinger)
{
//mTextViewResult.setText(selectedFinger + " finger is already registered. Please selecet another finger");
ShowAlert(selectedFinger + " finger is already registered. Please select another finger");
}
else
{
//DEBUG Log.d(TAG, "Clicked REGISTER");
Toast.makeText(this, "here", Toast.LENGTH_SHORT).show();
debugMessage("Clicked REGISTER\n");
sgfplib.SetLedOn(true);
autoOn.start();
}
}
}
if (v == this.mButtonMatch) {
if(mButtonMatch.getText().equals("Continue"))
{
Intent goingBack = new Intent();
goingBack.putExtra("match",match);
setResult(RESULT_OK,goingBack);
finish();
}
else if(verify_count > 2)
{
ShowAlertFinish("You have made 3 unsuccessfull attempt. Please Login again");
}
else
{
sgfplib.SetLedOn(true);
autoOn.start();
}
}
/*
if (v == this.mButtonOK) {
//DEBUG Log.d(TAG, "Clicked MATCH");
debugMessage("Clicked OK\n");
Intent goingBack = new Intent();
goingBack.putExtra("match",match);
setResult(RESULT_OK,goingBack);
finish();
}*/
}
public void ShowAlert(String msg)
{
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
dlgAlert.setMessage(msg);
dlgAlert.setTitle("CMS App");
dlgAlert.setPositiveButton("OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int whichButton){
//finish();
return;
}
}
);
dlgAlert.setCancelable(false);
dlgAlert.create().show();
}
public void ShowAlertFinish(String msg)
{
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
dlgAlert.setMessage(msg);
dlgAlert.setTitle("CMS App");
dlgAlert.setPositiveButton("OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int whichButton){
Intent goingBack = new Intent();
goingBack.putExtra("match",match);
setResult(RESULT_OK,goingBack);
finish();
return;
}
}
);
dlgAlert.setCancelable(false);
dlgAlert.create().show();
}
public void EnableControls(){
if(registerflag.equals("true"))
{
this.mButtonRegister.setClickable(true);
this.mButtonRegister.setTextColor(getResources().getColor(android.R.color.white));
}
else
{
this.mButtonMatch.setClickable(true);
this.mButtonMatch.setTextColor(getResources().getColor(android.R.color.white));
}
}
public void DisableControls(){
if(registerflag.equals("true"))
{
this.mButtonRegister.setClickable(false);
this.mButtonRegister.setTextColor(getResources().getColor(android.R.color.black));
}
else
{
this.mButtonMatch.setClickable(false);
this.mButtonMatch.setTextColor(getResources().getColor(android.R.color.black));
}
}
@Override
public void onPause() {
Log.d(TAG, "onPause()");
autoOn.stop();
sgfplib.SetLedOn(false);
EnableControls();
sgfplib.CloseDevice();
unregisterReceiver(mUsbReceiver);
mRegisterImage = null;
mVerifyImage = null;
mRegisterTemplate = null;
mRegisterTemplate2 = null;
mVerifyTemplate = null;
//
//
//
// mImageViewFingerprint.setImageBitmap(grayBitmap);
if(registerflag.equals("true"))
{
mImageViewFinger1.setImageBitmap(grayBitmap);
mImageViewFinger2.setImageBitmap(grayBitmap);
}
//mImageViewVerify.setImageBitmap(grayBitmap);
super.onPause();
}
@Override
public void onResume(){
super.onResume();
Log.d(TAG, "onResume()");
AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);
dlgAlert.setMessage("onResume1");
registerReceiver(mUsbReceiver, filter);
dlgAlert.setMessage("onResume2");
long error = sgfplib.Init( SGFDxDeviceName.SG_DEV_AUTO);
dlgAlert.setMessage("onResume3");
if (error != SGFDxErrorCode.SGFDX_ERROR_NONE){
if (error == SGFDxErrorCode.SGFDX_ERROR_DEVICE_NOT_FOUND)
dlgAlert.setMessage("The attached fingerprint device is not supported on Android");
else
dlgAlert.setMessage("Fingerprint device initialization failed!");
dlgAlert.setTitle("SecuGen Fingerprint SDK");
dlgAlert.setPositiveButton("OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int whichButton){
finish();
return;
}
}
);
dlgAlert.setCancelable(false);
dlgAlert.create().show();
}
else {
UsbDevice usbDevice = sgfplib.GetUsbDevice();
if (usbDevice == null){
dlgAlert.setMessage("SDU04P or SDU03P fingerprint sensor not found!");
dlgAlert.setTitle("SecuGen Fingerprint SDK");
dlgAlert.setPositiveButton("OK",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int whichButton){
finish();
return;
}
}
);
dlgAlert.setCancelable(false);
dlgAlert.create().show();
}
else {
dlgAlert.setMessage("onResume4");
sgfplib.GetUsbManager().requestPermission(usbDevice, mPermissionIntent);
dlgAlert.setMessage("onResume4");
error = sgfplib.OpenDevice(0);
debugMessage("OpenDevice() ret: " + error + "\n");
SGDeviceInfoParam deviceInfo = new SGDeviceInfoParam();
error = sgfplib.GetDeviceInfo(deviceInfo);
debugMessage("GetDeviceInfo() ret: " + error + "\n");
mImageWidth = deviceInfo.imageWidth;
mImageHeight= deviceInfo.imageHeight;
debugMessage("Image width: " + mImageWidth + "\n");
debugMessage("Image height: " + mImageHeight + "\n");
debugMessage("Serial Number: " + new String(deviceInfo.deviceSN()) + "\n");
sgfplib.SetTemplateFormat(SGFDxTemplateFormat.TEMPLATE_FORMAT_SG400);
sgfplib.GetMaxTemplateSize(mMaxTemplateSize);
debugMessage("TEMPLATE_FORMAT_SG400 SIZE: " + mMaxTemplateSize[0] + "\n");
if(registerflag.equals("true"))
{
mRegisterTemplate = new byte[mMaxTemplateSize[0]];
}
mVerifyTemplate = new byte[mMaxTemplateSize[0]];
if (mAutoOnEnabled){
autoOn.start();
//DisableControls();
}
//Thread thread = new Thread(this);
//thread.start();
}
}
}
public void addItemsToSpinner()
{
fingers = (Spinner) findViewById(R.id.spinner);
ArrayAdapter<CharSequence> fingerSpinnerAdapter = ArrayAdapter.createFromResource(this,R.array.fingers,android.R.layout.simple_spinner_item);
fingerSpinnerAdapter.setDropDownViewResource(android.R.layout.simple_spinner_item);
fingers.setAdapter(fingerSpinnerAdapter);
}
public void addListenerToFingerSpinner()
{
fingers = (Spinner) findViewById(R.id.spinner);
fingers.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
selectedFinger = parent.getItemAtPosition(position).toString();
mImageViewLeft.setImageResource(R.drawable.l);
mImageViewRight.setImageResource(R.drawable.r);
switch (selectedFinger)
{
case "L1" :
mImageViewLeft.setImageResource(R.drawable.l1);
break;
case "L2" :
mImageViewLeft.setImageResource(R.drawable.l2);
break;
case "L3" :
mImageViewLeft.setImageResource(R.drawable.l3);
break;
case "L4" :
mImageViewLeft.setImageResource(R.drawable.l4);
break;
case "L5" :
mImageViewLeft.setImageResource(R.drawable.l5);
break;
case "R1" :
mImageViewRight.setImageResource(R.drawable.r1);
break;
case "R2" :
mImageViewRight.setImageResource(R.drawable.r2);
break;
case "R3" :
mImageViewRight.setImageResource(R.drawable.r3);
break;
case "R4" :
mImageViewRight.setImageResource(R.drawable.r4);
break;
case "R5" :
mImageViewRight.setImageResource(R.drawable.r5);
break;
}
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
});
}
@Override
public void onDestroy() {
Log.d(TAG, "onDestroy()");
sgfplib.CloseDevice();
mRegisterImage = null;
mVerifyImage = null;
mRegisterTemplate = null;
mRegisterTemplate2 = null;
mVerifyTemplate = null;
sgfplib.Close();
super.onDestroy();
}
//Converts image to grayscale (NEW)
public Bitmap toGrayscale(byte[] mImageBuffer, int width, int height)
{
byte[] Bits = new byte[mImageBuffer.length * 4];
for (int i = 0; i < mImageBuffer.length; i++) {
Bits[i * 4] = Bits[i * 4 + 1] = Bits[i * 4 + 2] = mImageBuffer[i]; // Invert the source bits
Bits[i * 4 + 3] = -1;// 0xff, that's the alpha.
}
Bitmap bmpGrayscale = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
//Bitmap bm contains the fingerprint img
bmpGrayscale.copyPixelsFromBuffer(ByteBuffer.wrap(Bits));
return bmpGrayscale;
}
//Converts image to grayscale (NEW)
public Bitmap toGrayscale(byte[] mImageBuffer)
{
byte[] Bits = new byte[mImageBuffer.length * 4];
for (int i = 0; i < mImageBuffer.length; i++) {
Bits[i * 4] = Bits[i * 4 + 1] = Bits[i * 4 + 2] = mImageBuffer[i]; // Invert the source bits
Bits[i * 4 + 3] = -1;// 0xff, that's the alpha.
}
Bitmap bmpGrayscale = Bitmap.createBitmap(mImageWidth, mImageHeight, Bitmap.Config.ARGB_8888);
//Bitmap bm contains the fingerprint img
bmpGrayscale.copyPixelsFromBuffer(ByteBuffer.wrap(Bits));
return bmpGrayscale;
}
//Converts image to grayscale (NEW)
public Bitmap toGrayscale(Bitmap bmpOriginal)
{
int width, height;
height = bmpOriginal.getHeight();
width = bmpOriginal.getWidth();
Bitmap bmpGrayscale = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
for (int y=0; y< height; ++y) {
for (int x=0; x< width; ++x){
int color = bmpOriginal.getPixel(x, y);
int r = (color >> 16) & 0xFF;
int g = (color >> 8) & 0xFF;
int b = color & 0xFF;
int gray = (r+g+b)/3;
color = Color.rgb(gray, gray, gray);
//color = Color.rgb(r/3, g/3, b/3);
bmpGrayscale.setPixel(x, y, color);
}
}
return bmpGrayscale;
}
//Converts image to binary (OLD)
public Bitmap toBinary(Bitmap bmpOriginal)
{
int width, height;
height = bmpOriginal.getHeight();
width = bmpOriginal.getWidth();
Bitmap bmpGrayscale = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);
Canvas c = new Canvas(bmpGrayscale);
Paint paint = new Paint();
ColorMatrix cm = new ColorMatrix();
cm.setSaturation(0);
ColorMatrixColorFilter f = new ColorMatrixColorFilter(cm);
paint.setColorFilter(f);
c.drawBitmap(bmpOriginal, 0, 0, paint);
return bmpGrayscale;
}
public void DumpFile(String fileName, byte[] buffer)
{
//Uncomment section below to dump images and templates to SD card
/*
try {
File myFile = new File("/sdcard/Download/" + fileName);
myFile.createNewFile();
FileOutputStream fOut = new FileOutputStream(myFile);
fOut.write(buffer,0,buffer.length);
fOut.close();
} catch (Exception e) {
debugMessage("Exception when writing file" + fileName);
}
*/
}
public void match()
{
long dwTimeStart = 0, dwTimeEnd = 0, dwTimeElapsed = 0;
debugMessage("Clicked MATCH\n");
if (mVerifyImage != null)
mVerifyImage = null;
mVerifyImage = new byte[mImageWidth*mImageHeight];
ByteBuffer byteBuf = ByteBuffer.allocate(mImageWidth*mImageHeight);
dwTimeStart = System.currentTimeMillis();
long result = sgfplib.GetImage(mVerifyImage);
//DumpFile("verify.raw", mVerifyImage);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("GetImage() ret:" + result + " [" + dwTimeElapsed + "ms]\n");
//mImageViewFingerprint.setImageBitmap(this.toGrayscale(mVerifyImage));
//mImageViewVerify.setImageBitmap(this.toGrayscale(mVerifyImage));
dwTimeStart = System.currentTimeMillis();
result = sgfplib.SetTemplateFormat(SGFDxTemplateFormat.TEMPLATE_FORMAT_SG400);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("SetTemplateFormat(SG400) ret:" + result + " [" + dwTimeElapsed + "ms]\n");
SGFingerInfo fpInfo = new SGFingerInfo();
for (int i=0; i< mVerifyTemplate.length; ++i)
mVerifyTemplate[i] = 0;
dwTimeStart = System.currentTimeMillis();
result = sgfplib.CreateTemplate(fpInfo, mVerifyImage, mVerifyTemplate);
//DumpFile("verify.min", mVerifyTemplate);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("CreateTemplate() ret:" + result+ " [" + dwTimeElapsed + "ms]\n");
boolean[] matched = new boolean[1];
dwTimeStart = System.currentTimeMillis();
mRegisterTemplate = getUser();
result = sgfplib.MatchTemplate(mRegisterTemplate, mVerifyTemplate, SGFDxSecurityLevel.SL_NORMAL, matched);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("MatchTemplate() ret:" + result+ " [" + dwTimeElapsed + "ms]\n");
if (matched[0]) {
//mTextViewResult.setText("MATCHED!!\n");
//this.mCheckBoxMatched.setChecked(true);
debugMessage("MATCHED!!\n");
match = "<<MATCH>>";
}
else {
//mTextViewResult.setText("NOT MATCHED!!");
//this.mCheckBoxMatched.setChecked(false);
debugMessage("NOT MATCHED!!\n");
match = "<<NO MATCH>>";
}
byteBuf = null;
mVerifyImage = null;
fpInfo = null;
matched = null;
}
public void insertUser(String finger, byte[] template){
DatabaseHandler db = new DatabaseHandler(this);
SQLiteDatabase dbs = db.getWritableDatabase();
// DELETE THE EXISTING FINGER PRINT
//dbs.delete("FP_Data","crewid=",new String[]{crewid});
String sql = "INSERT INTO FP_Data (crewid,finger,image) VALUES(?,?,?)";
SQLiteStatement insertStmt = dbs.compileStatement(sql);
insertStmt.clearBindings();
insertStmt.bindString(1, crewid);
insertStmt.bindString(2,finger);
insertStmt.bindBlob(3, template);
insertStmt.executeInsert();
dbs.close();
db.close();
}
public byte[] getUser(){
byte[] storedTemplate = null;
DatabaseHandler db = new DatabaseHandler(this);
SQLiteDatabase dbs = db.getWritableDatabase();
//Toast.makeText(this, crewid, Toast.LENGTH_SHORT).show();
Log.d("crewid : ", "crewid");
Log.d("crewid : ", crewid);
String selectQuery = "SELECT * FROM FP_Data WHERE crewid='" + crewid + "'";
Log.d("selectQuery : ", selectQuery);
Log.d("registerflag : ", registerflag);
Cursor cursor = dbs.rawQuery(selectQuery, null);
// looping through all rows and adding to list
if (cursor.moveToFirst()) {
registerflag = "false";
Log.d("registerflag FALSE: ", registerflag);
//Log.d("ROW",cursor.getString(0));
mRegisterTemplate = cursor.getBlob(2);
registered_finger_1 = cursor.getString(1);
cursor.moveToNext();
mRegisterTemplate2 = cursor.getBlob(2);
registered_finger_2 = cursor.getString(1);
}
else
{
Log.d("registerflag TRUE: ", registerflag);
registerflag = "true";
}
db.close();
return storedTemplate;
}
private void SDKTest(){
//mTextViewResult.setText("");
debugMessage("\n###############\n");
debugMessage("### SDK Test ###\n");
debugMessage("###############\n");
int X_SIZE = 248;
int Y_SIZE = 292;
long error = 0;
byte[] sgTemplate1;
byte[] sgTemplate2;
byte[] sgTemplate3;
byte[] ansiTemplate1;
byte[] ansiTemplate2;
byte[] isoTemplate1;
byte[] isoTemplate2;
byte[] ansiTemplate1Windows;
byte[] ansiTemplate2Windows;
byte[] ansiTemplate3Windows;
int[] size = new int[1];
int[] score = new int[1];
int[] quality1 = new int[1];
int[] quality2 = new int[1];
int[] quality3 = new int[1];
long nfiq1;
long nfiq2;
long nfiq3;
boolean[] matched = new boolean[1];
byte[] finger1 = new byte[X_SIZE*Y_SIZE];
byte[] finger2 = new byte[X_SIZE*Y_SIZE];
byte[] finger3 = new byte[X_SIZE*Y_SIZE];
long dwTimeStart = 0, dwTimeEnd = 0, dwTimeElapsed = 0;
try {
InputStream fileInputStream =getResources().openRawResource(R.raw.finger_0_10_3);
error = fileInputStream.read(finger1);
fileInputStream.close();
} catch (IOException ex){
debugMessage("Error: Unable to find fingerprint image R.raw.finger_0_10_3.\n");
return;
}
try {
InputStream fileInputStream =getResources().openRawResource(R.raw.finger_1_10_3);
error = fileInputStream.read(finger2);
fileInputStream.close();
} catch (IOException ex){
debugMessage("Error: Unable to find fingerprint image R.raw.finger_1_10_3.\n");
return;
}
try {
InputStream fileInputStream =getResources().openRawResource(R.raw.finger_2_10_3);
error = fileInputStream.read(finger3);
fileInputStream.close();
} catch (IOException ex){
debugMessage("Error: Unable to find fingerprint image R.raw.finger_2_10_3.\n");
return;
}
try {
InputStream fileInputStream =getResources().openRawResource(R.raw.ansi378_0_10_3_windows);
int length = fileInputStream.available();
debugMessage("ansi378_0_10_3_windows.ansi378 \n\ttemplate length is: " + length + "\n");
ansiTemplate1Windows = new byte[length];
error = fileInputStream.read(ansiTemplate1Windows);
debugMessage("\tRead: " + error + "bytes\n");
fileInputStream.close();
} catch (IOException ex){
debugMessage("Error: Unable to find fingerprint image R.raw.ansi378_0_10_3_windows.ansi378.\n");
return;
}
try {
InputStream fileInputStream =getResources().openRawResource(R.raw.ansi378_1_10_3_windows);
int length = fileInputStream.available();
debugMessage("ansi378_1_10_3_windows.ansi378 \n\ttemplate length is: " + length + "\n");
ansiTemplate2Windows = new byte[length];
error = fileInputStream.read(ansiTemplate2Windows);
debugMessage("\tRead: " + error + "bytes\n");
fileInputStream.close();
} catch (IOException ex){
debugMessage("Error: Unable to find fingerprint image R.raw.ansi378_1_10_3_windows.ansi378.\n");
return;
}
try {
InputStream fileInputStream =getResources().openRawResource(R.raw.ansi378_2_10_3_windows);
int length = fileInputStream.available();
debugMessage("ansi378_2_10_3_windows.ansi378 \n\ttemplate length is: " + length + "\n");
ansiTemplate3Windows = new byte[length];
error = fileInputStream.read(ansiTemplate3Windows);
debugMessage("\tRead: " + error + "bytes\n");
fileInputStream.close();
} catch (IOException ex){
debugMessage("Error: Unable to find fingerprint image R.raw.ansi378_2_10_3_windows.ansi378.\n");
return;
}
JSGFPLib sgFplibSDKTest = new JSGFPLib((UsbManager)getSystemService(Context.USB_SERVICE));
error = sgFplibSDKTest.InitEx( X_SIZE, Y_SIZE, 500);
debugMessage("InitEx("+ X_SIZE + "," + Y_SIZE + ",500) ret:" + error + "\n");
if (error != SGFDxErrorCode.SGFDX_ERROR_NONE)
return;
SGFingerInfo fpInfo1 = new SGFingerInfo();
SGFingerInfo fpInfo2 = new SGFingerInfo();
SGFingerInfo fpInfo3 = new SGFingerInfo();
error = sgFplibSDKTest.GetImageQuality((long)X_SIZE, (long)Y_SIZE, finger1, quality1);
debugMessage("GetImageQuality(R.raw.finger_0_10_3) ret:" + error + "\n\tFinger quality=" + quality1[0] + "\n");
error = sgFplibSDKTest.GetImageQuality((long)X_SIZE, (long)Y_SIZE, finger2, quality2);
debugMessage("GetImageQuality(R.raw.finger_1_10_3) ret:" + error + "\n\tFinger quality=" + quality2[0] + "\n");
error = sgFplibSDKTest.GetImageQuality((long)X_SIZE, (long)Y_SIZE, finger3, quality3);
debugMessage("GetImageQuality(R.raw.finger_2_10_3) ret:" + error + "\n\tFinger quality=" + quality3[0] + "\n");
dwTimeStart = System.currentTimeMillis();
nfiq1 = sgFplibSDKTest.ComputeNFIQ(finger1, X_SIZE, Y_SIZE);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("ComputeNFIQ(R.raw.finger_0_10_3)\n\tNFIQ=" + nfiq1 + "\n");
if (nfiq1 == 2)
debugMessage("\t+++PASS\n");
else
debugMessage("\t+++FAIL!!!!!!!!!!!!!!!!!!\n");
debugMessage("\t" + dwTimeElapsed + " milliseconds\n");
dwTimeStart = System.currentTimeMillis();
nfiq2 = sgFplibSDKTest.ComputeNFIQ(finger2, X_SIZE, Y_SIZE);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("ComputeNFIQ(R.raw.finger_1_10_3)\n\tNFIQ=" + nfiq2 + "\n");
if (nfiq2 == 3)
debugMessage("\t+++PASS\n");
else
debugMessage("\t+++FAIL!!!!!!!!!!!!!!!!!!\n");
debugMessage("\t" + dwTimeElapsed + " milliseconds\n");
dwTimeStart = System.currentTimeMillis();
nfiq3 = sgFplibSDKTest.ComputeNFIQ(finger3, X_SIZE, Y_SIZE);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("ComputeNFIQ(R.raw.finger_2_10_3)\n\tNFIQ=" + nfiq3 + "\n");
if (nfiq3 == 2)
debugMessage("\t+++PASS\n");
else
debugMessage("\t+++FAIL!!!!!!!!!!!!!!!!!!\n");
debugMessage("\t" + dwTimeElapsed + " milliseconds\n");
fpInfo1.FingerNumber = 1;
fpInfo1.ImageQuality = quality1[0];
fpInfo1.ImpressionType = SGImpressionType.SG_IMPTYPE_LP;
fpInfo1.ViewNumber = 1;
fpInfo2.FingerNumber = 1;
fpInfo2.ImageQuality = quality2[0];
fpInfo2.ImpressionType = SGImpressionType.SG_IMPTYPE_LP;
fpInfo2.ViewNumber = 2;
fpInfo3.FingerNumber = 1;
fpInfo3.ImageQuality = quality3[0];
fpInfo3.ImpressionType = SGImpressionType.SG_IMPTYPE_LP;
fpInfo3.ViewNumber = 3;
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
//TEST SG400
debugMessage("#######################\n");
debugMessage("TEST SG400\n");
debugMessage("###\n###\n");
error = sgFplibSDKTest.SetTemplateFormat(SGFDxTemplateFormat.TEMPLATE_FORMAT_SG400);
debugMessage("SetTemplateFormat(SG400) ret:" + error + "\n");
error = sgFplibSDKTest.GetMaxTemplateSize(size);
debugMessage("GetMaxTemplateSize() ret:" + error + " SG400_MAX_SIZE=" + size[0] + "\n");
sgTemplate1 = new byte[size[0]];
sgTemplate2 = new byte[size[0]];
sgTemplate3 = new byte[size[0]];
//TEST DeviceInfo
error = sgFplibSDKTest.CreateTemplate(null, finger1, sgTemplate1);
debugMessage("CreateTemplate(finger3) ret:" + error + "\n");
error = sgFplibSDKTest.GetTemplateSize(sgTemplate1, size);
debugMessage("GetTemplateSize() ret:" + error + " size=" + size[0] + "\n");
error = sgFplibSDKTest.CreateTemplate(null, finger2, sgTemplate2);
debugMessage("CreateTemplate(finger2) ret:" + error + "\n");
error = sgFplibSDKTest.GetTemplateSize(sgTemplate2, size);
debugMessage("GetTemplateSize() ret:" + error + " size=" + size[0] + "\n");
error = sgFplibSDKTest.CreateTemplate(null, finger3, sgTemplate3);
debugMessage("CreateTemplate(finger3) ret:" + error + "\n");
error = sgFplibSDKTest.GetTemplateSize(sgTemplate3, size);
debugMessage("GetTemplateSize() ret:" + error + " size=" + size[0] + "\n");
///////////////////////////////////////////////////////////////////////////////////////////////
error = sgFplibSDKTest.MatchTemplate(sgTemplate1, sgTemplate2, SGFDxSecurityLevel.SL_NORMAL, matched);
debugMessage("MatchTemplate(sgTemplate1,sgTemplate2) \n\tret:" + error + "\n");
if (matched[0])
debugMessage("\tMATCHED!!\n");
else
debugMessage("\tNOT MATCHED!!\n");
error = sgFplibSDKTest.GetMatchingScore(sgTemplate1, sgTemplate2, score);
debugMessage("GetMatchingScore(sgTemplate1, sgTemplate2) \n\tret:" + error + ". \n\tScore:" + score[0] + "\n");
///////////////////////////////////////////////////////////////////////////////////////////////
error = sgFplibSDKTest.MatchTemplate(sgTemplate1, sgTemplate3, SGFDxSecurityLevel.SL_NORMAL, matched);
debugMessage("MatchTemplate(sgTemplate1,sgTemplate3) \n\tret:" + error + "\n");
if (matched[0])
debugMessage("\tMATCHED!!\n");
else
debugMessage("\tNOT MATCHED!!\n");
error = sgFplibSDKTest.GetMatchingScore(sgTemplate1, sgTemplate3, score);
debugMessage("GetMatchingScore(sgTemplate1, sgTemplate3) \n\tret:" + error + ". \n\tScore:" + score[0] + "\n");
///////////////////////////////////////////////////////////////////////////////////////////////
error = sgFplibSDKTest.MatchTemplate(sgTemplate2, sgTemplate3, SGFDxSecurityLevel.SL_NORMAL, matched);
debugMessage("MatchTemplate(sgTemplate2,sgTemplate3) \n\tret:" + error + "\n");
if (matched[0])
debugMessage("\tMATCHED!!\n");
else
debugMessage("\tNOT MATCHED!!\n");
error = sgFplibSDKTest.GetMatchingScore(sgTemplate2, sgTemplate3, score);
debugMessage("GetMatchingScore(sgTemplate2, sgTemplate3) \n\tret:" + error + ". \n\tScore:" + score[0] + "\n");
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
//TEST ANSI378
debugMessage("#######################\n");
debugMessage("TEST ANSI378\n");
debugMessage("###\n###\n");
error = sgFplibSDKTest.SetTemplateFormat(SGFDxTemplateFormat.TEMPLATE_FORMAT_ANSI378);
debugMessage("SetTemplateFormat(ANSI378) ret:" + error + "\n");
error = sgFplibSDKTest.GetMaxTemplateSize(size);
debugMessage("GetMaxTemplateSize() ret:" + error + "\n\tANSI378_MAX_SIZE=" + size[0] + "\n");
ansiTemplate1 = new byte[size[0]];
ansiTemplate2 = new byte[size[0]];
error = sgFplibSDKTest.CreateTemplate(fpInfo1, finger1, ansiTemplate1);
debugMessage("CreateTemplate(finger1) ret:" + error + "\n");
error = sgFplibSDKTest.GetTemplateSize(ansiTemplate1, size);
debugMessage("GetTemplateSize(ansi) ret:" + error + " size=" + size[0] + "\n");
error = sgFplibSDKTest.CreateTemplate(fpInfo2, finger2, ansiTemplate2);
debugMessage("CreateTemplate(finger2) ret:" + error + "\n");
error = sgFplibSDKTest.GetTemplateSize(ansiTemplate2, size);
debugMessage("GetTemplateSize(ansi) ret:" + error + " size=" + size[0] + "\n");
error = sgFplibSDKTest.MatchTemplate(ansiTemplate1, ansiTemplate2, SGFDxSecurityLevel.SL_NORMAL, matched);
debugMessage("MatchTemplate(ansi) ret:" + error + "\n");
if (matched[0])
debugMessage("\tMATCHED!!\n");
else
debugMessage("\tNOT MATCHED!!\n");
error = sgFplibSDKTest.GetMatchingScore(ansiTemplate1, ansiTemplate2, score);
debugMessage("GetMatchingScore(ansi) ret:" + error + ". \n\tScore:" + score[0] + "\n");
error = sgFplibSDKTest.GetTemplateSizeAfterMerge(ansiTemplate1, ansiTemplate2, size);
debugMessage("GetTemplateSizeAfterMerge(ansi) ret:" + error + ". \n\tSize:" + size[0] + "\n");
byte[] mergedAnsiTemplate1 = new byte[size[0]];
error = sgFplibSDKTest.MergeAnsiTemplate(ansiTemplate1, ansiTemplate2, mergedAnsiTemplate1);
debugMessage("MergeAnsiTemplate() ret:" + error + "\n");
error = sgFplibSDKTest.MatchAnsiTemplate(ansiTemplate1, 0, mergedAnsiTemplate1, 0, SGFDxSecurityLevel.SL_NORMAL, matched);
debugMessage("MatchAnsiTemplate(0,0) ret:" + error + "\n");
if (matched[0])
debugMessage("\tMATCHED!!\n");
else
debugMessage("\tNOT MATCHED!!\n");
error = sgFplibSDKTest.MatchAnsiTemplate(ansiTemplate1, 0, mergedAnsiTemplate1, 1, SGFDxSecurityLevel.SL_NORMAL, matched);
debugMessage("MatchAnsiTemplate(0,1) ret:" + error + "\n");
if (matched[0])
debugMessage("\tMATCHED!!\n");
else
debugMessage("\tNOT MATCHED!!\n");
error = sgFplibSDKTest.GetAnsiMatchingScore(ansiTemplate1, 0, mergedAnsiTemplate1, 0, score);
debugMessage("GetAnsiMatchingScore(0,0) ret:" + error + ". \n\tScore:" + score[0] + "\n");
error = sgFplibSDKTest.GetAnsiMatchingScore(ansiTemplate1, 0, mergedAnsiTemplate1, 1, score);
debugMessage("GetAnsiMatchingScore(0,1) ret:" + error + ". \n\tScore:" + score[0] + "\n");
SGANSITemplateInfo ansiTemplateInfo = new SGANSITemplateInfo();
error = sgFplibSDKTest.GetAnsiTemplateInfo(ansiTemplate1, ansiTemplateInfo);
debugMessage("GetAnsiTemplateInfo(ansiTemplate1) ret:" + error + "\n");
debugMessage(" TotalSamples=" + ansiTemplateInfo.TotalSamples + "\n");
for (int i=0; i<ansiTemplateInfo.TotalSamples; ++i){
debugMessage(" Sample[" + i + "].FingerNumber=" + ansiTemplateInfo.SampleInfo[i].FingerNumber + "\n");
debugMessage(" Sample[" + i + "].ImageQuality=" + ansiTemplateInfo.SampleInfo[i].ImageQuality + "\n");
debugMessage(" Sample[" + i + "].ImpressionType=" + ansiTemplateInfo.SampleInfo[i].ImpressionType + "\n");
debugMessage(" Sample[" + i + "].ViewNumber=" + ansiTemplateInfo.SampleInfo[i].ViewNumber + "\n");
}
error = sgFplibSDKTest.GetAnsiTemplateInfo(mergedAnsiTemplate1, ansiTemplateInfo);
debugMessage("GetAnsiTemplateInfo(mergedAnsiTemplate1) ret:" + error + "\n");
debugMessage(" TotalSamples=" + ansiTemplateInfo.TotalSamples + "\n");
for (int i=0; i<ansiTemplateInfo.TotalSamples; ++i){
debugMessage(" Sample[" + i + "].FingerNumber=" + ansiTemplateInfo.SampleInfo[i].FingerNumber + "\n");
debugMessage(" Sample[" + i + "].ImageQuality=" + ansiTemplateInfo.SampleInfo[i].ImageQuality + "\n");
debugMessage(" Sample[" + i + "].ImpressionType=" + ansiTemplateInfo.SampleInfo[i].ImpressionType + "\n");
debugMessage(" Sample[" + i + "].ViewNumber=" + ansiTemplateInfo.SampleInfo[i].ViewNumber + "\n");
}
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
//ALGORITHM COMPATIBILITY TEST
boolean compatible;
debugMessage("#######################\n");
debugMessage("TEST ANSI378 Compatibility\n");
debugMessage("###\n###\n");
///
error = sgFplibSDKTest.GetMatchingScore(ansiTemplate1, ansiTemplate1Windows, score);
debugMessage("0_10_3.raw <> 0_10_3.ansiw:" + score[0] + "\n");
if (score[0] == 199)
debugMessage("\t+++PASS\n");
else
debugMessage("\t+++FAIL!!!!!!!!!!!!!!!!!!\n");
///
error = sgFplibSDKTest.GetMatchingScore(ansiTemplate1, ansiTemplate2Windows, score);
debugMessage("0_10_3.raw <> 1_10_3.ansiw:" + score[0] + "\n");
if (score[0] == 199)
debugMessage("\t+++PASS\n");
else
debugMessage("\t+++FAIL!!!!!!!!!!!!!!!!!!\n");
///
error = sgFplibSDKTest.GetMatchingScore(ansiTemplate1, ansiTemplate3Windows, score);
debugMessage("0_10_3.raw <> 2_10_3.ansiw:" + score[0] + "\n");
if (score[0] == 176)
debugMessage("\t+++PASS\n");
else
debugMessage("\t+++FAIL!!!!!!!!!!!!!!!!!!\n");
///
error = sgFplibSDKTest.GetMatchingScore(ansiTemplate2, ansiTemplate3Windows, score);
if (score[0] == 192)
compatible = true;
else
compatible = false;
debugMessage("1_10_3.raw <> 2_10_3.ansiw:" + score[0] + "\n\tCompatible:" + compatible + "\n");
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
//TEST ISO19794-2
debugMessage("#######################\n");
debugMessage("TEST ISO19794-2\n");
debugMessage("###\n###\n");
error = sgFplibSDKTest.SetTemplateFormat(SGFDxTemplateFormat.TEMPLATE_FORMAT_ISO19794);
debugMessage("SetTemplateFormat(ISO19794) ret:" + error + "\n");
error = sgFplibSDKTest.GetMaxTemplateSize(size);
debugMessage("GetMaxTemplateSize() ret:" + error + " ISO19794_MAX_SIZE=" + size[0] + "\n");
isoTemplate1 = new byte[size[0]];
isoTemplate2 = new byte[size[0]];
error = sgFplibSDKTest.CreateTemplate(fpInfo1, finger1, isoTemplate1);
debugMessage("CreateTemplate(finger1) ret:" + error + "\n");
error = sgFplibSDKTest.GetTemplateSize(isoTemplate1, size);
debugMessage("GetTemplateSize(iso) ret:" + error + " \n\tsize=" + size[0] + "\n");
error = sgFplibSDKTest.CreateTemplate(fpInfo2, finger2, isoTemplate2);
debugMessage("CreateTemplate(finger2) ret:" + error + "\n");
error = sgFplibSDKTest.GetTemplateSize(isoTemplate2, size);
debugMessage("GetTemplateSize(iso) ret:" + error + " \n\tsize=" + size[0] + "\n");
error = sgFplibSDKTest.MatchTemplate(isoTemplate1, isoTemplate2, SGFDxSecurityLevel.SL_NORMAL, matched);
debugMessage("MatchTemplate(iso) ret:" + error + "\n");
if (matched[0])
debugMessage("\tMATCHED!!\n");
else
debugMessage("\tNOT MATCHED!!\n");
error = sgFplibSDKTest.GetMatchingScore(isoTemplate1, isoTemplate2, score);
debugMessage("GetMatchingScore(iso) ret:" + error + ". \n\tScore:" + score[0] + "\n");
error = sgFplibSDKTest.GetIsoTemplateSizeAfterMerge(isoTemplate1, isoTemplate2, size);
debugMessage("GetIsoTemplateSizeAfterMerge() ret:" + error + ". \n\tSize:" + size[0] + "\n");
byte[] mergedIsoTemplate1 = new byte[size[0]];
error = sgFplibSDKTest.MergeIsoTemplate(isoTemplate1, isoTemplate2, mergedIsoTemplate1);
debugMessage("MergeIsoTemplate() ret:" + error + "\n");
error = sgFplibSDKTest.MatchIsoTemplate(isoTemplate1, 0, mergedIsoTemplate1, 0, SGFDxSecurityLevel.SL_NORMAL, matched);
debugMessage("MatchIsoTemplate(0,0) ret:" + error + "\n");
if (matched[0])
debugMessage("\tMATCHED!!\n");
else
debugMessage("\tNOT MATCHED!!\n");
error = sgFplibSDKTest.MatchIsoTemplate(isoTemplate1, 0, mergedIsoTemplate1, 1, SGFDxSecurityLevel.SL_NORMAL, matched);
debugMessage("MatchIsoTemplate(0,1) ret:" + error + "\n");
if (matched[0])
debugMessage("\tMATCHED!!\n");
else
debugMessage("\tNOT MATCHED!!\n");
error = sgFplibSDKTest.GetIsoMatchingScore(isoTemplate1, 0, mergedIsoTemplate1, 0, score);
debugMessage("GetIsoMatchingScore(0,0) ret:" + error + ". \n\tScore:" + score[0] + "\n");
error = sgFplibSDKTest.GetIsoMatchingScore(isoTemplate1, 0, mergedIsoTemplate1, 1, score);
debugMessage("GetIsoMatchingScore(0,1) ret:" + error + ". \n\tScore:" + score[0] + "\n");
SGISOTemplateInfo isoTemplateInfo = new SGISOTemplateInfo();
error = sgFplibSDKTest.GetIsoTemplateInfo(isoTemplate1, isoTemplateInfo);
debugMessage("GetIsoTemplateInfo(isoTemplate1) \n\tret:" + error + "\n");
debugMessage("\tTotalSamples=" + isoTemplateInfo.TotalSamples + "\n");
for (int i=0; i<isoTemplateInfo.TotalSamples; ++i){
debugMessage("\tSample[" + i + "].FingerNumber=" + isoTemplateInfo.SampleInfo[i].FingerNumber + "\n");
debugMessage("\tSample[" + i + "].ImageQuality=" + isoTemplateInfo.SampleInfo[i].ImageQuality + "\n");
debugMessage("\tSample[" + i + "].ImpressionType=" + isoTemplateInfo.SampleInfo[i].ImpressionType + "\n");
debugMessage("\tSample[" + i + "].ViewNumber=" + isoTemplateInfo.SampleInfo[i].ViewNumber + "\n");
}
error = sgFplibSDKTest.GetIsoTemplateInfo(mergedIsoTemplate1, isoTemplateInfo);
debugMessage("GetIsoTemplateInfo(mergedIsoTemplate1) \n\tret:" + error + "\n");
debugMessage("\tTotalSamples=" + isoTemplateInfo.TotalSamples + "\n");
for (int i=0; i<isoTemplateInfo.TotalSamples; ++i){
debugMessage("\tSample[" + i + "].FingerNumber=" + isoTemplateInfo.SampleInfo[i].FingerNumber + "\n");
debugMessage("\tSample[" + i + "].ImageQuality=" + isoTemplateInfo.SampleInfo[i].ImageQuality + "\n");
debugMessage("\tSample[" + i + "].ImpressionType=" + isoTemplateInfo.SampleInfo[i].ImpressionType + "\n");
debugMessage("\tSample[" + i + "].ViewNumber=" + isoTemplateInfo.SampleInfo[i].ViewNumber + "\n");
}
//Reset extractor/matcher for attached device opened in resume() method
error = sgFplibSDKTest.InitEx( mImageWidth, mImageHeight, 500);
debugMessage("InitEx("+ mImageWidth + "," + mImageHeight + ",500) ret:" + error + "\n");
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
//Test WSQ Processing
debugMessage("#######################\n");
debugMessage("TEST WSQ COMPRESSION\n");
debugMessage("###\n###\n");
byte[] wsqfinger1;
int wsqLen;
try {
InputStream fileInputStream =getResources().openRawResource(R.raw.wsq2raw_finger);
wsqLen = fileInputStream.available();
debugMessage("WSQ file length is: " + wsqLen + "\n");
wsqfinger1 = new byte[wsqLen];
error = fileInputStream.read(wsqfinger1);
debugMessage("Read: " + error + "bytes\n");
fileInputStream.close();
} catch (IOException ex){
debugMessage("Error: Unable to find fingerprint image R.raw.wsq2raw_finger.\n");
return;
}
int[] fingerImageOutSize = new int[1];
dwTimeStart = System.currentTimeMillis();
error = sgFplibSDKTest.WSQGetDecodedImageSize(fingerImageOutSize, wsqfinger1, wsqLen);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("WSQGetDecodedImageSize() ret:" + error + "\n");
debugMessage("\tRAW Image size is: " + fingerImageOutSize[0] + "\n");
debugMessage("\t" + dwTimeElapsed + " milliseconds\n");
// debugMessage("Byte 0:"+ String.format("%02X",wsqfinger1[0]) + "\n");
// debugMessage("Byte 1:"+ String.format("%02X",wsqfinger1[1]) + "\n");
// debugMessage("Byte 201:"+ String.format("%02X",wsqfinger1[201]) + "\n");
// debugMessage("Byte 1566:"+ String.format("%02X",wsqfinger1[1566]) + "\n");
// debugMessage("Byte 7001:"+ String.format("%02X",wsqfinger1[7001]) + "\n");
// debugMessage("Byte 7291:"+ String.format("%02X",wsqfinger1[7291]) + "\n");
byte[] rawfinger1ImageOut = new byte[fingerImageOutSize[0]];
int[] decodeWidth = new int[1];
int[] decodeHeight = new int[1];
int[] decodePixelDepth = new int[1];
int[] decodePPI = new int[1];
int[] decodeLossyFlag = new int[1];
debugMessage("Decode WSQ File\n");
dwTimeStart = System.currentTimeMillis();
error = sgFplibSDKTest.WSQDecode(rawfinger1ImageOut, decodeWidth, decodeHeight, decodePixelDepth, decodePPI, decodeLossyFlag, wsqfinger1, wsqLen);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("\tret:\t\t\t"+ error + "\n");
debugMessage("\twidth:\t\t"+ decodeWidth[0] + "\n");
debugMessage("\theight:\t\t"+ decodeHeight[0] + "\n");
debugMessage("\tdepth:\t\t"+ decodePixelDepth[0] + "\n");
debugMessage("\tPPI:\t\t\t"+ decodePPI[0] + "\n");
debugMessage("\tLossy Flag\t"+ decodeLossyFlag[0] + "\n");
if ((decodeWidth[0] == 258) && (decodeHeight[0] == 336))
debugMessage("\t+++PASS\n");
else
debugMessage("\t+++FAIL!!!!!!!!!!!!!!!!!!\n");
debugMessage("\t" + dwTimeElapsed + " milliseconds\n");
//mImageViewFingerprint.setImageBitmap(this.toGrayscale(rawfinger1ImageOut, decodeWidth[0], decodeHeight[0]));
byte[] rawfinger1;
int encodeWidth=258;
int encodeHeight=336;
int encodePixelDepth=8;
int encodePPI=500;
int rawLen;
try {
InputStream fileInputStream =getResources().openRawResource(R.raw.raw2wsq_finger);
rawLen = fileInputStream.available();
debugMessage("RAW file length is: " + rawLen + "\n");
rawfinger1 = new byte[rawLen];
error = fileInputStream.read(rawfinger1);
debugMessage("Read: " + error + "bytes\n");
fileInputStream.close();
} catch (IOException ex){
debugMessage("Error: Unable to find fingerprint image R.raw.raw2wsq_finger.\n");
return;
}
int[] wsqImageOutSize = new int[1];
dwTimeStart = System.currentTimeMillis();
error = sgFplibSDKTest.WSQGetEncodedImageSize(wsqImageOutSize, SGWSQLib.BITRATE_5_TO_1, rawfinger1, encodeWidth, encodeHeight, encodePixelDepth, encodePPI);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("WSQGetEncodedImageSize() ret:" + error + "\n");
debugMessage("WSQ Image size is: " + wsqImageOutSize[0] + "\n");
if (wsqImageOutSize[0] == 20200)
debugMessage("\t+++PASS\n");
else
debugMessage("\t+++FAIL!!!!!!!!!!!!!!!!!!\n");
debugMessage("\t" + dwTimeElapsed + " milliseconds\n");
byte[] wsqfinger1ImageOut = new byte[wsqImageOutSize[0]];
dwTimeStart = System.currentTimeMillis();
error = sgFplibSDKTest.WSQEncode(wsqfinger1ImageOut, SGWSQLib.BITRATE_5_TO_1, rawfinger1, encodeWidth, encodeHeight, encodePixelDepth, encodePPI);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("WSQEncode() ret:" + error + "\n");
debugMessage("\t" + dwTimeElapsed + " milliseconds\n");
dwTimeStart = System.currentTimeMillis();
error = sgFplibSDKTest.WSQGetDecodedImageSize(fingerImageOutSize, wsqfinger1ImageOut, wsqImageOutSize[0]);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("WSQGetDecodedImageSize() ret:" + error + "\n");
debugMessage("RAW Image size is: " + fingerImageOutSize[0] + "\n");
debugMessage("\t" + dwTimeElapsed + " milliseconds\n");
byte[] rawfinger2ImageOut = new byte[fingerImageOutSize[0]];
dwTimeStart = System.currentTimeMillis();
error = sgFplibSDKTest.WSQDecode(rawfinger2ImageOut, decodeWidth, decodeHeight, decodePixelDepth, decodePPI, decodeLossyFlag, wsqfinger1, wsqLen);
dwTimeEnd = System.currentTimeMillis();
dwTimeElapsed = dwTimeEnd-dwTimeStart;
debugMessage("WSQDecode() ret:" + error + "\n");
debugMessage("\tret:\t\t\t"+ error + "\n");
debugMessage("\twidth:\t\t"+ decodeWidth[0] + "\n");
debugMessage("\theight:\t\t"+ decodeHeight[0] + "\n");
debugMessage("\tdepth:\t\t"+ decodePixelDepth[0] + "\n");
debugMessage("\tPPI:\t\t\t"+ decodePPI[0] + "\n");
debugMessage("\tLossy Flag\t"+ decodeLossyFlag[0] + "\n");
if ((decodeWidth[0] == 258) && (decodeHeight[0] == 336))
debugMessage("\t+++PASS\n");
else
debugMessage("\t+++FAIL!!!!!!!!!!!!!!!!!!\n");
//mImageViewFingerprint.setImageBitmap(this.toGrayscale(rawfinger2ImageOut, decodeWidth[0], decodeHeight[0]));
debugMessage("\t" + dwTimeElapsed + " milliseconds\n");
debugMessage("\n## END SDK TEST ##\n");
}
public void run() {
Log.d(TAG, "Enter run()");
//ByteBuffer buffer = ByteBuffer.allocate(1);
//UsbRequest request = new UsbRequest();
//request.initialize(mSGUsbInterface.getConnection(), mEndpointBulk);
//byte status = -1;
while (true) {
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
}
// queue a request on the interrupt endpoint
//request.queue(buffer, 1);
// send poll status command
// sendCommand(COMMAND_STATUS);
// wait for status event
/*
if (mSGUsbInterface.getConnection().requestWait() == request) {
byte newStatus = buffer.get(0);
if (newStatus != status) {
Log.d(TAG, "got status " + newStatus);
status = newStatus;
if ((status & COMMAND_FIRE) != 0) {
// stop firing
sendCommand(COMMAND_STOP);
}
}
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
} else {
Log.e(TAG, "requestWait failed, exiting");
break;
}
*/
}
}
private static File getOutputMediaFile(int type){
// To be safe, you should check that the SDCard is mounted
// using Environment.getExternalStorageState() before doing this.
File mediaStorageDir = new File(Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_PICTURES), "MyCameraApp");
// This location works best if you want the created images to be shared
// between applications and persist after your app has been uninstalled.
// Create the storage directory if it does not exist
if (! mediaStorageDir.exists()){
if (! mediaStorageDir.mkdirs()){
Log.d("MyCameraApp", "failed to create directory");
return null;
}
}
// Create a media file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
File mediaFile;
mediaFile = new File(mediaStorageDir.getPath() + File.separator +
"LOG_"+ timeStamp + ".txt");
return mediaFile;
}
} | [
"rangasanju@gmail.com"
] | rangasanju@gmail.com |
65a8888deecc6d8fd7e1a2fe36628146b138c9cf | c4eb49bdb797b68fac38cdb805c1b90d968cbbc9 | /src/dungeonfactory/BootsTwo.java | 84b1c0afa8915069bdf402f81ca90276ada4be08 | [
"MIT"
] | permissive | seth12619/DungeonFactory | 17cc004be598b7cb79a09b2786ae1d8277bdbb13 | 0a3df8244c31396f7bf3a0319a683e91fdac8c6e | refs/heads/master | 2020-12-24T19:03:55.315751 | 2017-07-11T06:35:23 | 2017-07-11T06:35:23 | 56,426,763 | 0 | 7 | null | 2017-07-11T06:35:24 | 2016-04-17T08:33:02 | Java | UTF-8 | Java | false | false | 556 | 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 dungeonfactory;
/**
*
* @author Seth, Icon, Marco
*/
public class BootsTwo extends Item{
@Override
public void setStats() {
super.name = "Cured Leather Boots";
super.description = "Cured Leather Boots. Dried at Appleloosa.";
super.type = "Boots";
super.atk = 0;
super.def= 3;
super.hp = 6;
}
}
| [
"seth_12619@yahoo.com.ph"
] | seth_12619@yahoo.com.ph |
8ef4e39c03e9792a70ab82e5992892b6317e7b76 | 147885d7eb4527c20b561af7d1dc0b38312bc39f | /lense/sdk/native/java/lense/core/collections/Array.java | a9842a61baae47e3c3a40ba37fe552f3acc63f36 | [] | no_license | sergiotaborda/lense-lang | 931d5afd81df307f81e5770f5f8a3cbbab800f23 | 472c4fc038f3c1fb3514c56f7ec77bfaa279560e | refs/heads/master | 2023-01-31T06:12:16.812809 | 2023-01-05T17:55:12 | 2023-01-05T17:55:12 | 44,053,128 | 2 | 0 | null | 2023-01-05T17:55:13 | 2015-10-11T13:29:13 | Java | UTF-8 | Java | false | false | 4,794 | java | package lense.core.collections;
import java.math.BigInteger;
import java.util.function.Function;
import lense.core.lang.Any;
import lense.core.lang.Maybe;
import lense.core.lang.java.Constructor;
import lense.core.lang.java.MethodSignature;
import lense.core.lang.java.PlatformSpecific;
import lense.core.lang.java.Property;
import lense.core.lang.java.Signature;
import lense.core.lang.reflection.ReifiedArguments;
import lense.core.lang.reflection.Type;
import lense.core.math.Natural;
import lense.core.math.Natural64;
@Signature("[=T<lense.core.lang.Any]::lense.core.collections.EditableSequence<T>")
public abstract class Array extends AbstractAssortment implements EditableSequence{
public final static Type RAW_TYPE = Type.forClass(Array.class);
@Constructor(paramsSignature = "lense.core.math.Natural, T")
public static Array constructor (ReifiedArguments args, Natural size, Any seed){
return SizeArrayStrategy.resolveSizeStrategy(size).resolveStrategy(args).createArrayFrom(size, seed);
}
@PlatformSpecific
public static Array fromAnyArray (ReifiedArguments args,Any ... arrayOfAny){
return SizeArrayStrategy.resolveStandardSizeStrategy().resolveStrategy(args).createArrayFrom(arrayOfAny);
}
@PlatformSpecific
public static Array booleanArrayfromNativeNumberString (String value){
BigInteger big = new BigInteger(value);
boolean[] array = new boolean[big.bitLength()];
for(int i = 0; i < big.bitLength();i++){
array[i] = big.testBit(i);
}
return new NativeBooleanArray(array);
}
@PlatformSpecific
public static <T> Array fromNative (ReifiedArguments args,T[] nativeArray, Function<T, Any> transform){
Any[] array = new Any[nativeArray.length];
for(int i =0; i< array.length; i++){
array[i] = transform.apply(nativeArray[i]);
}
return SizeArrayStrategy.resolveStandardSizeStrategy().resolveStrategy(args).createArrayFrom(array);
}
@Constructor(isImplicit = true, paramsSignature = "lense.core.collections.Sequence<T>")
public static Array constructor (ReifiedArguments args, Sequence seq){
return SizeArrayStrategy.resolveSizeStrategy(seq.getSize()).resolveStrategy(args).createArrayFrom(seq);
}
@Constructor( paramsSignature = "")
public static Array empty (ReifiedArguments args){
return SizeArrayStrategy.resolveSizeStrategy(Natural64.ZERO).resolveStrategy(args).createEmpty();
}
@Override @Property(indexed = true )
@MethodSignature( returnSignature = "T" , paramsSignature = "lense.core.math.Natural",declaringType = "lense.core.collections.Sequence" , override = true)
public abstract Any get(Natural index);
@Override @Property(indexed = true , setter = true)
@MethodSignature( returnSignature = "" , paramsSignature = "lense.core.math.Natural,T",declaringType = "lense.core.collections.EditableSequence" , override = true)
public abstract void set(Natural index, Any value);
@Override @Property(name = "size")
public abstract Natural getSize();
@Override @Property(name = "iterator")
@MethodSignature( returnSignature = "lense.core.collections.Iterator<T>", paramsSignature = "",declaringType = "lense.core.collections.Iterator" , override = true)
public abstract Iterator getIterator();
@Override @Property(name = "indexes")
@MethodSignature( returnSignature = "lense.core.collections.Progression<lense.core.math.Natural>", paramsSignature = "",declaringType = "lense.core.collections.Sequence" , override = true)
public abstract Progression getIndexes();
@Override @Property(name = "empty")
@MethodSignature( returnSignature = "lense.core.lang.Boolean", paramsSignature = "",declaringType = "lense.core.collections.Countable" , override = true)
public abstract boolean getEmpty();
public abstract boolean contains(Any other);
@MethodSignature( returnSignature = "lense.core.lang.Maybe<lense.core.math.Natural>", paramsSignature = "T")
public abstract Maybe indexOf(Any element);
public boolean containsAll(Assortment other) {
if (this.getEmpty()) {
return other.getEmpty();
}
Iterator it = other.getIterator();
while (it.moveNext()) {
if (!this.contains(it.current())) {
return false;
}
}
return true;
}
@MethodSignature( returnSignature = "lense.core.collections.Array<T>", paramsSignature = "")
public abstract Array duplicate();
@MethodSignature( returnSignature = "lense.core.collections.Array<T>", paramsSignature = "lense.core.collections.Array<T>")
public abstract Array copyTo(Array other);
@MethodSignature( returnSignature = "lense.core.collections.Array<T>", paramsSignature = "lense.core.collections.Array<T>,lense.core.math.Natural,lense.core.math.Natural")
public abstract Array copyTo(Array other, Natural sourceIndex, Natural destinationIndex, Natural length);
public abstract Type type();
}
| [
"sergiotaborda@yahoo.com.br"
] | sergiotaborda@yahoo.com.br |
205f08f2c9f6f5741d7fb847dde6dc7a06d081e4 | 6c24d45d0b78381921f702e6d151738b8c64e8aa | /mission3/src/ledger/LedgerMain.java | 68ec125dc4a49d804f7b4e8dd8777caccb01572e | [] | no_license | jyoo0323/codesquad-cocoa-java | 32d935d09da3628db4ed40bc9c9131012f4e7df9 | b19a2de30c0dd1849bcaf30c5c50cdaa90037c88 | refs/heads/main | 2023-01-19T05:06:13.957917 | 2020-11-27T08:09:11 | 2020-11-27T08:09:11 | 330,942,678 | 1 | 0 | null | 2021-01-19T10:26:29 | 2021-01-19T10:26:29 | null | UTF-8 | Java | false | false | 479 | java | package ledger;
import java.io.IOException;
import java.text.ParseException;
public class LedgerMain {
public static boolean isExit = false;
public static void main(String[] args) throws IOException, ParseException {
// UserService userService = new UserService();
// String username = userService.process();
String username = "august";
LedgerService ledgerService = new LedgerService(username);
ledgerService.process();
}
}
| [
"polynomeer@gmail.com"
] | polynomeer@gmail.com |
473e725f0759b07833d480ab90a7947415806a25 | 5661dd53062c92c32bb5acf958dc9065db7c8183 | /sourceCode/jdk.internal.vm.compiler/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/ObjectCloneNode.java | 48b17ccf4c8b30b457e0e3e025c1b63282e17f89 | [] | no_license | xzxxxx/JavaSourse | c21b80edb0c577831f5519b4ae0d4a71005f3dca | f944cd43d65fe81f0d9e93b2e3cd63b48d526df9 | refs/heads/master | 2023-05-09T12:45:02.793935 | 2021-06-03T00:45:51 | 2021-06-03T00:45:51 | 286,354,261 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,759 | java | /*
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.graalvm.compiler.hotspot.replacements;
import org.graalvm.compiler.core.common.type.AbstractPointerStamp;
import org.graalvm.compiler.core.common.type.Stamp;
import org.graalvm.compiler.core.common.type.StampPair;
import org.graalvm.compiler.debug.DebugContext;
import org.graalvm.compiler.graph.NodeClass;
import org.graalvm.compiler.hotspot.meta.HotSpotLoweringProvider;
import org.graalvm.compiler.nodeinfo.NodeInfo;
import org.graalvm.compiler.nodes.CallTargetNode.InvokeKind;
import org.graalvm.compiler.nodes.NodeView;
import org.graalvm.compiler.nodes.ParameterNode;
import org.graalvm.compiler.nodes.ReturnNode;
import org.graalvm.compiler.nodes.StructuredGraph;
import org.graalvm.compiler.nodes.StructuredGraph.AllowAssumptions;
import org.graalvm.compiler.nodes.ValueNode;
import org.graalvm.compiler.nodes.java.LoadFieldNode;
import org.graalvm.compiler.nodes.java.NewInstanceNode;
import org.graalvm.compiler.nodes.java.StoreFieldNode;
import org.graalvm.compiler.nodes.spi.LoweringTool;
import org.graalvm.compiler.nodes.spi.Replacements;
import org.graalvm.compiler.nodes.type.StampTool;
import org.graalvm.compiler.replacements.SnippetTemplate.SnippetInfo;
import org.graalvm.compiler.replacements.nodes.BasicObjectCloneNode;
import jdk.vm.ci.meta.Assumptions;
import jdk.vm.ci.meta.ResolvedJavaField;
import jdk.vm.ci.meta.ResolvedJavaMethod;
import jdk.vm.ci.meta.ResolvedJavaType;
@NodeInfo
public final class ObjectCloneNode extends BasicObjectCloneNode {
public static final NodeClass<ObjectCloneNode> TYPE = NodeClass.create(ObjectCloneNode.class);
public ObjectCloneNode(InvokeKind invokeKind, ResolvedJavaMethod targetMethod, int bci, StampPair returnStamp, ValueNode receiver) {
super(TYPE, invokeKind, targetMethod, bci, returnStamp, receiver);
}
@Override
protected Stamp computeStamp(ValueNode object) {
if (getConcreteType(object.stamp(NodeView.DEFAULT)) != null) {
return AbstractPointerStamp.pointerNonNull(object.stamp(NodeView.DEFAULT));
}
/*
* If this call can't be intrinsified don't report a non-null stamp, otherwise the stamp
* would change when this is lowered back to an invoke and we might lose a null check.
*/
return AbstractPointerStamp.pointerMaybeNull(object.stamp(NodeView.DEFAULT));
}
@Override
@SuppressWarnings("try")
protected StructuredGraph getLoweredSnippetGraph(LoweringTool tool) {
ResolvedJavaType type = StampTool.typeOrNull(getObject());
if (type != null) {
if (type.isArray()) {
HotSpotLoweringProvider lowerer = (HotSpotLoweringProvider) tool.getLowerer();
ObjectCloneSnippets.Templates objectCloneSnippets = lowerer.getObjectCloneSnippets();
SnippetInfo info = objectCloneSnippets.arrayCloneMethods.get(type.getComponentType().getJavaKind());
if (info != null) {
final ResolvedJavaMethod snippetMethod = info.getMethod();
final Replacements replacements = tool.getReplacements();
StructuredGraph snippetGraph = null;
DebugContext debug = getDebug();
try (DebugContext.Scope s = debug.scope("ArrayCloneSnippet", snippetMethod)) {
snippetGraph = replacements.getSnippet(snippetMethod, null, null, graph().trackNodeSourcePosition(), this.getNodeSourcePosition(), debug.getOptions());
} catch (Throwable e) {
throw debug.handle(e);
}
assert snippetGraph != null : "ObjectCloneSnippets should be installed";
assert getConcreteType(stamp(NodeView.DEFAULT)) != null;
return lowerReplacement((StructuredGraph) snippetGraph.copy(getDebug()), tool);
}
assert false : "unhandled array type " + type.getComponentType().getJavaKind();
} else {
Assumptions assumptions = graph().getAssumptions();
type = getConcreteType(getObject().stamp(NodeView.DEFAULT));
if (type != null) {
StructuredGraph newGraph = new StructuredGraph.Builder(graph().getOptions(), graph().getDebug(), AllowAssumptions.ifNonNull(assumptions)).name("<clone>").build();
ParameterNode param = newGraph.addWithoutUnique(new ParameterNode(0, StampPair.createSingle(getObject().stamp(NodeView.DEFAULT))));
NewInstanceNode newInstance = newGraph.add(new NewInstanceNode(type, true));
newGraph.addAfterFixed(newGraph.start(), newInstance);
ReturnNode returnNode = newGraph.add(new ReturnNode(newInstance));
newGraph.addAfterFixed(newInstance, returnNode);
for (ResolvedJavaField field : type.getInstanceFields(true)) {
LoadFieldNode load = newGraph.add(LoadFieldNode.create(newGraph.getAssumptions(), param, field));
newGraph.addBeforeFixed(returnNode, load);
newGraph.addBeforeFixed(returnNode, newGraph.add(new StoreFieldNode(newInstance, field, load)));
}
assert getConcreteType(stamp(NodeView.DEFAULT)) != null;
return lowerReplacement(newGraph, tool);
}
}
}
assert getConcreteType(stamp(NodeView.DEFAULT)) == null;
return null;
}
}
| [
"876348054@qq.com"
] | 876348054@qq.com |
2151d655c6ae190c724046ac4b7a31b953dd2e39 | 91845ba019288683325b74dbffe84512503dd34a | /org.xjtusicd3.portal/src/main/java/org/xjtusicd3/portal/view/AnswerView.java | d40f598dfbb5791e12a49f1dd0d504c855b0159f | [] | no_license | zhaoyanqing624/weike | e54ba932eed75827b9b7e9c4abda704019e4c5b3 | 52fd91df3bb5298761a135106e701880176a95b8 | refs/heads/master | 2021-01-12T01:02:10.790595 | 2017-01-08T10:07:31 | 2017-01-08T10:07:31 | 77,588,743 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,641 | java | package org.xjtusicd3.portal.view;
import org.xjtusicd3.database.model.AnswerportalPersistence;
public class AnswerView {
private int answerId;
private String questionTitle;
private String userName;
private String answerName;
private String answerDate;
private int answerBest;
public int getAnswerBest() {
return answerBest;
}
public void setAnswerBest(int answerBest) {
this.answerBest = answerBest;
}
public int getAnswerId() {
return answerId;
}
public void setAnswerId(int answerId) {
this.answerId = answerId;
}
public String getQuestionTitle() {
return questionTitle;
}
public void setQuestionTitle(String questionTitle) {
this.questionTitle = questionTitle;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getAnswerName() {
return answerName;
}
public void setAnswerName(String answerName) {
this.answerName = answerName;
}
public String getAnswerDate() {
return answerDate;
}
public void setAnswerDate(String answerDate) {
this.answerDate = answerDate;
}
public AnswerView(AnswerportalPersistence answerportalPersistence){
this.answerId = answerportalPersistence.getAnswerId();
this.questionTitle = answerportalPersistence.getQuestionTitle();
this.userName = answerportalPersistence.getUserName();
this.answerName = answerportalPersistence.getAnswerName();
this.answerDate = answerportalPersistence.getAnswerDate();
this.answerBest = answerportalPersistence.getAnswerBest();
}
public AnswerView(){
}
}
| [
"77528570@qq.com"
] | 77528570@qq.com |
096809958fcd4de30eab7de72d6a5ad035e2ef94 | c94b568e7d32e9f0bb52568538eaeab257bb7d05 | /portfolio/src/main/java/com/satya/career/service/SkillServiceImpl.java | bb23c6ac1c76a88296091cdac7087f8898a20c37 | [] | no_license | harisatyasrinivas/myPortfolio_v1 | a7a7ab5b5160c0239d0966ef51c3795b7478f00d | dc642adae53e2745fbc0427fe08e7adc38782493 | refs/heads/master | 2020-09-12T04:12:41.483037 | 2019-11-18T19:36:04 | 2019-11-18T19:36:04 | 222,300,440 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 432 | java | package com.satya.career.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.satya.career.dao.SkillDao;
import com.satya.career.entity.Skill;
@Service
public class SkillServiceImpl implements SkillService {
@Autowired
private SkillDao skillDao;
@Override
public List<Skill> getSkill() {
return skillDao.findAll();
}
}
| [
"satyasrinivas1234@gmail.com"
] | satyasrinivas1234@gmail.com |
9f58b5cd806741b7817f0d5025e02dc216774b52 | e2725854475a0e9ba49b6d6a067e99904ca22c2a | /src/Hamster.java | 4fcfc720e21f59a85dd51b474841f7e4a3b4898a | [] | no_license | qiuyliu/algorithm_coding | e05bb101dad3db620c8f687966e5fdfa029d0d54 | 7edfa678fc7c1d19f9547e9efe689c60e90f0092 | refs/heads/master | 2023-08-21T02:30:20.997170 | 2021-09-26T20:59:07 | 2021-09-26T20:59:07 | 273,162,323 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,722 | java | import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;
import java.util.concurrent.TimeUnit;
public class Hamster {
public static int[] hamsterTime(String[][] grid) {
System.out.println(grid);
if (grid == null || grid.length == 0 || grid[0] == null || grid[0].length <= 1) {
return new int[]{-1, -1};
}
int row = grid.length, col = grid[0].length;
int sleep = 0, wake = 0;
for (int i = 0; i < row; i++) {
String start = grid[i][0];
String end = grid[i][1];
DateFormat format = new SimpleDateFormat("HH:mm");
Date d1 = null, d2 = null, d3 = null;
try{
d1 = format.parse(start);
d2 = format.parse(end);
} catch (ParseException e) {
e.printStackTrace();
}
long sleepDiff = d2.getTime() - d1.getTime();
long minutes = TimeUnit.MILLISECONDS.toMinutes(sleepDiff);
sleep += Math.abs((int)minutes);
if (i < row-1) {
String nextSleep = grid[i+1][0];
try{
d3 = format.parse(nextSleep);
} catch (ParseException e) {
e.printStackTrace();
}
long wakeDiff = d2.getTime() - d3.getTime();
wakeDiff = TimeUnit.MILLISECONDS.toMinutes(wakeDiff);
wake += Math.abs((int)wakeDiff);
}
}
System.out.println(sleep);
int[] ans = {sleep, wake};
return ans;
}
public static void main(String[] args) {
String input = "1\n"
+"\n"
+"3\n"
+"05:00 06:00\n"
+"20:00 08:30\n"
+"01:00 01:30\n"
+"\n";
String actual = solve(input);
System.out.println(actual);
}
static String solve(String input){
Scanner sc = new Scanner(input);
int testCases = sc.nextInt();
StringBuilder sb = new StringBuilder();
for(int tc = 1; tc <= testCases; ++tc){
sc.nextLine();
int N = sc.nextInt();
String[][] prefs = new String[N][2];
for(int r = 0; r < N; ++r){
for(int c = 0; c < 2; ++c){
prefs[r][c] = sc.next();
}
}
int[] ans = hamsterTime(prefs);
sb.append("Case #"+tc+": "+ans[0]+ans[1]+"\n");
}
System.out.println(sb.toString());
return sb.toString();
}
}
| [
"qiuyaoliu@Alices-MacBook-Pro-2.local"
] | qiuyaoliu@Alices-MacBook-Pro-2.local |
b48439f419bf5416128b2d88276a4b51d6d6d111 | bd415d33cb62d583f673a2616aaed4db9e181862 | /ProyectosCajaRegistrador/CRNetModels/src/main/java/com/becoblohm/cr/net/models/User.java | a9d4dacdcdb26f439d1a7b9bfa3272fbf01532d9 | [
"Apache-2.0"
] | permissive | macor003/desarrollosAndroid | 05f88ae6da0cc812b343eb62d2520b2a5033e2d4 | 0b8ebe0da371c002e533898626712c1cd68ddfc6 | refs/heads/master | 2020-04-21T18:13:13.394252 | 2018-11-22T13:54:26 | 2018-11-22T13:54:26 | 169,761,275 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,704 | java | /*******************************************************************************
* ยฉ 2012 Global Retail Information Ltd.
******************************************************************************/
package com.becoblohm.cr.net.models;
import java.io.Serializable;
import java.util.Date;
/**
*/
public class User implements Serializable {
/**
* Field id.
*/
protected Long id;
/**
* Field idEPA.
*/
protected int idEPA;
/**
* Field name.
*/
protected String name;
/**
* Field idDocument.
*/
protected String idDocument;
/**
* Field finger.
*/
protected byte[] finger;
/**
* Field pass.
*/
protected String pass;
/**
* Field lastPasswordChange.
*/
private Date lastPasswordChange;
/**
* Constructor for User.
*/
public User() {
}
/**
* Constructor for User.
* @param id Long
* @param idEPA int
* @param name String
* @param idDocument String
*/
public User(Long id, int idEPA, String name, String idDocument) {
super();
this.id = id;
this.idEPA = idEPA;
this.name = name;
this.idDocument = idDocument;
}
/**
* @return the id */
public Long getId() {
return id;
}
/**
* @param id
* the id to set
*/
public void setId(Long id) {
this.id = id;
}
/**
* @return the idEPA */
public int getIdEPA() {
return idEPA;
}
/**
* @param idEPA
* the idEPA to set
*/
public void setIdEPA(int idEPA) {
int tmp = this.idEPA;
this.idEPA = idEPA;
//
}
/**
* @return the name */
public String getName() {
return name;
}
/**
* @param name
* the name to set
*/
public void setName(String name) {
String tmp = this.name;
this.name = name;
}
/**
* @return the idDocument */
public String getIdDocument() {
return idDocument;
}
/**
* @param idDocument
* the idDocument to set
*/
public void setIdDocument(String idDocument) {
this.idDocument = idDocument;
}
/**
* @param finger
* the finger to set
*/
public void setFinger(byte[] finger) {
this.finger = finger;
}
/**
* @return the finger */
public byte[] getFinger() {
return finger;
}
/**
* @param pass
* the pass to set
*/
public void setPass(String pass) {
String tmp = this.pass;
this.pass = pass;
}
/**
* @return the pass */
public String getPass() {
return pass;
}
/**
* Method setLastPasswordChange.
* @param lastPasswordChange Date
*/
public void setLastPasswordChange(Date lastPasswordChange) {
this.lastPasswordChange = lastPasswordChange;
}
/**
* @return the lastPasswordChange */
public Date getLastPasswordChange() {
return lastPasswordChange;
}
}
| [
"mortega@intelix.biz"
] | mortega@intelix.biz |
047ecdd65b03a2a0a5ba65be8da8fdda2cb7c9e2 | 9c7f5575557e35d3b0336a029188aa9f87e43d41 | /Michael_Davis_Code/HomeWork1/src/q1/bubSort.java | 6d3238155ebe895099477a7c532c9fc3ddc2c404 | [] | no_license | 10michael30/RevatureNotes | 89b4bd2d5beaf6d24e66db84c974277f04349a96 | 07e8d8b52356b05b3ac04757e6a22741f0f79931 | refs/heads/master | 2020-06-26T18:37:54.987200 | 2019-07-30T19:44:27 | 2019-07-30T19:44:27 | 199,715,462 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 581 | java | package q1;
import java.util.*;
import java.io.*;
public class bubSort {
static int[] b=new int[] {1,0,5,6,3,2,3,7,9,8,4};
public static int[] bubSor() {
for (int i=0; i<b.length-1; i++) {
int temp;
if(b[i]>b[i+1]) {
temp=b[i];
b[i]=b[i+1];
b[i+1]=temp;
}
}
return b;
}
/*
* throws goes after the method and calling method must handle exception
*/
public static void main(String[] args) {
int[] a=bubSor();
for(int t:a) {
System.out.println(t);
}
//System.out.println();
}
}
| [
"10michael31@gmail.com"
] | 10michael31@gmail.com |
bf68cd914d6b7fb3ccc0498fed0e73734edd2251 | df272a4212433371b7c8e2da9d4915667447290c | /app/src/main/java/com/example/viniciusrigon/notes/MainActivity.java | 32ea86dae6d3e2656a30075b3bc20774a70d620a | [] | no_license | viniciusrigon/Notes | 7ac0c9d332712fed8bad18d243b92835656ef0a1 | 6da0fe8da7947a1c8bf029c67b7e52978c4c42e2 | refs/heads/master | 2021-01-11T17:53:25.323511 | 2017-01-24T00:12:09 | 2017-01-24T00:12:09 | 79,862,423 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,058 | java | package com.example.viniciusrigon.notes;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import static android.provider.AlarmClock.EXTRA_MESSAGE;
public class MainActivity extends AppCompatActivity {
public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void saveNote(View view) {
Intent intent = new Intent(this, NotesActivity.class);
EditText editTitle = (EditText) findViewById(R.id.title_note);
EditText editNote = (EditText) findViewById(R.id.text_note);
String title = editTitle.getText().toString();
String note = editNote.getText().toString();
String[] messagens = {title, note };
intent.putExtra(EXTRA_MESSAGE, messagens);
startActivity(intent);
}
}
| [
"viniciusrigon@gmail.com"
] | viniciusrigon@gmail.com |
585beb1c35df8e480f9e54dd0a253c765e90c493 | 1d898ea4e615eaee48855b7fdabd7de2d6fbbb9e | /src/com/pattern/AccountBook.java | 75a7d4e52a7b5f60319b29d96d345b9311e6675a | [] | no_license | qjm201000/design_pattern_visitor | d25a1873b51f4f12b62303e5993caf34a907c9d0 | 7f15a4d5f4ca98e45af329789e5523588ff80f52 | refs/heads/master | 2020-04-11T21:58:08.664115 | 2018-12-17T11:36:01 | 2018-12-17T11:36:01 | 162,121,279 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 506 | java | package com.pattern;
import java.util.ArrayList;
import java.util.List;
/**
* ๅฏน่ฑก็ปๆ๏ผ ๅธ็ฐฟ
*/
public class AccountBook {
private List<Bill> list = new ArrayList<Bill>();
/**
* ๆทปๅ ๆตๆฐด
* @param bill
*/
public void add(Bill bill){
list.add(bill);
}
/**
* ไพ่ดฆๆฌ็ๆฅ็่
ๆฅ็่ดฆๆฌ
* @param visitor
*/
public void show(Visitor visitor){
for(Bill bill:list){
bill.accept(visitor);
}
}
}
| [
"1529062902@qq.com"
] | 1529062902@qq.com |
16ce79f22d77385b170db20b5bb71324486b000d | 7b0e2931a8699decbd64c5b52370d7cdc57369c8 | /src/main/java/com/xwintop/xJavaFxTool/utils/FtpUtil.java | 44ddcd1f8c5a4862cd909010a18a286277f281d8 | [] | no_license | ismlsmile/xJavaFxTool | 1ec72e778f6319aa30554f916a1cf6cb307a86ee | dc0493bfb7051630e6756f6a99d3d3506a31bcce | refs/heads/master | 2020-05-17T21:42:59.840195 | 2019-04-25T15:46:40 | 2019-04-25T15:46:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,880 | java | package com.xwintop.xJavaFxTool.utils;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPReply;
import org.apache.commons.net.ftp.FTPSClient;
import javax.net.ssl.SSLSession;
import javax.net.ssl.SSLSessionContext;
import javax.net.ssl.SSLSocket;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.net.Socket;
import java.util.Locale;
@Data
@Slf4j
public class FtpUtil {
private FTPClient ftp;
private String defaultDirectory;
private String host;
private int port;
private String user;
private String passwd;
private int timeout;
private boolean passive;
private String encoding;
private int socketTimeout;
private boolean longConnection;
private boolean isFtps = false;
private Integer fileType; //ๆไปถไผ ่พๆนๅผ๏ผ่ฎพ็ฝฎ้คไบ่ฟๅถใACSIIๆนๅผไนๅค็ไผ ่พๆนๅผ๏ผ
private Integer bufferSize; //็ผๅฒๆฐๆฎๆต็ผๅฒๅบๅคงๅฐ
private boolean implicit = false;//The security mode. (True - Implicit Mode / False - Explicit Mode)๏ผftps็ฌๆ๏ผ
private String protocol = "TLS";//The secure socket protocol to be used, e.g. SSL/TLS.๏ผftps็ฌๆ๏ผ
private String prot = "P";//ๆฐๆฎ้้ไฟๆค็ญ็บง๏ผftps็ฌๆ๏ผ
public FtpUtil() {
}
public FtpUtil(String host, int port, String user, String passwd) {
this.host = host;
this.port = port;
this.user = user;
this.passwd = passwd;
}
public FtpUtil(String host, int port, String user, String passwd, int timeout, boolean passive, String encoding, int socketTimeout, boolean longConnection) {
this.host = host;
this.port = port;
this.user = user;
this.passwd = passwd;
this.timeout = timeout;
this.passive = passive;
this.encoding = encoding;
this.socketTimeout = socketTimeout;
this.longConnection = longConnection;
}
public void checkAndConnect() throws Exception {
if (ftp != null) {
if (ftp.isConnected()) {
try {
ftp.noop();
} catch (IOException e) {
connect();
}
return;
}
}
connect();
}
public void checkAndDisconnect() throws Exception {
if (longConnection) {
ftp.changeWorkingDirectory(defaultDirectory);
return;
}
if (ftp != null) {
ftp.disconnect();
}
}
public void destroy() {
if (ftp != null) {
try {
ftp.quit();
log.info("quit ftp........");
} catch (IOException e) {
log.error(e.getMessage(), e);
}
try {
ftp.disconnect();
log.info("disconnect ftp........");
} catch (IOException e) {
log.error(e.getMessage(), e);
}
ftp = null;
}
}
public void connect() throws Exception {
if (ftp == null) {
if (isFtps) {
ftp = new FTPSClient(this.protocol, this.implicit) {
@Override
protected void _prepareDataSocket_(final Socket socket) throws IOException {
if (socket instanceof SSLSocket) {
// Control socket is SSL
final SSLSession session = ((SSLSocket) _socket_).getSession();
final SSLSessionContext context = session.getSessionContext();
//context.setSessionCacheSize(preferences.getInteger("ftp.ssl.session.cache.size"));
try {
final Field sessionHostPortCache = context.getClass().getDeclaredField("sessionHostPortCache");
sessionHostPortCache.setAccessible(true);
final Object cache = sessionHostPortCache.get(context);
final Method method = cache.getClass().getDeclaredMethod("put", Object.class, Object.class);
method.setAccessible(true);
final String key = String.format("%s:%s", socket.getInetAddress().getHostName(), String.valueOf(socket.getPort())).toLowerCase(Locale.ROOT);
method.invoke(cache, key, session);
} catch (NoSuchFieldException e) {
// Not running in expected JRE
log.warn("No field sessionHostPortCache in SSLSessionContext", e);
} catch (Exception e) {
// Not running in expected JRE
log.warn(e.getMessage());
}
}
}
};
} else {
ftp = new FTPClient();
}
}
if (encoding != null && !encoding.equalsIgnoreCase("AUTO")) {
ftp.setControlEncoding(encoding);
}
if (socketTimeout > 0) {
ftp.setDefaultTimeout(socketTimeout);
}
// connect to the ftp server and check the connection
ftp.connect(host, port);
ftp.setDataTimeout(timeout);
checkAndThrow();
// login the server
if (!ftp.login(user, passwd)) {
log.error("login error. user:" + user + " passwd:" + passwd);
throw new Exception("Server reply:" + ftp.getReplyString());
} else {
log.info("success login,current time is:" + new java.sql.Timestamp(System.currentTimeMillis()).toString());
}
if (isFtps) {
((FTPSClient) ftp).execPBSZ(0);
((FTPSClient) ftp).execPROT(prot);
}
// set the connect mode. The default is port.
if (passive) {
ftp.enterLocalPassiveMode();
log.debug(ftp.getReplyString());
}
// set the translation mode. The default is ASCII.
if (fileType != null) {
if (!ftp.setFileType(fileType)) {
log.error("Failed to change file transfer type to binary.Use the default transfer type.");
}
}
if (bufferSize != null) {
ftp.setBufferSize(bufferSize);
}
checkAndThrow();
defaultDirectory = ftp.printWorkingDirectory();
}
public void checkAndThrow() throws Exception {
int reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
throw new Exception("Server reply:" + ftp.getReplyString());
}
}
public void makeDirs(String path) {
String pp[] = path.split("/");
String pathname = "";
try {
for (String p : pp) {
log.debug("current path is:" + p);
pathname = pathname + p + "/";
if (!ftp.changeWorkingDirectory(pathname)) {
if (ftp.makeDirectory(pathname)) {
log.info("success create path:" + pathname);
} else {
log.info("failed create path:" + pathname);
}
}
}
ftp.changeWorkingDirectory(defaultDirectory);
} catch (Exception exc) {
log.error("makeDirs error." + exc);
}
}
public void changeStringDirectory(String tmp) throws Exception {
this.checkAndConnect();
if (!this.changeWorkingDirectory(tmp)) {
this.makeDirs(tmp);
}
this.checkAndThrow();
}
/**
* @param fileName ๆไปถๅ
* @Description: ไธ่ฝฝๆไปถ
*/
public byte[] downFile(String fileName) throws Exception {
ByteArrayOutputStream os = new ByteArrayOutputStream();
try {
if (ftp.retrieveFile(fileName, os)) {
return os.toByteArray();
} else {
throw new Exception("Reading file occurs error. " + ftp.getReplyString());
}
} finally {
try {
os.flush();
os.close();
} catch (Exception e) {
log.error("Stream close error.", e);
}
}
}
/**
* @param fileName
* @param messageByte
* @return
* @Description: ไธไผ ๆไปถ
*/
public boolean uploadFile(String fileName, byte[] messageByte) throws Exception {
boolean isSuccess = false;
ByteArrayInputStream bais = new ByteArrayInputStream(messageByte);
try {
if (ftp.storeFile(fileName, bais)) {
isSuccess = true;
}
} finally {
if (bais != null) {
try {
bais.close();
} catch (IOException e) {
log.error("Stream close error.", e);
}
}
}
return isSuccess;
}
public boolean changeWorkingDirectory() throws IOException {
return ftp.changeWorkingDirectory(defaultDirectory);
}
public boolean changeWorkingDirectory(String pathname) throws IOException {
return ftp.changeWorkingDirectory(pathname);
}
public boolean deleteFile(String fileName) throws IOException {
return ftp.deleteFile(fileName);
}
public boolean rename(String from, String to) throws IOException {
return ftp.rename(from, to);
}
public boolean removeDirectory(String fileName) throws IOException {
return ftp.removeDirectory(fileName);
}
}
| [
"1277032935@qq.com"
] | 1277032935@qq.com |
6a3ac55132c331a595f4364edb7b0278f425f769 | 8d8a43a1d9f89451db33cbed5e2f2d041e60a7a6 | /src/main/java/arun/fvc/FVCalculator.java | 616cb31e946e4d06a70095c50290373a838513f5 | [] | no_license | achalise/FinancialCalculators | 72db2ffa5fbbff873a73b40e6865653daefa6d15 | 34cafc47582d8d737e0a1d5215cf8afa9becd445 | refs/heads/master | 2021-01-15T12:54:36.379052 | 2015-07-15T06:50:56 | 2015-07-15T06:50:56 | 38,594,410 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 481 | java | package arun.fvc;
import java.math.BigDecimal;
import java.util.List;
public interface FVCalculator {
BigDecimal calculateFutureValueWithContributions(BigDecimal presentValue, int noOfPeriods,
double rate, BigDecimal contributionAmount
);
List<PayOutSchedule> generateProjection(BigDecimal presentValue, int noOfPeriods, double rate,
BigDecimal contributionAmount);
}
| [
"chalise.arun@gmail.com"
] | chalise.arun@gmail.com |
11c3324c85b5f709a38a2ee99d372f8646b9510e | 030db8bb09b029eb362f4303471b83081318e099 | /kafka-basics/src/main/java/com/github/realhedin/kafka/tutorial1/ConsumerDemo.java | 76ac5c060f1f4b710c7029b2c31488846e8a51a7 | [] | no_license | Realhedin/UdemyKafkaBeginners | 5572833a5933ea9dc7d2ff62dcac3c2480bde59f | c32a5ff89dc94db24509f8c2e064b45b8650bc70 | refs/heads/master | 2020-09-20T13:27:45.828651 | 2019-11-29T21:52:32 | 2019-11-29T21:52:32 | 224,496,073 | 0 | 0 | null | 2023-09-05T22:02:11 | 2019-11-27T18:46:54 | Java | UTF-8 | Java | false | false | 1,813 | java | package com.github.realhedin.kafka.tutorial1;
import org.apache.kafka.clients.consumer.*;
import org.apache.kafka.common.serialization.StringDeserializer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.time.Duration;
import java.util.Collections;
import java.util.Properties;
public class ConsumerDemo {
public static void main(String[] args) {
Logger logger = LoggerFactory.getLogger(ConsumerDemo.class.getName());
//create properties
Properties properties = new Properties();
String bootstrapServers = "localhost:9092";
properties.setProperty(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, bootstrapServers);
properties.setProperty(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class.getName());
properties.setProperty(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class.getName());
String me_fourth_group = "me_fourth_group";
properties.setProperty(ConsumerConfig.GROUP_ID_CONFIG, me_fourth_group);
properties.setProperty(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest");
//create Consumer
Consumer<String, String> consumer = new KafkaConsumer<>(properties);
//subscribe on list of topics
String topic = "first_topic";
consumer.subscribe(Collections.singletonList(topic));
//poll the messages from topic
while(true) {
ConsumerRecords<String, String> messages = consumer.poll(Duration.ofMillis(300));
for (ConsumerRecord<String, String> message : messages) {
logger.info("Key: " + message.key() + ", Value: " + message.value());
logger.info("Partition: " + message.partition() + ", Offset:" + message.offset());
}
}
}
}
| [
"korwork@mail.ru"
] | korwork@mail.ru |
ba3a0e26e9c8fd8aa7ef3e7a8f26ba36d762387b | 6bfbf2bab4451e2390764eb9c60134ce652255b1 | /src/org/jymf/utils/SysConfig.java | 9e606954c30f99f4ed16e72e22eda3518159addc | [] | no_license | Sonlan/jymfCluster | 1b34127c167414ad5b3b2833f71cc927c4dd76f2 | d5658e2c6f70754213a34e09597e8be94c481221 | refs/heads/master | 2016-09-14T13:10:34.694504 | 2016-05-08T09:44:28 | 2016-05-08T09:44:28 | 58,305,624 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 333 | java | package org.jymf.utils;
/**
* ็ณป็ป้
็ฝฎไฟกๆฏBean
*
* @author
*/
public class SysConfig {
/**
* ๆไปถๆๅกๅจUrl
*/
private String fileServiceUrl;
public String getFileServiceUrl() {
return fileServiceUrl;
}
public void setFileServiceUrl(String fileServiceUrl) {
this.fileServiceUrl = fileServiceUrl;
}
}
| [
"1147649695@qq.com"
] | 1147649695@qq.com |
712d6e80a0b491af0d906bb6696ecefc0ec6bda6 | 3f171bac3435e7437a1d64ea9997ac27d4b403d6 | /wifiLazoooid/src/main/java/com/lazooo/wifi/app/android/fragments/TabFragment.java | 2d2222c1993f6d3eafd660290b15954bb4b90b86 | [] | no_license | wifiLazooo/wifiLazoooid | 3d23258a4c3be62a032818740f52f183b31ed332 | 3176e6e25a76e30cd726a5d8b54cbb30280e7ed6 | HEAD | 2016-09-01T23:21:41.697425 | 2014-07-30T15:29:41 | 2014-07-30T15:29:41 | 20,835,239 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,741 | java | package com.lazooo.wifi.app.android.fragments;/**
* Lazooo copyright 2012
*/
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.view.PagerAdapter;
import android.view.View;
import com.lazooo.wifi.app.android.WifiLazooo;
/**
* @author giok57
* @email gioelemeoni@gmail.com
* @modifiedBy giok57
* <p/>
* Date: 30/06/14
* Time: 18:04
*/
public class TabFragment extends Fragment implements FragmentSelectionChangeListener {
private PagerAdapter pagerAdapter;
private boolean isLoading;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
WifiLazooo.getApplication().getSlidingTabs().setCurrentTabFragment(this, getTabPosition());
}
public boolean isLoading(){
return isLoading;
}
public void setLoading(Boolean isLoading){
this.isLoading = isLoading;
}
public void setPagerAdapter(PagerAdapter pagerAdapter){
this.pagerAdapter = pagerAdapter;
}
public int getTabPosition(){
throw new RuntimeException("Override this method");
}
public PagerAdapter getPagerAdapter(){
return pagerAdapter;
}
public String getTabName(){
return "default";
}
@Override
public void onFragmentSelected() {
View custom = WifiLazooo.getApplication().getmTitle(getTabName());
WifiLazooo.getApplication().getActionBar().setCustomView(custom);
if(isLoading())
WifiLazooo.getApplication().getSlidingTabs().onStartLoading();
else
WifiLazooo.getApplication().getSlidingTabs().onStopLoading();
}
@Override
public void onFragmentChangedFromThis() {
}
}
| [
"gioelemeoni@gmail.com"
] | gioelemeoni@gmail.com |
c361f771f43202210a2e8ccbadfa7b5f8af0088c | fb25dc3fdb768fc8cc99c62d4ea1d0ab0cc518d6 | /src/MainGame.java | f4ab0cd439d16c0f4212024eeb3754b524edf082 | [] | no_license | Cosby1992/Console_Game | f8536ab83ea03ebb9b9c1bae62685e7649e64f65 | 71fc9aefa98b6b23e30489a9860ee76600dc8ac9 | refs/heads/master | 2020-03-30T05:30:16.377581 | 2018-09-28T23:06:53 | 2018-09-28T23:06:53 | 150,802,966 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,009 | java | import java.util.Scanner;
public class MainGame {
public static void main(String[] args) {
// Initialize Scanner
Scanner scan = new Scanner(System.in);
// Player name statement
System.out.println("\nWelcome Sir.. What should i call you?\n" +
"Enter your name here: ");
// Define player and player name
Player player = new Player(100, 0, 100, 2, scan.nextLine());
// Deciding to help Dublin (yes or no)
System.out.println("\nNice to meet you " + player.playerName + ".");
System.out.println("My name is Dublin, i could really use your help!\n" +
"Will you please help me? (yes or no)");
// While key Dublin
boolean helpDublin = false;
// Helping Dublin (While loop)
while (player.respect > 0 && player.health > 0 && helpDublin == false) {
//help Dublin (yes or no)
String answerDublinHelp = scan.nextLine();
// if help dublin = no = -10 respect
if (answerDublinHelp.equalsIgnoreCase("no")) {
player.setRespect(player.respect - 25);
System.out.println("You disappointing Dublin caused your respect to decrease by 25.\n" +
"Your respect is now " + player.getRespect() + ". Don't let it drop to zero!\n");
helpDublin = true;
}
//if help dublin = yes = initialize enemy + first enemy attack
else if (answerDublinHelp.equalsIgnoreCase("yes")) {
System.out.println("Oh thank you " + player.getPlayerName() + ".\n" +
"I have a monster in my basement! It's too strong and scary\n " +
"for me to fight, I need you to take him down for me!\n" +
"\nYou go to the basement and the monster quickly attacks you!");
//initialize enemy (basementMonster) + random attack
Enemy basementMonster = new Enemy(50, (int) (Math.random() * 9) + 1);
//player take damage
player.setHealth(player.health - basementMonster.getDamage());
//Initial monster attack
System.out.println("The monster hits you with an attack of " + basementMonster.getDamage() + "\n" +
"Your health is now " + player.getHealth());
//initialize battle loop
boolean battleKeyBasementmonster = true;
while (player.respect > 0 && player.health > 0 && basementMonster.getHealth() > 0 && battleKeyBasementmonster == true) {
//Battle choice
System.out.println("Press 'Enter' to attack, or press 'P' to use a health potion \n" +
"(you currently have " + player.getHealthPotion() + " health potions)");
String battlekey = scan.nextLine();
if (battlekey.equalsIgnoreCase("") && basementMonster.getHealth() > 0) {
player.setDamage((int) ((Math.random() * 19) + 6));
basementMonster.setHealth(basementMonster.health - player.getDamage());
System.out.println("You attack with " + player.getDamage() + " damage.\n" +
"The Monster's health is now " + basementMonster.getHealth() + "\n");
if (basementMonster.getHealth() > 0) {
basementMonster.setDamage((int) (Math.random() * 9) + 1);
player.setHealth(player.health - basementMonster.getDamage());
System.out.println("The monster hits you with an attack of " + basementMonster.getDamage() + "\n" +
"Your health is now " + player.getHealth() + "\n");
}
} else if (battlekey.equalsIgnoreCase("p")) {
if (player.getHealthPotion() >= 1) {
player.setHealthPotion(player.getHealthPotion() - 1);
if (player.getHealth() < 75) {
player.setHealth(player.getHealth() + 25);
System.out.println("Your health is now " + player.getHealth());
} else if (player.getHealth() >= 75) {
player.setHealth(100);
System.out.println("You now have full health! (" + player.getHealth() + ")");
}
} else if (player.getHealthPotion() < 1) {
System.out.println("You don't have enough health potions!");
}
} else {
System.out.println("Invalid input, try again.");
}
if (basementMonster.getHealth() <= 0) {
System.out.println("You did it! You killed my basement Monster!\n" +
"I am forever in you debt " + player.getPlayerName() + "\n" +
"All i can give you is this health potion, use it with care!\n");
player.setHealthPotion(player.getHealthPotion() + 1);
player.setRespect(player.getRespect() + 10);
System.out.println("Your health potion increased to " + player.getHealthPotion() + "\n" +
"And your respect increased to " + player.getRespect());
helpDublin = true;
}
}
} else {
System.out.println("Sorry, I think I might have misheard you. Can you please repeat your answer?");
}
}
System.out.println("You follow the road to the city of Tannum");
boolean helpCityOfTannum = false;
while (player.respect > 0 && player.health > 0 && helpCityOfTannum == false) {
System.out.println("You are now in the city of Tannum");
helpCityOfTannum = true;
}
if (player.respect > 0 && player.health > 0) {
System.out.println("Congratulations! You survived the journey!\n" +
"Your final stats are as follows:\n" +
"Health = " + player.getHealth() + "\n" +
"Respect = " + player.getRespect() + "\n" +
"Health potions = " + player.getHealthPotion() + "\n" +
"You are a true hero " + player.getPlayerName());
} else if (player.respect <= 0) {
System.out.println("You got killed by villagers, cause your respect went too low!!" +
"\nYou ended up with " + player.getRespect() + " respect..");
} else if (player.health <= 0) {
System.out.println("You died!! Your health got too low!!" + "\n" +
"You ended up with " + player.getHealth() + " health..");
}
}
}
| [
"ande016j@edu.easj.dk"
] | ande016j@edu.easj.dk |
4b750aaefb07e2229bcd0135b8fc58315fb43e46 | 10b7c05a76903964e412a55f155544ba29db498f | /server/prod/fileupload/service/src/main/java/com/vassarlabs/common/filereader/service/impl/CSVFileReaderService.java | 07ab0f9affc521a5a33b606e3c7024caa514d9eb | [] | no_license | srikanth-vl/jenkins-flutter-test | ba678eee7c3e4dd09915d6a4d1efe5b73ec6d303 | 9835d22d88394c403c3c95955dc890826de03382 | refs/heads/master | 2023-01-31T04:32:06.109480 | 2020-02-25T12:09:22 | 2020-02-25T12:09:22 | 242,687,371 | 0 | 0 | null | 2023-01-07T22:18:34 | 2020-02-24T08:50:01 | Java | UTF-8 | Java | false | false | 4,515 | java | package com.vassarlabs.common.filereader.service.impl;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.stereotype.Component;
import com.vassarlabs.common.filereader.service.api.ICSVFileReaderService;
import com.vassarlabs.common.fileupload.event.impl.FileUploadEvent;
import com.vassarlabs.common.fileupload.pojo.api.IFileUploadDetails;
import com.vassarlabs.common.fileupload.pojo.api.IFileUploadResult;
import com.vassarlabs.common.utils.err.ErrorObject;
import com.vassarlabs.common.utils.err.IErrorObject;
import javassist.CannotCompileException;
import javassist.ClassPool;
import javassist.CtClass;
import javassist.CtField;
import javassist.NotFoundException;
import javassist.bytecode.ClassFile;
@Component
public class CSVFileReaderService implements ICSVFileReaderService {
@Autowired
protected ApplicationEventPublisher publisher;
private static final Logger logger = LoggerFactory.getLogger(CSVFileReaderService.class);
@SuppressWarnings({ "resource", "unchecked" })
@Override
public <E> void readCSVFile(IFileUploadDetails fileUploadDetails, IFileUploadResult<E> fileUploadResult) throws IOException {
BufferedReader stream = new BufferedReader(new FileReader(fileUploadDetails.getFileFullPath()));
Class<?> className = null;
String[] fieldNames = null;
List<E> list = new ArrayList<>();
int i = 0;
E object = null;
String line = null;
do {
i++;
if(line != null && line.length() != 0) {
String[] values = line.split(fileUploadDetails.getDelimiter());
if(className == null) {
try {
fieldNames = line.split(String.valueOf(fileUploadDetails.getDelimiter()));
className = buildCSVClass(Arrays.asList(fieldNames), fileUploadDetails.getClassName());
} catch (CannotCompileException | NotFoundException e) {
logger.error("In FileReaderService : readCSVFile() :: Exception while creating a class from CSV file headers ", e);
e.printStackTrace();
}
} else {
try {
object = (E) className.newInstance();
int minLength = Math.min(fieldNames.length, values.length);
for (int col = 0; col < minLength; col++) {
Field f = className.getDeclaredField(fieldNames[col]);
f.setAccessible(true);
f.set(object, values[col]);
}
list.add(object);
} catch(Exception e) {
IErrorObject errorObject = new ErrorObject();
errorObject.setLineNo(i);
errorObject.setErrorCode(IErrorObject.FILE_UPLOAD_ERROR_CODE);
errorObject.setErrorType(IErrorObject.FILE_UPLOAD_ERROR_MESSAGE);
errorObject.setErrorMessage("error in parsing the line ");
errorObject.setRowUploadStatus(IErrorObject.ROW_NOT_UPLOADED_SUCCESSFULLY_MESSAGE);
errorObject.setRowData(line);
List<IErrorObject> errorList = new ArrayList<>();
errorList.add(errorObject);
fileUploadResult.getDataToErrorListMap().put(object, errorList);
logger.error("In FileReaderService : readCSVFile() :: Exception while parsing line ", e);
}
}
}
if(list.size() == fileUploadDetails.getBatchSize()){
publisher.publishEvent(new FileUploadEvent<E>(className, fileUploadDetails, list, fileUploadResult));
list = new ArrayList<E>();
fileUploadResult.getDataToErrorListMap().clear();
}
line = stream.readLine();
} while(line != null);
if(list.size() != 0) {
publisher.publishEvent(new FileUploadEvent<E>(className, fileUploadDetails, list, fileUploadResult));
list = new ArrayList<E>();
fileUploadResult.getDataToErrorListMap().clear();
}
}
private static Class<?> buildCSVClass(List<String> fieldNames, String className) throws CannotCompileException, javassist.NotFoundException {
ClassPool pool = ClassPool.getDefault();
CtClass result = pool.makeClass("CSV_CLASS$" + className);
ClassFile classFile = result.getClassFile();
classFile.setSuperclass(Object.class.getName());
for (String fieldName : fieldNames) {
CtField field = new CtField(ClassPool.getDefault().get(String.class.getName()), fieldName, result);
result.addField(field);
}
classFile.setVersionToJava5();
return result.toClass();
}
} | [
"kmunshi.97@gmail.com"
] | kmunshi.97@gmail.com |
db40b6b1f0d879fdb75692a7b94d4c01d56d7d7f | d91a2cd94e21de71d59f21da872b13c048180769 | /src/main/java/com/ruanyun/web/service/app/AppUserRecordService.java | e318a0c4608ed6894c207a752ffd3e548fa12a95 | [] | no_license | xinghen110/huaibeiqiquan | 08ec6c7ca07d7c5a2180c696cbdea40c742e51a5 | 51a2ff32506a829b30cf04dc05d33351baf4df1f | refs/heads/master | 2018-10-05T18:09:22.053224 | 2018-06-08T06:47:08 | 2018-06-08T06:47:08 | 125,980,032 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,100 | java | package com.ruanyun.web.service.app;
import com.ruanyun.web.model.TUserAccountFlow;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruanyun.common.model.Page;
import com.ruanyun.web.model.AppCommonModel;
import com.ruanyun.web.model.mall.TUserAddress;
import com.ruanyun.web.model.mall.TUserRecord;
import com.ruanyun.web.model.sys.TUser;
import com.ruanyun.web.service.mall.UserRecordService;
@Service
public class AppUserRecordService {
@Autowired
private UserRecordService userRecordService;
/**
* ๅ่ฝๆ่ฟฐ:ๆฅ่ฏขๆตๆฐด่ฎฐๅฝ
* @author cqm 2016-11-5 ไธๅ01:38:52
* @param page
* @param userRecord
* @return
*/
public AppCommonModel getUserRecordList(Page<TUserRecord> page,TUserRecord userRecord){
return new AppCommonModel(1,"",userRecordService.getUserRecordList(page,userRecord));
}
public AppCommonModel getList(TUserAccountFlow userAccountFlow, TUser curUser){
return new AppCommonModel(1,"่ทๅๆตๆฐด่ฎฐๅฝๅ่กจๆๅ",userRecordService.getList(userAccountFlow,curUser));
}
}
| [
"xin.he@capgemini.com"
] | xin.he@capgemini.com |
885339fe3f3c2783920d0aa5214ef7ab175ab42d | 2b3e61654529dbfe10b849cf74136100ba42b1cb | /KaoShiTest/app/src/main/java/com/yueer/farmshop/kaoshitest/fragment/home/mycenter/erjiliebiao/LianXiExpandableListViewActivity.java | 5ce57b11a1097db5fcb4266e4cb1a983f7a29a11 | [] | no_license | lilinzs/LiLi | 7cc2d79d9d6a322206039a110c4f3cb012839a52 | cd35c847fa3b661d75a3892c1868bd4c77699bd7 | refs/heads/master | 2020-06-25T09:41:16.876746 | 2019-07-28T10:50:42 | 2019-07-28T10:50:42 | 199,274,639 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,441 | java | package com.yueer.farmshop.kaoshitest.fragment.home.mycenter.erjiliebiao;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.TextView;
import android.widget.Toast;
import com.yueer.farmshop.kaoshitest.R;
import java.util.ArrayList;
public class LianXiExpandableListViewActivity extends Activity {
//View
private ExpandableListView expandableListView;
// //Model๏ผๅฎไน็ๆฐๆฎ
// private String[] groups = {"Ahdjsojpodjop", "B", "C"};
//
// //ๆณจๆ๏ผๅญ็ฌฆๆฐ็ปไธ่ฆๅๆ{{"A1,A2,A3,A4"}, {"B1,B2,B3,B4๏ผB5"}, {"C1,C2,C3,C4"}}
// private String[][] childs = {{"A1", "A2", "A3", "A4"}, {"A1", "A2", "A3", "B4"}, {"A1", "A2", "A3", "C4"}};
// //ไธ็บงๅ่กจๆฐๆฎๆบ
// private String[] groups = {"่ฝฏไปถ่ฎพ่ฎก", "ๆฐๆฎๅบๆๆฏ", "ๆไฝ็ณป็ป"};
// //ไบ็บงๅ่กจๆฐๆฎๆบ
// private String[][] childs = {{"ๆถๆ่ฎพ่ฎก", "้ขๅๅฏน่ฑก", "่ฎพ่ฎกๆจกๅผ", "้ขๅ้ฉฑๅจ่ฎพ่ฎก"}, {"SQL Server", "Oracle", "MySql", "Dameng "}, {"Linux", "Windows", "ๅตๅ
ฅๅผ"}};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_lian_xi_expandable_list_view);
expandableListView = (ExpandableListView) findViewById(R.id.expandableListView);
initData();
MyAdapter adapter = new MyAdapter(this, mGroupList, mItemSet);
expandableListView.setAdapter(adapter);
// expandableListView.setAdapter(new MyExpandableListView());
// initListenner();
}
class MyAdapter extends BaseExpandableListAdapter {
private Context mContext;
private ArrayList<String> mGroup;
private ArrayList<ArrayList<String>> mItemList;
private final LayoutInflater mInflater;
public MyAdapter(Context context, ArrayList<String> group, ArrayList<ArrayList<String>> itemList){
this.mContext = context;
this.mGroup = group;
this.mItemList = itemList;
mInflater = LayoutInflater.from(context);
}
//็ถ้กน็ไธชๆฐ
@Override
public int getGroupCount() {
return mGroup.size();
}
//ๆไธช็ถ้กน็ๅญ้กน็ไธชๆฐ
@Override
public int getChildrenCount(int groupPosition) {
return mItemList.get(groupPosition).size();
}
//่ทๅพๆไธช็ถ้กน
@Override
public Object getGroup(int groupPosition) {
return mGroup.get(groupPosition);
}
//่ทๅพๆไธชๅญ้กน
@Override
public Object getChild(int groupPosition, int childPosition) {
return mItemList.get(groupPosition).get(childPosition);
}
//็ถ้กน็Id
@Override
public long getGroupId(int groupPosition) {
return groupPosition;
}
//ๅญ้กน็id
@Override
public long getChildId(int groupPosition, int childPosition) {
return childPosition;
}
@Override
public boolean hasStableIds() {
return false;
}
//่ทๅ็ถ้กน็view
@Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
if (convertView == null){
convertView = mInflater.inflate(R.layout.item_group,parent,false);
}
String group = mGroup.get(groupPosition);
TextView tvGroup = (TextView) convertView.findViewById(R.id.tv_group);
tvGroup.setText(group);
return convertView;
}
//่ทๅๅญ้กน็view
@Override
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
final String child = mItemList.get(groupPosition).get(childPosition);
if (convertView == null){
convertView = mInflater.inflate(R.layout.item_child,parent,false);
}
// TextView tvChild = (TextView)convertView.findViewById(R.id.tv_name);
// tvChild.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View v) {
// Toast.makeText(mContext,child,Toast.LENGTH_SHORT).show();
// }
// });
// tvChild.setText(child);
return convertView;
}
//ๅญ้กนๆฏๅฆๅฏ้ไธญ,ๅฆๆ่ฆ่ฎพ็ฝฎๅญ้กน็็นๅปไบไปถ,้่ฆ่ฟๅtrue
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
}
// ็ๅฌ
// private void initListenner() {
// expandableListView.setOnChildClickListener(new ExpandableListView.OnChildClickListener() {
// @Override
// public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {
// TextView childAt = (TextView)((LinearLayout) v).getChildAt(1);//่ทๅพ็นๅปๅ่กจไธญTextView็ๅผ๏ผ้่ฆๅผบ่ฝฌไธไธ๏ผๅฆๅๆพไธๅฐgetChildAtๆนๆณ
// Toast.makeText(LianXiExpandableListViewActivity.this, "็นๅปไบ "+childAt.getText()+" ๅ่กจ", Toast.LENGTH_SHORT).show();
// return true;
// }
// });
// }
// //ไธบExpandableListView่ชๅฎไน้้
ๅจ
// class MyExpandableListView extends BaseExpandableListAdapter {
//
// //่ฟๅไธ็บงๅ่กจ็ไธชๆฐ
// @Override
// public int getGroupCount() {
// return groups.length;
// }
//
// //่ฟๅๆฏไธชไบ็บงๅ่กจ็ไธชๆฐ
// @Override
// public int getChildrenCount(int groupPosition) { //ๅๆฐgroupPosition่กจ็คบ็ฌฌๅ ไธชไธ็บงๅ่กจ
// Log.d("smyhvae", "-->" + groupPosition);
// return childs[groupPosition].length;
// }
//
// //่ฟๅไธ็บงๅ่กจ็ๅไธชitem๏ผ่ฟๅ็ๆฏๅฏน่ฑก๏ผ
// @Override
// public Object getGroup(int groupPosition) {
// return groups[groupPosition];
// }
//
// //่ฟๅไบ็บงๅ่กจไธญ็ๅไธชitem๏ผ่ฟๅ็ๆฏๅฏน่ฑก๏ผ
// @Override
// public Object getChild(int groupPosition, int childPosition) {
// return childs[groupPosition][childPosition]; //ไธ่ฆ่ฏฏๅๆgroups[groupPosition][childPosition]
// }
//
// @Override
// public long getGroupId(int groupPosition) {
// return groupPosition;
// }
//
// @Override
// public long getChildId(int groupPosition, int childPosition) {
// return childPosition;
// }
//
// //ๆฏไธชitem็idๆฏๅฆๆฏๅบๅฎ๏ผไธ่ฌไธบtrue
// @Override
// public boolean hasStableIds() {
// return true;
// }
//
// //ใ้่ฆใๅกซๅ
ไธ็บงๅ่กจ
// @Override
// public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
//
// if (convertView == null) {
// convertView = getLayoutInflater().inflate(R.layout.item_group, null);
// } else {
//
// }
// TextView tv_group = (TextView) convertView.findViewById(R.id.tv_group);
// tv_group.setText(groups[groupPosition]);
// return convertView;
// }
//
// //ใ้่ฆใๅกซๅ
ไบ็บงๅ่กจ
// @Override
// public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
//
// if (convertView == null) {
// convertView = getLayoutInflater().inflate(R.layout.item_child, null);
// }
//
// ImageView iv_child = (ImageView) convertView.findViewById(R.id.iv_child);
// TextView tv_child = (TextView) convertView.findViewById(R.id.tv_child);
//
// //iv_child.setImageResource(resId);
// tv_child.setText(childs[groupPosition][childPosition]);
//
// return convertView;
// }
//
// //ไบ็บงๅ่กจไธญ็itemๆฏๅฆ่ฝๅค่ขซ้ไธญ๏ผๅฏไปฅๆนไธบtrue //ๅญ้กนๆฏๅฆๅฏ้ไธญ,ๅฆๆ่ฆ่ฎพ็ฝฎๅญ้กน็็นๅปไบไปถ,้่ฆ่ฟๅtrue
// @Override
// public boolean isChildSelectable(int groupPosition, int childPosition) {
// return true;
// }
// }
//groupๆฐๆฎ
private ArrayList<String> mGroupList;
//itemๆฐๆฎ
private ArrayList<ArrayList<String>> mItemSet;
private void initData() {
mGroupList = new ArrayList<>();
mGroupList.add("ๆ็ๅฎถไบบ");
mGroupList.add("ๆ็ๆๅ");
mGroupList.add("้ปๅๅ");
mItemSet = new ArrayList<>();
ArrayList<String> itemList1 = new ArrayList<>();
itemList1.add("ๅคงๅฆน");
itemList1.add("ไบๅฆน");
itemList1.add("ไธๅฆน");
ArrayList<String> itemList2 = new ArrayList<>();
itemList2.add("ๅคง็พ");
itemList2.add("ไบ็พ");
itemList2.add("ไธ็พ");
ArrayList<String> itemList3 = new ArrayList<>();
itemList3.add("็่");
itemList3.add("ไบไธซ");
mItemSet.add(itemList1);
mItemSet.add(itemList2);
mItemSet.add(itemList3);
}
}
/*
ๆญฅ้ชค:
โ ๅธๅฑไธญๅฎไนExpandableListViewๆงไปถ
โก ๅๅงๅGroupๆฐๆฎ,Childๆฐๆฎ(ArrayList<ArrayList<Info>>)
โข ้้
ๅจBaseExpandaListAdapter
้ๅ10ไธชๆนๆณ getGroupCount(),getGroup(),getGroupId(),getGroupView()
getChildCount(),getChild(),getChildId(),getChildView()
hasStablelds()่กๆฏๅฆๅ
ทๆๅฏไธid isChildSelectable() ๅญๅ่กจๆฏๅฆๅฏ็นๅปไบไปถ
ไฝ่
๏ผๅ่ข
้พๆฅ๏ผhttps://www.jianshu.com/p/b995c71e36f0
ๆฅๆบ๏ผ็ฎไนฆ
็ฎไนฆ่ไฝๆๅฝไฝ่
ๆๆ๏ผไปปไฝๅฝขๅผ็่ฝฌ่ฝฝ้ฝ่ฏท่็ณปไฝ่
่ทๅพๆๆๅนถๆณจๆๅบๅคใ
ๅฑๆง:
divider ็ถ็ฑปๅๅฒ็บฟ
childDivider ๅญ็ฑปๅๅฒ็บฟ
dividerHeight ๅๅฒ็บฟ้ซๅบฆ
groupIndicator ๆงๅถ็ถ็ฑปๅ้ข็ๅฐ็ฎญๅคด
android:groupIndicator="@drawable/picture" ็ฎญๅคดๆข็
ง็
android:groupIndicator="@null" ๅปๆๅฐ็ฎญๅคด
indicatorLeft ็ฎญๅคดๆ่
่ชๅทฑ่ฎพ็ฝฎ็ๅพ็็ๅณ่พนๆก่ท็ฆปๆๆบๅทฆ่พน่พน็ผ็่ท็ฆป,็ฑปไผผไบmarginLeft
indicatorStart ็ฎญๅคดๆ่
่ชๅทฑ่ฎพ็ฝฎ็ๅพ็็ๅทฆ่พนๆก่ท็ฆปๆๆบๅทฆ่พน่พน็ผ็่ท็ฆป,็ฑปไผผไบmarginLeftไปฅไธไธคไธชๅฑๆง็ธ็ปๅๅฏไปฅไฝฟ็ฎญๅคดๆ่ชๅทฑ่ฎพ็ฝฎ็ๅพ็ๅๅคงๅๅฐๆ่
็ฟป่ฝฌ,ๅ ไธบๆงๅถไบ็ฎญๅคดๆๅพ็็ๅทฆๅณ่พนๆก
childIndicator ็จไบ่ฎพ็ฝฎๅญ้กนๅๆพ็คบ็ๅพๆ ,ไธ่ฎพ็ฝฎ็่ฏ้ป่ฎคๆฏๆฒกๆๅพๆ ็
//่ฎพ็ฝฎๅพๆ ้ๆฉ
<item android:drawable=โ@drawable/icon_tโ android:state_expanded=โtrueโ/>
<item android:drawable=โ@drawable/icon_fโ android:state_expanded=โfalseโ/>
็นๅปไบไปถ:
ๅฏนไบๅค็ Item ็็นๅปไบไปถ๏ผ่ฟๆฏ่ฆ่ฎพ็ฝฎ็ๅฌๅจ๏ผๅธธ็จ็ๆ่ฟๅ ็ฑป๏ผ
setOnChildClickListener//ๅๅปๅญ้้กน
setOnGroupClickListener//ๅๅป็ป้้กน
setOnGroupCollapseListener//ๅ็ปๅๅนถ
setOnGroupExpandListener//ๅ็ปๅๅนถ
*/
| [
"2504445138@qq.com"
] | 2504445138@qq.com |
406ea20fc0e24c6ae1bff9137441e7916db330bf | 897077b4af6d3c4f8df6be1e244d174f6662fa1e | /src/main/java/com/rex/blog/mapper/AccessMapper.java | 83be52b1ea05a6d8232c0ba0630b2cbb267e416a | [] | no_license | 979745322/blog | 418dcf32d7d17c4361572ada8a16aa0a30e6f45d | 614944ab794c76e63c058cbd375ec6cb59595ca3 | refs/heads/master | 2022-11-01T03:00:14.628192 | 2019-10-09T01:59:49 | 2019-10-09T01:59:49 | 180,689,729 | 0 | 0 | null | 2022-10-12T20:25:40 | 2019-04-11T01:18:46 | JavaScript | UTF-8 | Java | false | false | 650 | java | package com.rex.blog.mapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
/**
* ่ฎฟ้ฎ่ฎฐๅฝdaoๅฑๆฅๅฃ
*/
@Mapper
@Repository
public interface AccessMapper {
/**
* ๆฐๅขๆฅ่ฎฟ่ฎฐๅฝ
*/
void addAccess(@Param("ip") String ip, @Param("country") String country, @Param("region") String region, @Param("city") String city, @Param("county") String county, @Param("isp") String isp);
/**
* ๆ นๆฎๆฅๆๆฅ่ฏขๆฅ่ฎฟไบบๆฐ
*
* @return ่ฟๅๆฅ่ฎฟไบบๆฐ้ๅ
*/
List selectByDate();
}
| [
"rex.li@orchestrallinc.cn"
] | rex.li@orchestrallinc.cn |
36943b7536b3fb4a2a4674aacec5d0dc442664ff | 58c8a612ecd9568c2de2b4521095d0873a62dfd0 | /google-api-client/src/main/java/com/google/api/client/googleapis/subscriptions/package-info.java | b70f6dbd7daec23cd2ce32a06f43f2ebbe0c5013 | [] | no_license | gmol27/google-api-java-client | 491576e737d5090883e5f3f5d40084bc41f6363a | 043cb52746e56ce4ab79320ccd680da93c7ec724 | refs/heads/master | 2021-08-25T23:02:59.038749 | 2013-01-15T12:56:01 | 2013-01-15T12:56:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 980 | java | /*
* Copyright (c) 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/**
* Support for creating subscriptions and receiving notifications for Google APIs.
*
* <p>
* <b>Warning: this package is experimental, and its content may be changed in incompatible ways or
* possibly entirely removed in a future version of the library</b>
* </p>
*
* @since 1.14
* @author Matthias Linder (mlinder)
*/
package com.google.api.client.googleapis.subscriptions;
| [
"vparfonov@exoplatform.com"
] | vparfonov@exoplatform.com |
89a2b22fb2f28e3a6567f2a6bd127454f9014c8f | 53dee798bc5ce4ceb2933e40f8ee84dbb3323b60 | /rhymecity/src/main/java/com/metech/firefly/ui/activity/SlidePage/NearKioskActivity.java | fc53875d81cfa3042259632a2121bfc71ef2f9ae | [
"MIT"
] | permissive | imalpasha/meV2 | a1dd511857a0874e6919b39bac72814068c91d96 | 8ff1f9cb9449ddce2453d2d04cfc01f97544b2ef | refs/heads/master | 2020-05-21T23:35:58.044438 | 2017-05-18T04:54:58 | 2017-05-18T04:54:58 | 52,320,849 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,051 | java | package com.metech.firefly.ui.activity.SlidePage;
import android.os.Bundle;
import android.support.v4.app.FragmentManager;
import com.metech.firefly.MainFragmentActivity;
import com.metech.firefly.R;
import com.metech.firefly.ui.activity.FragmentContainerActivity;
//import android.view.WindowManager;
public class NearKioskActivity extends MainFragmentActivity implements FragmentContainerActivity {
private FragmentManager fragmentManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
FragmentManager fragmentManager = getSupportFragmentManager();
fragmentManager.beginTransaction().replace(R.id.main_content, NearKioskFragment.newInstance()).commit();
hideTitle();
}
@Override
public int getFragmentContainerId() {
return R.id.main_activity_fragment_container;
}
public void onResume()
{
super.onResume();
}
@Override
public void onBackPressed() {
super.onBackPressed();
}
}
| [
"imalpasha@gmail.com"
] | imalpasha@gmail.com |
a24ae82b8b5c7f0c3bcc377a19d8e862a360e164 | 633d96c3c27892538e025ab0ef284d272c99576a | /app/src/main/java/com/compet/petdoc/fragment/BaseFragment.java | eb9ac0a6d1922ce5da591310d69f4d80f6b9931c | [] | no_license | museong-park/petdoc.v2 | f6cd4ef0ee9f8b2cf31b63d5262188a1ad1105a9 | 518a8cdabfd02534ef17fffc4105572c0f2af604 | refs/heads/master | 2021-08-26T04:38:23.488683 | 2016-12-12T08:35:39 | 2016-12-12T08:35:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,269 | java | package com.compet.petdoc.fragment;
import android.content.Context;
import android.support.v4.app.Fragment;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.widget.TextView;
import com.compet.petdoc.R;
/**
* Created by Mu on 2016-12-02.
*/
public class BaseFragment extends Fragment {
protected Toolbar toolbar;
public void initToolBar(final String title, View view, Context context) {
toolbar = (Toolbar)view.findViewById(R.id.main_toolbar);
// toolbar.bringToFront();
AppCompatActivity activity = (AppCompatActivity)context;
activity.setSupportActionBar(toolbar);
activity.getSupportActionBar().setDisplayShowTitleEnabled(false);
TextView titleText = (TextView)view.findViewById(R.id.toolbar_title);
titleText.setText(title);
if (!title.equals(getString(R.string.app_name))) {
toolbar.setNavigationIcon(R.drawable.ic_toolbar_back);
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
getActivity().onBackPressed();
}
});
}
}
}
| [
"mspark@openit.co.kr"
] | mspark@openit.co.kr |
791e40efd246b4447c511548daf141090dfb9d42 | b499ed9042b45b584984e4a51341d3694c7cef44 | /src/skocko/pobeda.java | 2a4c308baefe27bd83349c7299284e1c6223b151 | [] | no_license | balsaBane/Swing-Igra-Skocko | 1a43b6e06eab3a46aff6444f3a885656b9cf7d16 | fd9ab9d8c5a749a3fe20366915acb0355c28f09d | refs/heads/master | 2020-03-08T22:05:02.431323 | 2019-02-09T17:19:24 | 2019-02-09T17:19:24 | 128,421,716 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,857 | java |
package skocko;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFrame;
/*
Frejm koji "Iskaฤe" kada korisnik pronadje pravu kombinaciju.
*/
public class pobeda extends JFrame implements ActionListener {
ImageIcon skocko = new ImageIcon("src/skocko/ikonice/skocko.png");
JButton dugme1 = new JButton();
JButton dugme2 = new JButton();
public pobeda() {
initComponents();
this.setTitle("Pobeda!");
this.setIconImage(skocko.getImage());
this.setLocationRelativeTo(null);
this.setResizable(false);
setBackground(new Color(0,0,0,0));
this.dugme1.setBounds(75, 124, 117, 30);
this.dugme2.setBounds(200, 124, 74, 30);
pobedaLabel.add(dugme1);
pobedaLabel.add(dugme2);
dugme1.setOpaque(false);
dugme1.setContentAreaFilled(false);
dugme1.setBorderPainted(false);
dugme2.setOpaque(false);
dugme2.setContentAreaFilled(false);
dugme2.setBorderPainted(false);
dugme1.addActionListener( this);
dugme2.addActionListener(this);
}
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jLabel1 = new javax.swing.JLabel();
pobedaLabel = new javax.swing.JLabel();
jLabel1.setText("jLabel1");
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setAlwaysOnTop(true);
setFocusable(false);
setUndecorated(true);
pobedaLabel.setIcon(new javax.swing.ImageIcon(getClass().getResource("/skocko/ikonice/pobeda.png"))); // NOI18N
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(pobedaLabel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(pobedaLabel, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
pack();
}// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel pobedaLabel;
// End of variables declaration//GEN-END:variables
@Override
public void actionPerformed(ActionEvent ae) {
}
}
| [
"balsa.bane@gmail.com"
] | balsa.bane@gmail.com |
3a901c32a8da31755eabaff878b8c17d4da7f200 | a985cdd316b46d82f0cd1bacdad187a632b21bde | /loginandbuy/src/main/java/com/app/trade/service/UserLoginService.java | e6d183edf62ae4c2adb29d7b630ae35a5d61c3a3 | [] | no_license | firstgithub1989/test | 56d7e3d67243159fce113db97ce86ec5841b56e4 | 07ca7882f13eec25a9ccecd15622743c641c8e14 | refs/heads/master | 2020-03-26T02:18:55.667995 | 2018-11-13T18:32:08 | 2018-11-13T18:32:08 | 144,405,769 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 777 | java | package com.app.trade.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.app.trade.bo.User;
import com.app.trade.dao.IUserLoginDao;
@Service
public class UserLoginService implements IUserLoginService {
@Autowired
private IUserLoginDao userLoginDao;
@Override
public void addUser(User user) {
userLoginDao.save(user);
}
@Override
public List<User> getAllUsers() {
return null;
}
@Override
public void deleteUser(User user) {
userLoginDao.delete(user);
}
@Override
public void updateUserDetails(User user) {
userLoginDao.save(user);
}
@Override
public User getUserDetails(int userId) {
return userLoginDao.findByuserId(userId);
}
}
| [
"firstgithubacct@gmail.com"
] | firstgithubacct@gmail.com |
36381b0fdb37ea6f646a891130fc1e9cc8f4713a | 0c9452b5cf1d0aaf25a405fcf6f0e2e75c2bbbce | /SpringBoot-tutorial/exJdbc/src/main/java/com/dong/repository/CustomerRepository.java | de42e1c50486e7de26aca8fbd8ae0e5e1be91b9a | [] | no_license | opklnm102/spring | 708e0f17dc44a46e5605ea96af02f148ab0fea75 | 9bba55966bf3fb2bb9c99de1e2c3bb19644ff114 | refs/heads/master | 2020-12-11T03:37:34.729412 | 2017-02-06T11:30:37 | 2017-02-06T11:30:37 | 68,808,621 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,034 | java | package com.dong.repository;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.core.namedparam.BeanPropertySqlParameterSource;
import org.springframework.jdbc.core.namedparam.MapSqlParameterSource;
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
import org.springframework.jdbc.core.namedparam.SqlParameterSource;
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;
import com.dong.domain.Customer;
@Repository
/*
* @Transactional์ ํด๋์ค ์์ค์ ์ค์
* DI ์ปจํ
์ด๋์์ ๊ฐ์ ธ์ค๊ณ ํด๋น ํด๋์ค์ ์ํ ๋ฉ์๋๋ฅผ ํธ์ถํ๋ฉด DBํธ๋์ญ์
์ด ์๋์ผ๋ก ์ด๋ฃจ์ด์ง
* 1. ๋ฉ์๋๊ฐ ์ ๋๋ก ์คํ๋๋ฉด DBํธ๋์ญ์
์ด ์ปค๋ฐ
* 2. ์คํ๋์ค ์ค๋ฅ๊ฐ ๋ฐ์ํ๋ฉด DB ํธ๋์ญ์
์ด ๋กค๋ฐฑ-> checked exception์ผ ๊ฒฝ์ฐ ๋กค๋ฐฑ๋์ง ์๋๋ค.
* DI ์ปจํ
์ด๋๋ ๊ฐ ๋ฉ์๋ ์๋ค์ ์ฒ๋ฆฌ๋ฅผ ์ถ๊ฐํ ํด๋์ค๋ฅผ ๋์ ์ผ๋ก ์์ฑ
*/
@Transactional
public class CustomerRepository {
@Autowired
NamedParameterJdbcTemplate jdbcTemplate;
//NamedParameterJdbcTemplate์ query()๋ฅผ ์ฌ์ฉํ์ฌ SQL์คํ ๊ฒฐ๊ณผ๋ฅผ ๊ฐ์ฒดํํ๋ก ๊ฐ์ ธ์จ๋ค.
private static final RowMapper<Customer> customerRowMapper = (rs, i) -> {
Integer id = rs.getInt("id");
String firstName = rs.getString("first_name");
String lastName = rs.getString("last_name");
return new Customer(id, firstName, lastName);
};
public List<Customer> findAll() {
List<Customer> customers = jdbcTemplate.query("SELECT id, first_name, last_name FROM customers ORDER BY id",
customerRowMapper);
return customers;
}
public Customer findOne(Integer customerId) {
SqlParameterSource param = new MapSqlParameterSource().addValue("id", customerId);
return jdbcTemplate.queryForObject("SELECT id, first_name, last_name FROM customers WHERE id=:id", param,
customerRowMapper);
}
public Customer save(Customer customer) {
//์
๋ฐ์ดํธ์ฉ SqlParameterSource๋ฅผ ๋ง๋ ๋ค. BeanPropertySqlParameterSource๋ฅผ ์ฌ์ฉํ๋ฉด ๊ฐ์ฒด์ ํฌํจ๋ ํ๋ ์ด๋ฆ๊ณผ ๊ฐ์ ๋งคํํ SqlParameterSource๊ฐ ์๋์ผ๋ก ์์ฑ
SqlParameterSource param = new BeanPropertySqlParameterSource(customer);
//์
๋ฐ์ดํธ ๊ณ์ด์ SQL์ ์คํํ๊ธฐ ์ํด update() ํธ์ถ
if (customer.getId() == null) { //id๊ฐ null์ด๋ฉด insert๋ฌธ
jdbcTemplate.update("INSERT INTO customers(first_name, last_name) " + "VALUES(:firstName, :lastName)",
param);
} else { //์๋๋ฉด update๋ฌธ
jdbcTemplate.update("UPDATE customers SET first_name=:firstName, " + "last_name=:lastName WHERE id=:id",
param);
}
return customer;
}
public void delete(Integer customerId) {
SqlParameterSource param = new MapSqlParameterSource().addValue("id", customerId);
//delete๋ฌธ์ ์คํํ ๋๋ update() ํธ์ถ
jdbcTemplate.update("DELETE FROM customers WHERE id=:id", param);
}
}
| [
"opklnm102@gmail.com"
] | opklnm102@gmail.com |
72cf38175878fff28274cc8aa891ff95b7c36563 | 2ab5cbf9c4b156cdc0b0315d84cce1329461f40a | /cursos-alura/Java/Formaรงรฃo Expert em orientaรงรฃo a Objetos/01 - Design Patterns com Java/workspace/desing-patterns/src/observer/EnviadorDeSms.java | 3969d6bae87552c2a5837d7ac1ce5a743809005d | [] | no_license | jairosousa/cursos-alura | d7ddf9b617b3af84e960f9b8dff088547823792b | 7d40e5854024a5175615582cb72befe40a912c0a | refs/heads/master | 2023-06-22T23:34:30.568738 | 2023-06-21T19:21:22 | 2023-06-21T19:21:22 | 209,281,465 | 1 | 0 | null | 2023-05-24T01:13:56 | 2019-09-18T10:29:35 | HTML | UTF-8 | Java | false | false | 202 | java | package observer;
import builder.NotaFiscal;
public class EnviadorDeSms implements AcaoAposGerarNota {
@Override
public void executa(NotaFiscal nf) {
System.out.println("Enviei por sms");
}
}
| [
"jaironsousa@gmail.com"
] | jaironsousa@gmail.com |
1c74602fcdbaa1867d6f41a64b31bdeed6863582 | 4d55923a2613f867e2482dcea14c428ca7de3dc3 | /AOOD/Battleship/BattleshipPlayer.java | 508f7a353517e148846eb1f4445c72b6ff0d6689 | [] | no_license | Ben-McDaniel/2020-school | 52c9b39365ebbd6d9cedd86e337b18f26c439651 | db6da3a0d5172b899faf9ae745ba824af7411018 | refs/heads/master | 2023-02-22T20:46:21.941240 | 2021-01-27T04:20:05 | 2021-01-27T04:20:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,750 | java | import java.util.Scanner;
import java.util.Arrays;
public class BattleshipPlayer {
String pName;
Scanner input = new Scanner(System.in);
Position pShoot;
char pShootChar;
int pShootInt;
public Ocean cOcean;
BattleshipGrid cGrid;
int turn = 0;
boolean over = false;
public BattleshipPlayer(){
pName = null;
cGrid = new BattleshipGrid();
cOcean = new Ocean();
cOcean.placeAllBoats();
}
public void startGame(){
if(pName == null){
System.out.print("Enter Name: ");
pName = input.next();
}
System.out.println("Welcome " + pName);
BattleshipGrid pBattleshipGrid = new BattleshipGrid();
}
public String playerName(){
return pName;
}
public Position shoot(){
turn++;
while(turn < 100){
cGrid.viewGrid();
System.out.print("Enter the row: ");
pShootChar = input.next().charAt(0);
System.out.print("Enter the column: ");
pShootInt = input.nextInt() - 1;
if(pShootInt < 10 && (pShootChar == 'A' || pShootChar == 'B' || pShootChar == 'C' || pShootChar == 'D' || pShootChar == 'E' || pShootChar == 'F' || pShootChar == 'G' || pShootChar == 'H' || pShootChar == 'I' || pShootChar == 'J')){
pShoot = new Position(pShootInt, pShootChar);
return pShoot;
}else{
System.out.println("Invalid Selection, try again making sure you enter an uppercase letter");
}
}
return null;
}
public void updateGrid(){
cOcean.viewBackup();
cOcean.viewOcean();
Position shotAt = shoot();
cOcean.shootAt(shotAt);
if(cOcean.hit(shotAt)){
cGrid.shotAt(shotAt, true, cOcean.boatInital(shotAt));
if(cOcean.sunk(shotAt)){
System.out.println("Turn #" + turn);
System.out.println("Sunk " + cOcean.boatName(shotAt));
}else{
System.out.println("Turn #" + turn);
System.out.println("Hit " + cOcean.boatName(shotAt));
}
if(cOcean.allSunk() || turn > 99){
System.out.println("GAME OVER!");
over = true;
}
}else{
cGrid.shotAt(shotAt, false, 'X');
System.out.println("Turn #" + turn);
System.out.println("Missed");
}
}
public boolean gameOver(){
return over;
}
// public void updatePlayer(Position pos, boolean hit, char initial, string boatName, boolean sunk, boolean gameOver, boolean tooManyTurns, int turns){
// }
}
| [
"47250557+SN1CK3T@users.noreply.github.com"
] | 47250557+SN1CK3T@users.noreply.github.com |
2854f3a80218b467b13409ccf53f85a96df1b8eb | 17f80f5e2e7957fe150df3dc7b8776771b7a95a9 | /20190909/VideoGameCollectionDao-Terrence-Turner/src/main/java/com/company/VideoGameCollectionDaoTerrenceTurner/model/Console.java | 3fed49922f9fe006b9b496aaa7daf04ef5fc83d2 | [] | no_license | terrenceturner/Terrence_Turner_JavaS1 | 81a6b56aa4232df49bbd2bc9aeff0ef68f121343 | f5ed81907460fd91930074f1fa3f6625a6b373a4 | refs/heads/master | 2022-11-26T11:47:58.208537 | 2019-10-15T12:37:58 | 2019-10-15T12:37:58 | 200,704,294 | 0 | 0 | null | 2022-11-16T06:57:51 | 2019-08-05T18:00:38 | Java | UTF-8 | Java | false | false | 1,058 | java | package com.company.VideoGameCollectionDaoTerrenceTurner.model;
import java.util.Objects;
public class Console {
private int console_id;
private String name;
private String year;
public int getConsole_id() {
return console_id;
}
public void setConsole_id(int console_id) {
this.console_id = console_id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getYear() {
return year;
}
public void setYear(String year) {
this.year = year;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Console console = (Console) o;
return console_id == console.console_id &&
name.equals(console.name) &&
year.equals(console.year);
}
@Override
public int hashCode() {
return Objects.hash(console_id, name, year);
}
}
| [
"tsturner24@gmail.com"
] | tsturner24@gmail.com |
46c16144b7aaa933d38a063f9119144ec7e3278f | 15e33e2d6f5ab42c93647909998f6201d9bc2e50 | /src/main/java/com/ncoding/backend/test/course/api/EnrollResource.java | 179f67cf2eb10fef1e48ba9e4a6837b8a66a1084 | [] | no_license | omarhuanca/course | 03f37768d3dbdc12689b809a4ca5292cac561ca3 | a885e1403ec565b2e0f79fb600c14d8dd0459132 | refs/heads/develop | 2023-05-12T03:48:32.760332 | 2021-06-07T02:04:09 | 2021-06-07T02:04:09 | 374,146,653 | 0 | 0 | null | 2021-06-07T02:04:10 | 2021-06-05T15:19:56 | Java | UTF-8 | Java | false | false | 10,396 | java | package com.ncoding.backend.test.course.api;
import static java.util.Optional.ofNullable;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.validation.Valid;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.lang.Nullable;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.ncoding.backend.test.course.core.Enroll;
import com.ncoding.backend.test.course.dto.EnrollDTOV;
import com.ncoding.backend.test.course.service.EnrollService;
import com.ncoding.backend.test.course.util.AElog;
import com.ncoding.backend.test.course.util.AEutil;
import com.ncoding.backend.test.course.util.exception.response.custom.CustomBadRequestException;
import com.ncoding.backend.test.course.util.exception.response.custom.CustomNotFoundException;
import com.ncoding.backend.test.course.util.exception.response.custom.CustomRuntimeException;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.media.ArraySchema;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.responses.ApiResponses;
import io.swagger.v3.oas.annotations.tags.Tag;
@RestController
@RequestMapping("/api/v1/enrolls")
@Tag(name = "enrolls", description = "the enroll API")
public class EnrollResource {
private final Logger logger = LoggerFactory.getLogger(EnrollResource.class);
@Autowired
private AEutil util;
@Autowired
private EnrollService service;
@Operation(summary = "Get all enrolls")
@ApiResponses(value = { @ApiResponse(responseCode = "200", description = "found enrolls", content = {
@Content(mediaType = "application/json", array = @ArraySchema(schema = @Schema(implementation = Enroll.class))) }),
@ApiResponse(responseCode = "404", description = "No Students found", content = @Content) })
@GetMapping
public ResponseEntity<Object> findAllObjects(@Nullable Integer status, @Nullable Long studentId,
@Nullable Long courseId, @RequestParam(value = "pageSize", defaultValue = "10") Integer pageSize,
@RequestParam(value = "page", defaultValue = "0") Integer page, HttpServletRequest request) {
Integer totalRecords;
List<Enroll> objectList;
HttpHeaders responseHeaders = new HttpHeaders();
requestLog(request);
objectList = service.getAllObjects(ofNullable(status), ofNullable(studentId), ofNullable(courseId), pageSize,
page);
totalRecords = service.getCountAllObjects(ofNullable(status), ofNullable(studentId), ofNullable(courseId));
responseHeaders.set("X-Total-Count", totalRecords.toString());
responseHeaders.set("Custom-Message", "HTTP/1.1 200 OK");
return new ResponseEntity<Object>(objectList, responseHeaders, HttpStatus.OK);
}
@Operation(summary = "Get a enroll by enroll id")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "found the foo", content = {
@Content(mediaType = "application/json", schema = @Schema(implementation = Enroll.class)) }),
@ApiResponse(responseCode = "400", description = "Wrong request", content = @Content(mediaType = "application/json", schema = @Schema(implementation = CustomBadRequestException.class))),
@ApiResponse(responseCode = "404", description = "Not found", content = @Content(mediaType = "application/json", schema = @Schema(implementation = CustomNotFoundException.class))) })
@GetMapping("/{id}")
public ResponseEntity<Object> findById(
@Parameter(description = "id of enroll to be searched") @PathVariable("id") Long id,
HttpServletRequest request) {
Enroll object;
HttpHeaders responseHeaders = new HttpHeaders();
requestLog(request);
if (null == id) {
throw new CustomRuntimeException(HttpStatus.BAD_REQUEST, 400, "Wrong request", "There is a to the param.");
} else {
object = service.getObjectById(ofNullable(id));
if (null == object) {
throw new CustomRuntimeException(HttpStatus.NOT_FOUND, 404, "Not found",
"There isn't records to the param");
}
}
responseHeaders.set("Custom-Message", "HTTP/1.1 200 OK");
return new ResponseEntity<Object>(object, responseHeaders, HttpStatus.OK);
}
@Operation(summary = "Create a enroll")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "enroll created", content = {
@Content(mediaType = "application/json", schema = @Schema(implementation = Enroll.class)) }),
@ApiResponse(responseCode = "400", description = "Wrong Request", content = @Content(mediaType = "application/json", schema = @Schema(implementation = CustomBadRequestException.class))) })
@PostMapping
public ResponseEntity<Object> saveObject(
@Parameter(description = "enroll object to be created") @Valid @RequestBody EnrollDTOV objectDTOV,
HttpServletRequest request) {
Enroll object = new Enroll();
HttpHeaders responseHeaders = new HttpHeaders();
requestLog(request);
if (null != objectDTOV) {
objectDTOV.copyCoreObject(object);
object = service.save(object);
} else {
throw new CustomRuntimeException(HttpStatus.BAD_REQUEST, 400, "Wrong Request",
"The object want to save is null.");
}
responseHeaders.set("Custom-Message", "HTTP/1.1 200 OK");
return new ResponseEntity<Object>(object, responseHeaders, HttpStatus.OK);
}
@Operation(summary = "Update a enroll")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "enroll updated successfully", content = {
@Content(mediaType = "application/json", schema = @Schema(implementation = Enroll.class)) }),
@ApiResponse(responseCode = "404", description = "Fail request", content = @Content(mediaType = "application/json", schema = @Schema(implementation = CustomNotFoundException.class))),
@ApiResponse(responseCode = "400", description = "Wrong request", content = @Content(mediaType = "application/json", schema = @Schema(implementation = CustomBadRequestException.class))) })
@PutMapping("/{id}")
public ResponseEntity<Object> updateObject(
@Parameter(description = "enroll object to be updated") @Valid @RequestBody EnrollDTOV objectDTOV,
@Parameter(description = "id of enroll to be updated") @PathVariable("id") Long id,
HttpServletRequest request) {
Enroll object = new Enroll();
HttpHeaders responseHeaders = new HttpHeaders();
requestLog(request);
if (objectDTOV != null && id != null) {
object = service.getObjectById(ofNullable(id));
if (object != null && object.getUid() != null) {
objectDTOV.copyCoreObject(object);
object = service.update(object);
} else {
throw new CustomRuntimeException(HttpStatus.NOT_FOUND, 404, "Fail request",
"There isn't record you want update.");
}
} else {
throw new CustomRuntimeException(HttpStatus.BAD_REQUEST, 400, "Wrong request",
"There are error belongs params.");
}
responseHeaders.set("Custom-Message", "HTTP/1.1 200 OK");
return new ResponseEntity<Object>(object, responseHeaders, HttpStatus.OK);
}
@Operation(summary = "Delete a enroll")
@ApiResponses(value = { @ApiResponse(responseCode = "200", description = "enroll deleted"),
@ApiResponse(responseCode = "404", description = "Fail request", content = @Content(mediaType = "application/json", schema = @Schema(implementation = CustomNotFoundException.class))),
@ApiResponse(responseCode = "400", description = "Wrong request", content = @Content(mediaType = "application/json", schema = @Schema(implementation = CustomBadRequestException.class))) })
@DeleteMapping("/{id}")
public ResponseEntity<Object> deleteObject(
@Parameter(description = "id of enroll to be deleted") @PathVariable("id") Long id,
HttpServletRequest request) {
Enroll object = new Enroll();
HttpHeaders responseHeaders = new HttpHeaders();
requestLog(request);
if (null != id) {
object = service.getObjectById(ofNullable(id));
if (null != object && null != object.getUid()) {
service.delete(object);
} else {
throw new CustomRuntimeException(HttpStatus.NOT_FOUND, 404, "Fail request",
"There isn't record you want delete.");
}
} else {
throw new CustomRuntimeException(HttpStatus.BAD_REQUEST, 400, "Wrong request",
"There are error belongs params.");
}
responseHeaders.set("Custom-Message", "HTTP/1.1 200 OK");
return new ResponseEntity<Object>(object, responseHeaders, HttpStatus.OK);
}
private synchronized void requestLog(HttpServletRequest request) {
AElog.info1(logger,
util.getInetAddressPort() + " <= " + request.getRemoteHost() + " {method:" + request.getMethod()
+ ", URI:" + request.getRequestURI() + ", query:" + request.getQueryString() + "}");
}
}
| [
"oma378501@yahoo.com"
] | oma378501@yahoo.com |
a43640c44bef00d7b47d71247e4711c53cd5ad0a | 7f71f624a109b57eaabd1276d0f6091348f41699 | /tasks01/tests/ru/spbau/kozlov/task01/tests/FileReadingTest.java | d24c8979edd4140e72e2a4a92390ddbbbca04c39 | [] | no_license | adkozlov/java-2015 | 2ab2c8af2bfab371b8ed885d98c988812e2289d8 | b0cccb20af4765dedd33902cacafbc518e2ecf81 | refs/heads/master | 2021-01-23T02:43:54.796917 | 2015-06-01T11:31:00 | 2015-06-01T11:31:00 | 30,599,714 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,632 | java | package ru.spbau.kozlov.task01.tests;
import org.junit.After;
import org.junit.Test;
import ru.spbau.kozlov.task01.messages.IllegalMessageFormatException;
import ru.spbau.kozlov.task01.messages.Message;
import ru.spbau.kozlov.task01.messages.readers.FileMessageReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.PrintWriter;
import static org.junit.Assert.*;
/**
* @author adkozlov
*/
public class FileReadingTest {
public static final String TEST_FILE_NAME = "testFiles/reading.in";
@After
public void tearDown() {
File testFile = new File(TEST_FILE_NAME);
if (testFile.exists()) {
testFile.delete();
}
}
@Test
public void testEmptyFile() throws IOException, IllegalMessageFormatException {
createTestFile();
try (FileMessageReader reader = new FileMessageReader(TEST_FILE_NAME)) {
assertNull("some message read", reader.readMessage());
}
}
@Test
public void testOneCorrectMessage() throws IOException, IllegalMessageFormatException {
createTestFile("3", "foo", "bar", "baz");
try (FileMessageReader reader = new FileMessageReader(TEST_FILE_NAME)) {
Message message = reader.readMessage();
assertNotNull("message is not read", message);
assertEquals("wrong lines count", 3, message.getLines().size());
assertEquals("wrong first line", "foo", message.getLines().get(0));
assertEquals("wrong second line", "bar", message.getLines().get(1));
assertEquals("wrong third line", "baz", message.getLines().get(2));
assertNull("some message read", reader.readMessage());
}
}
@Test
public void testTwoCorrectMessages() throws IOException, IllegalMessageFormatException {
createTestFile("2", "foo", "bar", "1", "baz baz");
try (FileMessageReader reader = new FileMessageReader(TEST_FILE_NAME)) {
Message message = reader.readMessage();
assertNotNull("message is not read", message);
assertEquals("wrong lines count", 2, message.getLines().size());
assertEquals("wrong first line", "foo", message.getLines().get(0));
assertEquals("wrong second line", "bar", message.getLines().get(1));
message = reader.readMessage();
assertNotNull("message is not read", message);
assertEquals("wrong lines count", 1, message.getLines().size());
assertEquals("wrong first line", "baz baz", message.getLines().get(0));
assertNull("some message read", reader.readMessage());
}
}
@Test(expected = IllegalMessageFormatException.class)
public void testIncorrectSizeFormat() throws IOException, IllegalMessageFormatException {
createTestFile("foo", "bar");
try (FileMessageReader reader = new FileMessageReader(TEST_FILE_NAME)) {
reader.readMessage();
}
}
@Test(expected = IllegalMessageFormatException.class)
public void testIncorrectLinesCount() throws IOException, IllegalMessageFormatException {
createTestFile("3", "foo", "bar");
try (FileMessageReader reader = new FileMessageReader(TEST_FILE_NAME)) {
reader.readMessage();
}
}
private static void createTestFile(String... lines) throws FileNotFoundException {
try (PrintWriter printWriter = new PrintWriter(TEST_FILE_NAME)) {
for (String line : lines) {
printWriter.println(line);
}
}
}
}
| [
"adkozlov@gmail.com"
] | adkozlov@gmail.com |
aca51f2de3eb65bb9ac0ef87a9f363513db748d0 | 6c7abb26979cd92a206a5f02e7c8afbfc2ca4dc8 | /Practice/NewsGetter/app/src/main/java/com/example/akhil/newsgetter/RecyclerAdapter.java | e0de353b31609710e3b11935fe4e16c5cba7c730 | [] | no_license | vakhil/AndroidAdventure | 19f87c07fe9b259866db01187901866ab2cf3dd8 | d1b888241444112c9fa0eae1a112f4ab1ba63887 | refs/heads/master | 2020-04-04T23:48:45.404402 | 2018-11-25T13:19:55 | 2018-11-25T13:19:55 | 156,372,746 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,685 | java | package com.example.akhil.newsgetter;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.text.Layout;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RelativeLayout;
import android.widget.TextView;
import com.bumptech.glide.Glide;
import java.util.ArrayList;
import de.hdodenhof.circleimageview.CircleImageView;
public class RecyclerAdapter extends RecyclerView.Adapter<RecyclerAdapter.ViewHolder> {
private static final String TAG = "RecyclerAdapter";
private ArrayList<SingleItem> mImageNames = new ArrayList<SingleItem>();
Context context;
public RecyclerAdapter(ArrayList<SingleItem> mImageNames, Context context) {
this.mImageNames = mImageNames;
this.context = context;
}
@NonNull
@Override
public ViewHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int i) {
View itemView = LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.layout_listitem,viewGroup,false);
return new ViewHolder(itemView);
}
@Override
public void onBindViewHolder(@NonNull ViewHolder viewHolder, int i) {
Log.d(TAG,"OnBindViewHolder called");
final SingleItem viewHolderItemSelected = mImageNames.get(i);
Glide.with(context).asBitmap().load(viewHolderItemSelected.mImageHyperLink).into(viewHolder.image);
viewHolder.imageName.setText(viewHolderItemSelected.storyTitle);
viewHolder.parentLayout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Uri webpage = Uri.parse(viewHolderItemSelected.hyperLink);
Intent intent = new Intent(Intent.ACTION_VIEW,webpage);
if (intent.resolveActivity(context.getPackageManager()) != null) {
context.startActivity(intent);
}
}
});
}
@Override
public int getItemCount() {
return mImageNames.size();
}
public class ViewHolder extends RecyclerView.ViewHolder
{
CircleImageView image;
TextView imageName;
RelativeLayout parentLayout;
public ViewHolder(@NonNull View itemView) {
super(itemView);
image = (CircleImageView) itemView.findViewById(R.id.tv_image);
imageName = (TextView) itemView.findViewById(R.id.tv_text_view);
parentLayout = (RelativeLayout) itemView.findViewById(R.id.parent_layout);
}
}
}
| [
"akhilvemula95@gmail.com"
] | akhilvemula95@gmail.com |
9ea83d71c67a309e53cf3fb80868298dbb9596e6 | b6e0cb9ec8889888c5323021991ce5ea7ff6094c | /src/main/java/io/adagate/handlers/routes/accounts/GetAccountAddresses.java | debec134afaef96b419052ebf8c0810a649372f1 | [] | no_license | adagate-io/adagate-api | c3de7d195da51675b46c4aec4050394c24e314b0 | 9214bb04ca455c90cc2c7beb6795f7d8fcdb86b4 | refs/heads/main | 2023-08-28T13:13:30.485872 | 2021-11-08T15:53:57 | 2021-11-08T15:53:57 | 409,929,758 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,209 | java | package io.adagate.handlers.routes.accounts;
import io.vertx.core.Vertx;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.web.RoutingContext;
import static io.adagate.handlers.database.accounts.GetAccountAddresses.ADDRESS;
import static io.netty.handler.codec.http.HttpResponseStatus.OK;
import static io.vertx.core.buffer.Buffer.buffer;
public final class GetAccountAddresses extends AbstractAccountHandler {
public GetAccountAddresses(Vertx vertx) { super(vertx); }
@Override
public void handle(RoutingContext context) {
super.handle(context);
if ( ! context.response().ended()) {
vertx
.eventBus()
.request(
ADDRESS,
new JsonObject()
.put("stakeAddress", stakeAddress)
.put("order", order)
.put("page", page)
.put("count", count)
)
.onSuccess(msg -> addResponseHeaders(OK, context)
.end(buffer(compress(encode(msg.body()), context))))
.onFailure(err -> handleError(err, context));
}
}
}
| [
"william@cityxcape.com"
] | william@cityxcape.com |
1d87e064486b84e9e7b2e94f00b0cc39047e644b | a8501749fd666022e49bac94ad86afbd00756828 | /aula02_PPI/src/aula02_PPI/PaisService.java | 3a134a19022c0109b298ae12647d8cdac202a546 | [] | no_license | anacarolina-s/Praticas-de-Programa-o-Integrada | 7b1a625b995c7b90a4f38078dedba19c4b6eec82 | 8556eb35ea6b755c0f9c5b878f4f32d08fe778c5 | refs/heads/master | 2022-10-18T03:40:47.226951 | 2020-06-06T19:16:36 | 2020-06-06T19:16:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 809 | java | package aula02_PPI;
import java.util.ArrayList;
public class PaisService
{
PaisDAO dao = new PaisDAO();
PaisMetodos paisMetodos = new PaisMetodos();
//----- C R E A T E -----
public int create(Pais pais)
{
return dao.create(pais);
}
//----- R E A D -----
public Pais read(int id)
{
return dao.read(id);
}
//----- U P D A T E -----
public void update(Pais pais)
{
dao.update(pais);
}
//----- D E L E T E -----
public void delete(int id)
{
dao.delete(id);
}
// Pais com maior populacao
public String maiorPopulacao()
{
return paisMetodos.maiorPopulacao();
}
// Pais com menor area
public String menorArea()
{
return paisMetodos.menorArea();
}
// Vetor de 3 paises
public ArrayList<Pais> vetorTresPaises()
{
return paisMetodos.vetorTresPaises();
}
}
| [
"-` A n a ยด-@LAPTOP-M5143DC0"
] | -` A n a ยด-@LAPTOP-M5143DC0 |
a286db9c8f6bae3aee82a973a816658b70f4fc3d | 595548e5b070307d332b51b2369fe9b1a9397706 | /src/main/java/org/bremersee/authman/exception/InvalidClientDisplayNameException.java | 14b6467378c0e8ab82cfde79e913f20ee20997ef | [
"Apache-2.0"
] | permissive | bremersee/authman-app | ace7c9c7589b3d0549f5196351b16de911788135 | f079b51d7361e64f4c60b115372ff2fc1248624f | refs/heads/master | 2020-03-27T08:00:33.255500 | 2018-09-20T17:41:23 | 2018-09-20T17:41:23 | 146,212,508 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,171 | java | /*
* Copyright 2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.bremersee.authman.exception;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
/**
* @author Christian Bremer
*/
@ResponseStatus(code = HttpStatus.BAD_REQUEST, reason = "The display name of the client is invalid.")
public class InvalidClientDisplayNameException extends IllegalArgumentException {
private static final long serialVersionUID = -2938690594013794212L;
public InvalidClientDisplayNameException(String displayName) {
super(displayName + " is invalid.");
}
}
| [
"christian.bremer@cstx.de"
] | christian.bremer@cstx.de |
ea1b154eabfd1a9ab264f894ea32ada675d7b64f | 9cb01e3617cefaf5cc50d2488ad75cf19a5a5e75 | /login/app/src/test/java/com/test/login/ExampleUnitTest.java | f6f3c7d05a23c1f135f82b95020e242587bbcc7a | [] | no_license | freemaster/android | 4c249eecc0f4e2f208ae0664447fe29523d5f901 | e32d06152e41d507566d05a28aae814b8cde647d | refs/heads/master | 2023-04-15T00:19:21.247999 | 2021-04-30T14:26:58 | 2021-04-30T14:26:58 | 363,160,810 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 375 | java | package com.test.login;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
} | [
"gosomis@gmail.com"
] | gosomis@gmail.com |
52d8d55ea3e8d5023a335aa8e535aae8b991fcec | 82681fea5de68d2ffee39739cd2c7520c3e8cd1f | /gfoodshop-manager-service/src/main/java/me/guoxin/manager/service/impl/RoleServiceImpl.java | 2122051d783738939ef82b461637acee03e11060 | [] | no_license | bigbilii/G-FoodShop | 73f669247ea1a817dfc920182de1138f5d64e3ee | cb663b32e4bb93bfcdb9b6f5643cf6ded702d73f | refs/heads/master | 2022-12-21T05:09:57.020059 | 2019-06-08T05:31:12 | 2019-06-08T05:31:12 | 166,627,607 | 0 | 1 | null | 2022-12-16T09:45:13 | 2019-01-20T05:42:59 | HTML | UTF-8 | Java | false | false | 732 | java | package me.guoxin.manager.service.impl;
import me.guoxin.manager.mapper.RoleMapper;
import me.guoxin.manager.service.RoleService;
import me.guoxin.pojo.GfsRole;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
@Service
public class RoleServiceImpl implements RoleService {
@Resource
RoleMapper roleMapper;
@Override
public List<GfsRole> getRoleListWithoutAdmin() {
List<GfsRole> list = getRoleList();
return list;
}
@Override
public List<GfsRole> getRoleList() {
return roleMapper.getRoleList();
}
@Override
public List<GfsRole> getUserRole() {
return roleMapper.getUserRole(GfsRole.USER);
}
}
| [
"bigbilii@outlook.com"
] | bigbilii@outlook.com |
1bb10e93a4bff74941a3ba98870c318f02367f9f | acde85ed45cb39e22af2ce347a25667e17b2c218 | /app/src/main/java/com/example/medlib/MainActivity.java | 93eb4d5c4509383f993174c85d7314a19942535a | [] | no_license | unegare/medlib | 8ed719014c7733a6071fddc99160d9bab6b74ed5 | be35eab951cb3ff1a8800219c91e565bbd55aa27 | refs/heads/master | 2023-04-22T13:54:52.569346 | 2021-04-30T16:14:07 | 2021-04-30T16:14:07 | 356,656,220 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 19,931 | java | package com.example.medlib;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.Toolbar;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import android.app.Activity;
import androidx.appcompat.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.database.Cursor;
import android.graphics.drawable.shapes.Shape;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.Toast;
import com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton;
import java.io.ByteArrayOutputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import java.util.Random;
import java.util.function.Consumer;
import java.util.function.IntConsumer;
public class MainActivity extends AppCompatActivity {
ArrayList<DoctorItem> doctors;
ArrayList<DoctorItem> docDates;
VisitDB vdb;
DoctorAdapter docAd;
Button btn;
Button btn2;
String s_uri_to_open;
String s_uri_datatype;
ExtendedFloatingActionButton add_fbtn;
ExtendedFloatingActionButton gen_new_db_btn;
ExtendedFloatingActionButton add_new_record_btn;
ExtendedFloatingActionButton add_new_profile_btn;
List<ExtendedFloatingActionButton> btn_list;
boolean FABsShown;
Toolbar toolbar;
int menuLvl;
enum MyIntentResults {
SELECT_DOC,
OPEN_DOC,
OPEN_CONTENT_URL,
ADD_NEW_RECORD,
};
final static MyIntentResults[] MIR_VALUES = MyIntentResults.values();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
btn = (Button) findViewById(R.id.button);
btn.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("application/pdf");
startActivityForResult(intent, MyIntentResults.SELECT_DOC.ordinal());
}
});
btn.setVisibility(View.INVISIBLE);
btn2 = (Button) findViewById(R.id.button2);
btn2.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("content://com.example.medlib.MyContentProvider/something"), "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivityForResult(intent, MyIntentResults.OPEN_CONTENT_URL.ordinal());
}
});
btn2.setVisibility(View.INVISIBLE);
add_fbtn = findViewById(R.id.add_fbtn);
add_fbtn.shrink();
add_fbtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (FABsShown) hideFABs();
else showFABs();
}
});
add_new_record_btn = findViewById(R.id.add_new_record_btn);
add_new_record_btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
hideFABs();
Intent intent = new Intent(MainActivity.this, RecordSpecificator.class);
final Cursor allProfiles = vdb.getAllProfiles();
if (allProfiles.moveToFirst()) {
do {
intent.putExtra(
Integer.toString(allProfiles.getInt(allProfiles.getColumnIndex(VisitDB.VisitDBHelper.COLUMN_PROFILE_ID))),
allProfiles.getString(allProfiles.getColumnIndex(VisitDB.VisitDBHelper.COLUMN_PROFILE_NAME)));
} while(allProfiles.moveToNext());
}
startActivityForResult(intent, MyIntentResults.ADD_NEW_RECORD.ordinal());
}
});
add_new_profile_btn = findViewById(R.id.add_new_profile_btn);
add_new_profile_btn.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View v) {
hideFABs();
final EditText ed = new EditText(MainActivity.this);
DialogInterface.OnClickListener ad_onclick = new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int id) {
switch(id) {
case Dialog.BUTTON_POSITIVE:
if (ed.getText().toString().trim().equals("")) {
Toast t = Toast.makeText(getApplicationContext(), "entered profile name is empty", Toast.LENGTH_LONG);
t.show();
} else {
vdb.addProfile(ed.getText().toString().trim());
}
break;
case Dialog.BUTTON_NEGATIVE:
break;
case Dialog.BUTTON_NEUTRAL:
break;
default:
throw new IllegalStateException("Unexpected value: " + id);
}
}
};
AlertDialog.Builder adb = new AlertDialog.Builder(MainActivity.this);
adb.setTitle(R.string.ad_enter_profile_name);
adb.setMessage(R.string.ad_enter_profile_name_message);
adb.setPositiveButton("OK", ad_onclick);
adb.setNegativeButton("Cancel", ad_onclick);
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT);
ed.setLayoutParams(lp);
adb.setView(ed);
adb.show();
}
});
gen_new_db_btn = findViewById(R.id.gen_new_db_btn);
gen_new_db_btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
hideFABs();
Thread th = new Thread(new Runnable() {
@Override
public void run() {
vdb.genNewDB();
menuLvl = 0;
renderProfileList();
}
});
th.start();
}
});
btn_list = Arrays.asList(gen_new_db_btn, add_new_profile_btn, add_new_record_btn);
FABsShown = true;
hideFABs();
RecyclerView rvDoctors = (RecyclerView) findViewById(R.id.listOfDoctors);
if (doctors == null) {
doctors = new ArrayList<DoctorItem>(Arrays.asList(new DoctorItem("Empty list 1", -1,
j -> {Log.i("MainActivity", "Empty list of doctors: onClick (from onCreate)");},
j -> {Log.i("MainActivity", "Empty list of doctors: onLongClick (from onCreate)");})));
}
docAd = new DoctorAdapter(doctors);
rvDoctors.setAdapter(docAd);
rvDoctors.setLayoutManager(new LinearLayoutManager(this));
}
@Override
protected void onStart() {
super.onStart();
Toast toast = Toast.makeText(getApplicationContext(), "C'est un message pour vous.", Toast.LENGTH_LONG);
toast.show();
}
@Override
protected void onResume() {
super.onResume();
// getWindow().getDecorView().getRootView().setBackgroundColor(Color.argb(255,0,0,0));
vdb = new VisitDB(getApplicationContext());
vdb.open();
menuLvl = 0;
Thread th = new Thread(new Runnable() {
@Override
public void run() {
renderProfileList();
}
});
th.start();
}
protected void showToast(String s) {
Toast toast = Toast.makeText(getApplicationContext(), s, Toast.LENGTH_LONG);
toast.show();
}
@Override
protected void onPause() {
super.onPause();
// vdb.close();
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
// showToast("onActivityResult: resultCode = " + resultCode + " | RESULT_OK == " + Activity.RESULT_OK + " | " + MIR_VALUES[requestCode] + " | (data == null) == " + (data == null));
if (resultCode != Activity.RESULT_OK) {
if (MIR_VALUES[requestCode] == MyIntentResults.OPEN_CONTENT_URL) {
if (s_uri_datatype.equals("application/pdf")) {
Intent intent = new Intent(MainActivity.this, PdfViewer.class);
intent.putExtra("uri", s_uri_to_open);
startActivity(intent);
}
}
// Log.i(Thread.currentThread().getStackTrace()[1].getMethodName(), "resultCode = " + resultCode);
Log.i("onActivityResult", "resultCode = " + resultCode);
return;
}
switch (MIR_VALUES[requestCode]) {
case SELECT_DOC: {
Uri uri = data.getData();
Toast t = Toast.makeText(getApplicationContext(), uri.getPath(), Toast.LENGTH_LONG);
t.show();
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivityForResult(intent, MyIntentResults.OPEN_DOC.ordinal());
break;
}
case OPEN_DOC: {
Toast t = Toast.makeText(getApplicationContext(), "Returned from OPEN_DOC", Toast.LENGTH_LONG);
t.show();
break;
}
case OPEN_CONTENT_URL: {
Toast t = Toast.makeText(getApplicationContext(), "Returned from OPEN_CONTENT_URL", Toast.LENGTH_LONG);
t.show();
break;
}
case ADD_NEW_RECORD: {
if (data == null) {
Log.i("onActivityResult: ADD_NEW_RECORD", "data == null");
} else {
Log.i("onActivityResult: ADD_NEW_RECORD", "data received");
Bundle bundle = data.getExtras();
String s_profile_id = bundle.getString(RecordSpecificator.KEY_PROFILE_ID);
String docname = bundle.getString(RecordSpecificator.KEY_DOCNAME);
long date = bundle.getLong(RecordSpecificator.KEY_DATE);
String attached_file = bundle.getString(RecordSpecificator.KEY_ATTACHED_FILE_URI);
Toast.makeText(getApplicationContext(), "attached_file: " + attached_file, Toast.LENGTH_LONG).show();
String datatype = getContentResolver().getType(Uri.parse(attached_file));
InputStream is = null;
try {
is = getContentResolver().openInputStream(Uri.parse(attached_file));
} catch (FileNotFoundException e) {
e.printStackTrace();
Toast t = Toast.makeText(getApplicationContext(), "bad content uri", Toast.LENGTH_LONG);
t.show();
break;
}
ByteArrayOutputStream byteBuffer = new ByteArrayOutputStream();
final int bufferSize = 1024;
byte[] buffer = new byte[bufferSize];
try {
int len = 0;
while ((len = is.read(buffer)) != -1) {
byteBuffer.write(buffer);
}
} catch (IOException e) {
Toast t = Toast.makeText(getApplicationContext(), "io error", Toast.LENGTH_LONG);
t.show();
e.printStackTrace();
return;
}
Log.i("onActivityResult ADD_NEW_RECORD", "go to addRecord");
Log.i("onActivityResult: ADD_NEW_RECORD", datatype);
Log.i("onActivityResult: ADD_NEW_RECORD", "bytearr.length = " + byteBuffer.toByteArray().length);
vdb.addRecord(docname, Integer.parseInt(s_profile_id), byteBuffer.toByteArray(), datatype);
}
break;
}
}
Log.i(MainActivity.class.getName(), "requestCode: " + requestCode);
}
@Override
public void onBackPressed() {
Toast t = Toast.makeText(getApplicationContext(), "this is a message from onBackPressed", Toast.LENGTH_SHORT);
t.show();
if (menuLvl > 0) {
Log.i("onBackPressed", "doctors.size() = " + doctors.size());
docAd.setDoctors(doctors);
docAd.notifyDataSetChanged();
menuLvl--;
} else {
super.onBackPressed();
}
}
@Override
public boolean onCreateOptionsMenu (Menu menu) {
getMenuInflater().inflate(R.menu.toolbar_menu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
if (item.getItemId() == R.id.action_toolbar_001) {
Toast t = Toast.makeText(getApplicationContext(), "toolbar action 001 clicked", Toast.LENGTH_LONG);
t.show();
}
return true;
}
public void renderProfileList() {
final Random rnd = new Random();
final Cursor cur = vdb.getAllUsedProfileNames();
final ArrayList<DoctorItem> docs = new ArrayList<DoctorItem>();
if (cur.moveToFirst()) {
final IntConsumer lambdaOnClick = j -> { onProfileChosen(j); };
final IntConsumer lambdaOnLongClick = prof_id -> {
vdb.deleteByProfileID(prof_id);
Iterator<DoctorItem> itemIterator = docs.iterator();
int i = 0;
while(itemIterator.hasNext()) {
DoctorItem docitem = itemIterator.next();
if (docitem.getID() == prof_id) {
Log.i("lambdaOnLongClick", "i == " + i + " | docitem.getProfileID() == " + docitem.getID() + " | prof_id == " + prof_id);
itemIterator.remove();
docAd.notifyItemRemoved(i);
}
i++;
}
};
int i = 0;
do {
docs.add(new DoctorItem(
cur.getString(cur.getColumnIndex(VisitDB.VisitDBHelper.COLUMN_PROFILE_NAME)),
cur.getInt(cur.getColumnIndex(VisitDB.VisitDBHelper.COLUMN_PROFILE_ID)),
lambdaOnClick,
lambdaOnLongClick
));
i++;
} while (cur.moveToNext());
} else {
docs.add(new DoctorItem("Empty list 2", -1,
j -> {Log.i("MainActivity", "Empty list of doctors: onClick");},
j -> {Log.i("MainActivity", "Empty list of doctors: onLongClick");}));
}
doctors = docs;
final int numOfProfiles = cur.getCount();
runOnUiThread(new Runnable() {
@Override
public void run() {
showToast("numOfProfiles: " + Integer.toString(numOfProfiles));
docAd.setDoctors(docs);
docAd.notifyDataSetChanged();
}
});
}
public void onProfileChosen(int profile_id) {
Log.i("onProfileChosen", "doctors.size() = " + doctors.size());
Cursor cur = vdb.getAllDocnamesAndDatesByProfileID(profile_id);
if (docDates == null) {
docDates = new ArrayList<DoctorItem>();
} else {
docDates.clear();
}
if (cur.moveToFirst()) {
final IntConsumer lambdaOnClick = j -> {Log.i("DoctorList", "date #" + j + " clicked"); onDateChosen(j);};
final IntConsumer lambdaOnLongClick = rec_id -> {
Log.i("DoctorList", "date #" + rec_id + " longClicked");
vdb.deleteByRecordID(rec_id);
Iterator<DoctorItem> itemIterator = docDates.iterator();
int i = 0;
while (itemIterator.hasNext()) {
DoctorItem doctorItem = itemIterator.next();
if (doctorItem.getID() == rec_id) {
itemIterator.remove();
docAd.notifyItemRemoved(i);
}
i++;
}
};
do {
docDates.add(new DoctorItem(
cur.getString(cur.getColumnIndex(VisitDB.VisitDBHelper.COLUMN_DOCNAME)),
cur.getInt(cur.getColumnIndex(VisitDB.VisitDBHelper.COLUMN_ID)),
lambdaOnClick,
lambdaOnLongClick));
} while(cur.moveToNext());
} else {
docDates.add(new DoctorItem("Empty list 3", -1,
j -> {Log.i("DoctorList", "Empty");},
j -> {Log.i("DoctorList", "Empty onLongClick");}));
}
menuLvl++;
docAd.setDoctors(docDates);
docAd.notifyDataSetChanged();
}
public void onDateChosen(int id) {
Log.i("onDateChosen", "" + id);
s_uri_datatype = vdb.getDataTypeByID(id);
s_uri_to_open = "content://com.example.medlib.MyContentProvider/" + id;
Log.i("onDateChosen", s_uri_datatype);
// if (s_uri_datatype.equals("application/pdf")) {
// Intent intent = new Intent(MainActivity.this, PdfViewer.class);
// intent.putExtra("uri", s_uri_to_open);
// startActivity(intent);
// } else {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(s_uri_to_open), s_uri_datatype);
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivityForResult(intent, MyIntentResults.OPEN_CONTENT_URL.ordinal());
// }
}
public void showFABs() {
if (!FABsShown) {
btn_list.forEach(j -> {j.show(); j.animate().alpha(1.0f);});
FABsShown = true;
ImageView iv = new ImageView(this);
findViewById(R.id.activity_main_constraint_layout).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (FABsShown) hideFABs();
}
});
}
}
public void hideFABs() {
if (FABsShown) {
ListIterator<ExtendedFloatingActionButton> it = btn_list.listIterator(btn_list.size());
Consumer<ExtendedFloatingActionButton> consumer = j -> {j.animate().alpha(0.0f); j.hide();};
while (it.hasPrevious()) {
consumer.accept(it.previous());
}
FABsShown = false;
}
}
} | [
"dronte2008@yandex.ru"
] | dronte2008@yandex.ru |
f4bfdd25a29f5ddb3345177e2343feb0410d7b2b | 3cf870ec335aa1b95e8776ea9b2a9d6495377628 | /admin-sponge/build/tmp/recompileMc/sources/net/minecraft/world/gen/feature/WorldGenBirchTree.java | 8e1e00cc6f7cf799ebba074a7c3d6ac8354fef06 | [] | no_license | yk133/MyMc | d6498607e7f1f932813178e7d0911ffce6e64c83 | e1ae6d97415583b1271ee57ac96083c1350ac048 | refs/heads/master | 2020-04-03T16:23:09.774937 | 2018-11-05T12:17:39 | 2018-11-05T12:17:39 | 155,402,500 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,381 | java | package net.minecraft.world.gen.feature;
import java.util.Random;
import net.minecraft.block.Block;
import net.minecraft.block.BlockOldLeaf;
import net.minecraft.block.BlockOldLog;
import net.minecraft.block.BlockPlanks;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.init.Blocks;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
public class WorldGenBirchTree extends WorldGenAbstractTree
{
private static final IBlockState LOG = Blocks.field_150364_r.getDefaultState().func_177226_a(BlockOldLog.field_176301_b, BlockPlanks.EnumType.BIRCH);
private static final IBlockState LEAF = Blocks.field_150362_t.getDefaultState().func_177226_a(BlockOldLeaf.field_176239_P, BlockPlanks.EnumType.BIRCH).func_177226_a(BlockOldLeaf.field_176236_b, Boolean.valueOf(false));
private final boolean useExtraRandomHeight;
public WorldGenBirchTree(boolean notify, boolean useExtraRandomHeightIn)
{
super(notify);
this.useExtraRandomHeight = useExtraRandomHeightIn;
}
public boolean func_180709_b(World p_180709_1_, Random p_180709_2_, BlockPos p_180709_3_)
{
int i = p_180709_2_.nextInt(3) + 5;
if (this.useExtraRandomHeight)
{
i += p_180709_2_.nextInt(7);
}
boolean flag = true;
if (p_180709_3_.getY() >= 1 && p_180709_3_.getY() + i + 1 <= 256)
{
for (int j = p_180709_3_.getY(); j <= p_180709_3_.getY() + 1 + i; ++j)
{
int k = 1;
if (j == p_180709_3_.getY())
{
k = 0;
}
if (j >= p_180709_3_.getY() + 1 + i - 2)
{
k = 2;
}
BlockPos.MutableBlockPos blockpos$mutableblockpos = new BlockPos.MutableBlockPos();
for (int l = p_180709_3_.getX() - k; l <= p_180709_3_.getX() + k && flag; ++l)
{
for (int i1 = p_180709_3_.getZ() - k; i1 <= p_180709_3_.getZ() + k && flag; ++i1)
{
if (j >= 0 && j < p_180709_1_.getHeight())
{
if (!this.isReplaceable(p_180709_1_, blockpos$mutableblockpos.setPos(l, j, i1)))
{
flag = false;
}
}
else
{
flag = false;
}
}
}
}
if (!flag)
{
return false;
}
else
{
BlockPos down = p_180709_3_.down();
IBlockState state = p_180709_1_.getBlockState(down);
boolean isSoil = state.getBlock().canSustainPlant(state, p_180709_1_, down, net.minecraft.util.EnumFacing.UP, (net.minecraft.block.BlockSapling)Blocks.field_150345_g);
if (isSoil && p_180709_3_.getY() < p_180709_1_.getHeight() - i - 1)
{
state.getBlock().onPlantGrow(state, p_180709_1_, down, p_180709_3_);
for (int i2 = p_180709_3_.getY() - 3 + i; i2 <= p_180709_3_.getY() + i; ++i2)
{
int k2 = i2 - (p_180709_3_.getY() + i);
int l2 = 1 - k2 / 2;
for (int i3 = p_180709_3_.getX() - l2; i3 <= p_180709_3_.getX() + l2; ++i3)
{
int j1 = i3 - p_180709_3_.getX();
for (int k1 = p_180709_3_.getZ() - l2; k1 <= p_180709_3_.getZ() + l2; ++k1)
{
int l1 = k1 - p_180709_3_.getZ();
if (Math.abs(j1) != l2 || Math.abs(l1) != l2 || p_180709_2_.nextInt(2) != 0 && k2 != 0)
{
BlockPos blockpos = new BlockPos(i3, i2, k1);
IBlockState state2 = p_180709_1_.getBlockState(blockpos);
if (state2.getBlock().isAir(state2, p_180709_1_, blockpos) || state2.getBlock().isAir(state2, p_180709_1_, blockpos))
{
this.func_175903_a(p_180709_1_, blockpos, LEAF);
}
}
}
}
}
for (int j2 = 0; j2 < i; ++j2)
{
BlockPos upN = p_180709_3_.up(j2);
IBlockState state2 = p_180709_1_.getBlockState(upN);
if (state2.getBlock().isAir(state2, p_180709_1_, upN) || state2.getBlock().isLeaves(state2, p_180709_1_, upN))
{
this.func_175903_a(p_180709_1_, p_180709_3_.up(j2), LOG);
}
}
return true;
}
else
{
return false;
}
}
}
else
{
return false;
}
}
} | [
"1060682109@qq.com"
] | 1060682109@qq.com |
eebb8899479ce2a90eb0aaeec3154513b8985212 | 3b9978ff23dc6987e43648ed8a904b0aec229e0e | /src/main/java/com/adu/leet_code/problems/algorithms/n0001/N0039.java | 7eee6beaba21343ccdda5c0e557f2f558d4afcad | [] | no_license | waterystone/leet-code-test | 66f9763a75ea797bfc2cc6a58c3faa9e73796e08 | ae9b0595e775a197ebefee5d958cf618f3a45fdc | refs/heads/master | 2021-01-20T00:56:24.867974 | 2017-08-15T07:50:28 | 2017-08-15T07:50:28 | 89,213,462 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,994 | java | package com.adu.leet_code.problems.algorithms.n0001;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
* Given a set of candidate numbers (C) (without duplicates) and a target number (T), find all unique combinations in C
* where the candidate numbers sums to T.
*
* The same repeated number may be chosen from C unlimited number of times.
*
* Note: All numbers (including target) will be positive integers. The solution set must not contain duplicate
* combinations.
*
* <pre>
For example, given candidate set [2, 3, 6, 7] and target 7,
A solution set is:
[
[7],
[2, 2, 3]
]
* </pre>
*
* @author yunjie.du
* @date 2017/8/1 15:38
*/
public class N0039 {
/**
* ๅ
ๆๅบ๏ผๅ้ๅฝ่ฟ่กๆฑ่งฃใ
*
* @param candidates
* @param target
* @return
*/
public List<List<Integer>> combinationSum(int[] candidates, int target) {
List<List<Integer>> res = new ArrayList<>();
Arrays.sort(candidates);// ๆๅบ
combinationSum(candidates, 0, target, new ArrayList<>(), res);
return res;
}
/**
* ้ๅฝๆฑ่งฃ
*
* @param candidates
* @param i ๅฝๅไธๆ
* @param target ๅฝๅ็ฎๆ ๅผ
* @param list ๅฝๅlistไธญ็ๅ
็ด
* @param res ็ปๆ้
*/
private void combinationSum(int[] candidates, int i, int target, List<Integer> list, List<List<Integer>> res) {
if (target == 0 && !list.isEmpty()) {// ๅฆๆๅฝๅtargetๅทฒไธบ้ถ
res.add(list);
return;
}
if (i == candidates.length || candidates[i] > target) {// i่ถ็๏ผๆ่
ๅฝๅๅ
็ด ๅทฒๅคงไบtargetๅผ๏ผ็ดๆฅ่ฟๅใ
return;
}
int iSum = 0;
while (iSum <= target) {// ไธๆญ้ๅคๅฝๅๅ
็ด ๆฐ
combinationSum(candidates, i + 1, target - iSum, new ArrayList<>(list), res);
list.add(candidates[i]);
iSum += candidates[i];
}
}
}
| [
"yunjie.du@qunar.com"
] | yunjie.du@qunar.com |
c093fd0411c1aa61e8936b52097b4eb6fab0c62d | 90b4622c0c1e27368e64674778b6ddfced2359af | /JavaPracticeProgramsForInterview/src/DecimalToBinary.java | 9033e4ecd36f474dcd478e0ede2596ea27519a20 | [] | no_license | sakkumaayi/Training | 7f2b40a1f7607ed322096ad9683bf1a064501b26 | 58f1d132eb13bbcb4d7e76eed899d61baf3f3829 | refs/heads/master | 2020-04-08T03:49:01.469446 | 2018-11-29T23:55:37 | 2018-11-29T23:55:37 | 158,991,104 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 890 | java |
public class DecimalToBinary {
public static void main(String[] args) {
// TODO Auto-generated method stub
int n=15;int r=0;
String str="";
while(n>0) {
r=n%2;
str=str+r;
n=n/2;
}
System.out.println(str);
decimalToBinary(50);
}
static void decimalToBinary(int n) {
/*String s="";
int r=0;
while(n>0) {
r=n%2;
n=n/2;
System.out.println(r);
s=s+r;
System.out.println("================================");
System.out.println(s);*/
//this prints binary number in the reverse order use array to print in the correct order
//==========================================================================================
int[] binary=new int[n];
int index=0,i=0;
while(n>0) {
binary[index++]=n%2;
n=n/2;
//System.out.println(index+": "+binary[index-1]);
}
for(i=index-1;i>=0;i--) {
System.out.print(binary[i]);
}
}
}
| [
"44944540+sakkumaayi@users.noreply.github.com"
] | 44944540+sakkumaayi@users.noreply.github.com |
c17cbefdddeaaf504dd442fa5ed68748f088b428 | 3497b680cfc8b1a325ba2c4abe5f1470494915d8 | /ps2-tweets/test/twitter/FilterTest.java | b334984ea0c4d6faf445aa0ad108c92ec4c23f15 | [] | no_license | killynathan/MIT6.005softwareContruction | bef1d7b29572c715189573f0e7bfe1fbb90a4080 | dd8e915bd1caedb989367e0308efdb5f4b8c528f | refs/heads/master | 2021-08-19T08:20:12.155317 | 2017-11-25T12:46:42 | 2017-11-25T12:46:42 | 109,825,797 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,852 | java | package twitter;
import static org.junit.Assert.*;
import java.time.Instant;
import java.util.Arrays;
import java.util.List;
import org.junit.Test;
public class FilterTest {
private static final Instant d1 = Instant.parse("2016-02-17T10:00:00Z");
private static final Instant d2 = Instant.parse("2016-02-17T11:00:00Z");
private static final Instant d3 = Instant.parse("2016-02-17T15:00:00Z");
private static final Instant d4 = Instant.parse("2016-02-17T16:00:00Z");
private static final Tweet tweet1 = new Tweet(1, "alyssa", "is it reasonable to talk about rivest so much?", d1);
private static final Tweet tweet2 = new Tweet(2, "bbitdiddle", "rivest talk in 30 minutes #hype", d2);
private static final Tweet tweet3 = new Tweet(3, "nate", "i dont like money nathan", d3);
private static final Tweet tweet4 = new Tweet(4, "nate", "please work kou", d4);
private static final Tweet tweet5 = new Tweet(5, "nate", "please work kouno", d4);
private static final Tweet tweet6 = new Tweet(6, "NATE", "please work kouno", d4);
@Test(expected=AssertionError.class)
public void testAssertionsEnabled() {
assert false; // make sure assertions are enabled with VM argument: -ea
}
/*
* partition
* no tweets
* multiple tweets
*
* no tweets by author
* some tweets by author
* all tweets by author
*
* must be case insensitive
*/
@Test
public void testWrittenByNoTweets() {
List<Tweet> writtenBy = Filter.writtenBy(Arrays.asList(), "omi");
assertEquals(0, writtenBy.size());
}
@Test
public void testWrittenByMultipleTweetsNoResults() {
List<Tweet> writtenBy = Filter.writtenBy(Arrays.asList(tweet1, tweet2, tweet3), "omi");
assertEquals(0, writtenBy.size());
}
@Test
public void testWrittenByMultipleTweetsSingleResult() {
List<Tweet> writtenBy = Filter.writtenBy(Arrays.asList(tweet1, tweet2), "alyssa");
assertEquals("expected singleton list", 1, writtenBy.size());
assertTrue("expected list to contain tweet", writtenBy.contains(tweet1));
}
@Test
public void testWrittenByMultipleTweetsMultipleResults() {
List<Tweet> writtenBy = Filter.writtenBy(Arrays.asList(tweet1, tweet2, tweet3, tweet4), "nate");
assertEquals(2, writtenBy.size());
assertEquals(tweet3, writtenBy.get(0));
assertEquals(tweet4, writtenBy.get(1));
}
@Test
public void testWrittenByMultipleTweetsAllResultsInOrder() {
List<Tweet> writtenBy = Filter.writtenBy(Arrays.asList(tweet3, tweet4), "nate");
assertEquals(2, writtenBy.size());
assertEquals(tweet3, writtenBy.get(0));
assertEquals(tweet4, writtenBy.get(1));
}
@Test
public void testWrittenByCaseInsensitive() {
List<Tweet> writtenBy = Filter.writtenBy(Arrays.asList(tweet6), "nate");
assertTrue(writtenBy.size() == 1);
}
/*
* partitions:
* no tweets
* multiple tweets
*
* no tweets in timespan
* some tweets in timespan
* all tweets in timespan
*
* timespan start = end
*/
@Test
public void testInTimespanNoTweets() {
Instant testStart = Instant.parse("2016-02-17T09:00:00Z");
Instant testEnd = Instant.parse("2016-02-17T12:00:00Z");
List<Tweet> inTimespan = Filter.inTimespan(Arrays.asList(), new Timespan(testStart, testEnd));
assertEquals(inTimespan.size(), 0);
}
@Test
public void testInTimespanMultipleTweetsNoResults() {
Instant testStart = Instant.parse("2017-02-17T09:00:00Z");
Instant testEnd = Instant.parse("2017-02-17T12:00:00Z");
List<Tweet> inTimespan = Filter.inTimespan(Arrays.asList(tweet1, tweet2, tweet3, tweet4), new Timespan(testStart, testEnd));
assertEquals(inTimespan.size(), 0);
}
@Test
public void testInTimespanMultipleTweetsMultipleResults() {
Instant testStart = Instant.parse("2016-02-17T09:00:00Z");
Instant testEnd = Instant.parse("2016-02-17T12:00:00Z");
List<Tweet> inTimespan = Filter.inTimespan(Arrays.asList(tweet1, tweet2), new Timespan(testStart, testEnd));
assertFalse("expected non-empty list", inTimespan.isEmpty());
assertTrue("expected list to contain tweets", inTimespan.containsAll(Arrays.asList(tweet1, tweet2)));
assertEquals("expected same order", 0, inTimespan.indexOf(tweet1));
}
@Test
public void testInTimespanMultipleTweetsAllResults() {
Instant testStart = Instant.parse("2016-02-17T05:00:00Z");
Instant testEnd = Instant.parse("2016-02-17T20:00:00Z");
List<Tweet> inTimespan = Filter.inTimespan(Arrays.asList(tweet1, tweet2, tweet3, tweet4), new Timespan(testStart, testEnd));
assertEquals(4, inTimespan.size());
assertEquals(tweet1, inTimespan.get(0));
assertEquals(tweet2, inTimespan.get(1));
assertEquals(tweet3, inTimespan.get(2));
assertEquals(tweet4, inTimespan.get(3));
}
@Test
public void testInTimespanZeroedTimespan() {
Instant testStart = Instant.parse("2016-02-17T10:00:00Z");
Instant testEnd = Instant.parse("2016-02-17T10:00:00Z");
List<Tweet> inTimespan = Filter.inTimespan(Arrays.asList(tweet1, tweet2, tweet3, tweet4), new Timespan(testStart, testEnd));
assertEquals(1, inTimespan.size());
assertEquals(tweet1, inTimespan.get(0));
}
/*
* tests for containing
* partitions:
* no tweets
* no words
*
* multiple tweets
* multiple words
*
* no matches
* some matches
* all matches
*
* found word but is a substring
* one tweet has multiple matches
*/
private boolean testContainingHelper(List<Tweet> tweets, List<String> words, List<Tweet> matchingTweets) {
List<Tweet> containing = Filter.containing(tweets, words);
return containing.equals(matchingTweets);
}
@Test
public void testContainingNoTweets() {
assertTrue(testContainingHelper(Arrays.asList(), Arrays.asList("talk"), Arrays.asList()));
}
@Test
public void testContainingNoWords() {
assertTrue(testContainingHelper(Arrays.asList(tweet1, tweet2, tweet3), Arrays.asList(), Arrays.asList()));
}
@Test
public void testContainingMultipleTweetsNoResults() {
assertTrue(testContainingHelper(Arrays.asList(tweet1, tweet2, tweet3, tweet4), Arrays.asList("monster"), Arrays.asList()));
}
@Test
public void testContainingMultipleTweetsSomeResults() {
assertTrue(testContainingHelper(Arrays.asList(tweet1, tweet2, tweet3, tweet4),
Arrays.asList("nathan", "kou"), Arrays.asList(tweet3, tweet4)));
}
@Test
public void testContaining() {
List<Tweet> containing = Filter.containing(Arrays.asList(tweet1, tweet2), Arrays.asList("talk"));
assertFalse("expected non-empty list", containing.isEmpty());
assertTrue("expected list to contain tweets", containing.containsAll(Arrays.asList(tweet1, tweet2)));
assertEquals("expected same order", 0, containing.indexOf(tweet1));
}
@Test
public void testContainingWordInSubstring() {
assertTrue(testContainingHelper(Arrays.asList(tweet5), Arrays.asList("kou"), Arrays.asList()));
}
@Test
public void testContainingOneTweetMultipleMatches() {
assertTrue(testContainingHelper(Arrays.asList(tweet5), Arrays.asList("please", "work"), Arrays.asList(tweet5)));
}
/*
* Warning: all the tests you write here must be runnable against any Filter
* class that follows the spec. It will be run against several staff
* implementations of Filter, which will be done by overwriting
* (temporarily) your version of Filter with the staff's version.
* DO NOT strengthen the spec of Filter or its methods.
*
* In particular, your test cases must not call helper methods of your own
* that you have put in Filter, because that means you're testing a stronger
* spec than Filter says. If you need such helper methods, define them in a
* different class. If you only need them in this test class, then keep them
* in this test class.
*/
/* Copyright (c) 2016 MIT 6.005 course staff, all rights reserved.
* Redistribution of original or derived work requires explicit permission.
* Don't post any of this code on the web or to a public Github repository.
*/
}
| [
"nathankou12@gmail.com"
] | nathankou12@gmail.com |
ff0e92caf6cb145d7327641ec3a791ca27d327ad | 99b2df15f010b130f9277e4aac47a40c42be83fb | /JavaPracticles/13_Arrays/src/com/k2js/arrays/practice/ArrayPr11.java | 33c1052ce76c70c6b7f49c4582cad382c5c8d07a | [] | no_license | dirsavancha/K2jsByJitFullyClasses | 5ec54ca17f561b4649e2809a1abce2c800c5b304 | ac3835edf613cebb07cc43c0054cc334e594f59f | refs/heads/master | 2021-06-27T16:29:43.631225 | 2019-11-20T06:12:13 | 2019-11-20T06:12:13 | 222,861,379 | 0 | 0 | null | 2021-04-26T19:42:46 | 2019-11-20T05:52:58 | Java | UTF-8 | Java | false | false | 89 | java | // Find the total sum of the values
package com.k2js.arrays.practice;
class ArrayProg11 | [
"ramki.me2012@gmail.com"
] | ramki.me2012@gmail.com |
843dd516044c16147f752e4f0ee1986f3b679110 | f5e408c0240b3f5eb7ad8d0eb938894f8802baf8 | /node_modules/react-native-i18n/android/build/generated/source/buildConfig/debug/com/AlexanderZaytsev/RNI18n/BuildConfig.java | f2cf23667efcdf4e73e3e403e5d9aafb6e80648e | [
"MIT"
] | permissive | Qyamtec/Vision | 346ceb1fbf7b91e27983c7d3046c981a1ccac30b | f2f8ab6fff4edc2830552b5deb2f5336c2c6d21b | refs/heads/master | 2022-12-16T10:38:40.175593 | 2020-09-14T10:57:33 | 2020-09-14T10:57:33 | 289,469,554 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 682 | java | /**
* Automatically generated file. DO NOT MODIFY
*/
package com.AlexanderZaytsev.RNI18n;
public final class BuildConfig {
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final String LIBRARY_PACKAGE_NAME = "com.AlexanderZaytsev.RNI18n";
/**
* @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME
*/
@Deprecated
public static final String APPLICATION_ID = "com.AlexanderZaytsev.RNI18n";
public static final String BUILD_TYPE = "debug";
public static final String FLAVOR = "";
public static final int VERSION_CODE = -1;
public static final String VERSION_NAME = "";
}
| [
"halim-b@outlook.com"
] | halim-b@outlook.com |
557ebd736cc2b45418894844094a38067187f19f | 961e2409466619122edc32602d324bc0b0526b6d | /examples/src/main/java/org/apache/ignite/examples/ml/math/decompositions/CholeskyDecompositionExample.java | ebac2b18e26b03b0abc8ba66817f9db1cbcaeac9 | [
"LGPL-2.0-or-later",
"Apache-2.0",
"BSD-3-Clause",
"LicenseRef-scancode-gutenberg-2020",
"CC0-1.0"
] | permissive | bloomberg/ignite | f85a89ab175f609eec1e3bbbc800249621d994c0 | 2b5f78f2099005d5e18c4b3ad6a35c8fec56b30a | refs/heads/master | 2023-07-23T09:13:41.577943 | 2018-04-28T16:27:27 | 2018-04-28T16:27:59 | 131,645,252 | 2 | 1 | Apache-2.0 | 2023-07-11T06:05:18 | 2018-04-30T20:50:27 | Java | UTF-8 | Java | false | false | 3,413 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.examples.ml.math.decompositions;
import org.apache.ignite.ml.math.Matrix;
import org.apache.ignite.ml.math.Tracer;
import org.apache.ignite.ml.math.decompositions.CholeskyDecomposition;
import org.apache.ignite.ml.math.impls.matrix.DenseLocalOnHeapMatrix;
/**
* Example of using {@link CholeskyDecomposition}.
*/
public class CholeskyDecompositionExample {
/**
* Executes example.
*
* @param args Command line arguments, none required.
*/
public static void main(String[] args) {
System.out.println(">>> Cholesky decomposition example started.");
// Let's compute a Cholesky decomposition of Hermitian matrix m:
// m = l l^{*}, where
// l is a lower triangular matrix
// l^{*} is its conjugate transpose
DenseLocalOnHeapMatrix m = new DenseLocalOnHeapMatrix(new double[][] {
{2.0d, -1.0d, 0.0d},
{-1.0d, 2.0d, -1.0d},
{0.0d, -1.0d, 2.0d}
});
System.out.println("\n>>> Matrix m for decomposition: ");
Tracer.showAscii(m);
// This decomposition is useful when dealing with systems of linear equations of the form
// m x = b where m is a Hermitian matrix.
// For such systems Cholesky decomposition provides
// more effective method of solving compared to LU decomposition.
// Suppose we want to solve system
// m x = b for various bs. Then after we computed Cholesky decomposition, we can feed various bs
// as a matrix of the form
// (b1, b2, ..., bm)
// to the method Cholesky::solve which returns solutions in the form
// (sol1, sol2, ..., solm)
CholeskyDecomposition dec = new CholeskyDecomposition(m);
System.out.println("\n>>> Made decomposition m = l * l^{*}.");
System.out.println(">>> Matrix l is ");
Tracer.showAscii(dec.getL());
System.out.println(">>> Matrix l^{*} is ");
Tracer.showAscii(dec.getLT());
Matrix bs = new DenseLocalOnHeapMatrix(new double[][] {
{4.0, -6.0, 7.0},
{1.0, 1.0, 1.0}
}).transpose();
System.out.println("\n>>> Solving systems of linear equations of the form m x = b for various bs represented by columns of matrix");
Tracer.showAscii(bs);
Matrix sol = dec.solve(bs);
System.out.println("\n>>> List of solutions: ");
for (int i = 0; i < sol.columnSize(); i++)
Tracer.showAscii(sol.viewColumn(i));
System.out.println("\n>>> Cholesky decomposition example completed.");
}
}
| [
"av@apache.org"
] | av@apache.org |
8d8399dbb9464a9b82627cdb8120940e5593244d | f65c667054779ec9e3427068264b3e5ae443b05f | /scribejava-apis/src/test/java/com/github/scribejava/apis/examples/FacebookAsyncExample.java | 5f08559bec2e3cf033e74a23c92f62a4fc604d64 | [
"MIT"
] | permissive | androidzhaoxiaogang/scribejava | 0a8cadcb03ac760086818be42626cd321d5acbba | f9aa6a8ac9e87d02cc2c927cf44864e897319e75 | refs/heads/master | 2021-01-24T01:52:44.476441 | 2016-01-20T18:18:27 | 2016-01-20T18:18:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,537 | java | package com.github.scribejava.apis.examples;
import com.ning.http.client.AsyncHttpClientConfig;
import java.util.Random;
import java.util.Scanner;
import java.util.concurrent.ExecutionException;
import com.github.scribejava.apis.FacebookApi;
import com.github.scribejava.core.builder.ServiceBuilderAsync;
import com.github.scribejava.core.model.ForceTypeOfHttpRequest;
import com.github.scribejava.core.model.OAuthRequestAsync;
import com.github.scribejava.core.model.Response;
import com.github.scribejava.core.model.ScribeJavaConfig;
import com.github.scribejava.core.model.Token;
import com.github.scribejava.core.model.Verb;
import com.github.scribejava.core.model.Verifier;
import com.github.scribejava.core.oauth.OAuthService;
public abstract class FacebookAsyncExample {
private static final String NETWORK_NAME = "Facebook";
private static final String PROTECTED_RESOURCE_URL = "https://graph.facebook.com/v2.2/me";
private static final Token EMPTY_TOKEN = null;
public static void main(final String... args) throws InterruptedException, ExecutionException {
// Replace these with your client id and secret
final String clientId = "your client id";
final String clientSecret = "your client secret";
final String secretState = "secret" + new Random().nextInt(999_999);
ScribeJavaConfig.setForceTypeOfHttpRequests(ForceTypeOfHttpRequest.FORCE_ASYNC_ONLY_HTTP_REQUESTS);
final AsyncHttpClientConfig clientConfig = new AsyncHttpClientConfig.Builder()
.setMaxConnections(5)
.setRequestTimeout(10_000)
.setAllowPoolingConnections(false)
.setPooledConnectionIdleTimeout(1_000)
.setReadTimeout(1_000)
.build();
final OAuthService service = new ServiceBuilderAsync()
.apiKey(clientId)
.apiSecret(clientSecret)
.state(secretState)
.callback("http://www.example.com/oauth_callback/")
.asyncHttpClientConfig(clientConfig)
.build(FacebookApi.instance());
final Scanner in = new Scanner(System.in, "UTF-8");
System.out.println("=== " + NETWORK_NAME + "'s Async OAuth Workflow ===");
System.out.println();
// Obtain the Authorization URL
System.out.println("Fetching the Authorization URL...");
final String authorizationUrl = service.getAuthorizationUrl(EMPTY_TOKEN);
System.out.println("Got the Authorization URL!");
System.out.println("Now go and authorize ScribeJava here:");
System.out.println(authorizationUrl);
System.out.println("And paste the authorization code here");
System.out.print(">>");
final Verifier verifier = new Verifier(in.nextLine());
System.out.println();
System.out.println("And paste the state from server here. We have set 'secretState'='" + secretState + "'.");
System.out.print(">>");
final String value = in.nextLine();
if (secretState.equals(value)) {
System.out.println("State value does match!");
} else {
System.out.println("Ooops, state value does not match!");
System.out.println("Expected = " + secretState);
System.out.println("Got = " + value);
System.out.println();
}
// Trade the Request Token and Verfier for the Access Token
System.out.println("Trading the Request Token for an Access Token...");
final Token accessToken = service.getAccessTokenAsync(EMPTY_TOKEN, verifier, null).get();
System.out.println("Got the Access Token!");
System.out.println("(if your curious it looks like this: " + accessToken + " )");
System.out.println();
// Now let's go and ask for a protected resource!
System.out.println("Now we're going to access a protected resource...");
final OAuthRequestAsync request = new OAuthRequestAsync(Verb.GET, PROTECTED_RESOURCE_URL, service);
service.signRequest(accessToken, request);
final Response response = request.sendAsync(null).get();
System.out.println("Got it! Lets see what we found...");
System.out.println();
System.out.println(response.getCode());
System.out.println(response.getBody());
System.out.println();
System.out.println("Thats it man! Go and build something awesome with ScribeJava! :)");
service.closeAsyncClient();
}
}
| [
"s.gromov@hh.ru"
] | s.gromov@hh.ru |
006f92d509780001eeee543a8e759a50f53095f4 | d32138b94a0625c8824c18efbf04df58ceedac8d | /multiprocess/message_server/src/main/java/ru/otus/slisenko/message_server/channel/SocketMsgWorker.java | 0e9027b9286f307f38703abf2fe50b4a540508bf | [] | no_license | l1sss/otus-java-2017-11-Dmitriy | ca96bf95fec55ab90bf8d0ba95a0cb06594acb5f | 9e35a58692cc93d0c9d3074c4eb75c1f1bc63329 | refs/heads/master | 2021-09-13T21:21:40.766009 | 2018-05-04T09:46:19 | 2018-05-04T09:46:19 | 111,329,751 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,301 | java | package ru.otus.slisenko.message_server.channel;
import com.google.gson.Gson;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
import ru.otus.slisenko.message_server.app.Blocks;
import ru.otus.slisenko.message_server.app.MsgWorker;
import ru.otus.slisenko.message_server.msgsystem.Message;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.logging.Level;
import java.util.logging.Logger;
public class SocketMsgWorker implements MsgWorker {
private static final Logger logger = Logger.getLogger(SocketMsgWorker.class.getName());
private static final int WORKERS_COUNT = 2;
private final BlockingQueue<Message> output = new LinkedBlockingQueue<>();
private final BlockingQueue<Message> input = new LinkedBlockingQueue<>();
private final ExecutorService executor;
private final Socket socket;
private final List<Runnable> shutdownRegistrations;
public SocketMsgWorker(Socket socket) {
this.socket = socket;
shutdownRegistrations = new ArrayList<>();
executor = Executors.newFixedThreadPool(WORKERS_COUNT);
}
@Override
public void send(Message message) {
output.add(message);
}
@Override
public Message pool() {
return input.poll();
}
@Override
@Blocks
public Message take() throws InterruptedException {
return input.take();
}
@Override
public void close() {
shutdownRegistrations.forEach(Runnable::run);
shutdownRegistrations.clear();
executor.shutdown();
logger.info("Client socket is closed");
}
public void init() {
executor.execute(this::sendMessage);
executor.execute(this::receiveMessage);
}
public void addShutdownRegistration(Runnable runnable) {
this.shutdownRegistrations.add(runnable);
}
@Blocks
private void sendMessage() {
try (PrintWriter out = new PrintWriter(socket.getOutputStream(), true)) {
while (socket.isConnected()) {
Message msg = output.take(); //blocks
String json = new Gson().toJson(msg);
out.println(json);
out.println(); //end of the message
}
} catch (IOException | InterruptedException e) {
logger.log(Level.SEVERE, e.getMessage());
}
}
@Blocks
private void receiveMessage() {
try (BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()))) {
String inputLine;
StringBuilder stringBuilder = new StringBuilder();
while ((inputLine = in.readLine()) != null) { //blocks
stringBuilder.append(inputLine);
if (inputLine.isEmpty()) { //empty line is the end of the message
String json = stringBuilder.toString();
if (json.isEmpty())
continue;
Message msg = getMsgFromJSON(json);
if (msg != null)
input.add(msg);
stringBuilder = new StringBuilder();
}
}
} catch (IOException | ClassNotFoundException e) {
logger.log(Level.SEVERE, e.getMessage());
} finally {
close();
}
}
private static Message getMsgFromJSON(String json) throws ClassNotFoundException {
try {
JSONParser jsonParser = new JSONParser();
JSONObject jsonObject = (JSONObject) jsonParser.parse(json);
String className = (String) jsonObject.get(Message.CLASS_NAME_VARIABLE);
Class<?> msgClass = Class.forName(className);
return (Message) new Gson().fromJson(json, msgClass);
} catch (ParseException e) {
logger.log(Level.SEVERE, "Parsing error: " + e.getMessage());
return null;
}
}
}
| [
"dm.slisenko@gmail.com"
] | dm.slisenko@gmail.com |
71579461d546b879b92130adec1c2eb349e931d2 | 6090fa4569fc59c222f1ae4ce9ed7c633cf7f8a1 | /Singleton/SingletonTest07/SingletonTest07.java | c6f5b942ab7d724516f34f809e6fc458ab83b3a2 | [] | no_license | LVvVQ/DesignPatterns | 4eeae25f57115052e1da1f2295d7ec428f4ea357 | c90b90c4f1643f5b392999be74e3a6d438842ad0 | refs/heads/master | 2023-02-17T02:29:19.937033 | 2021-01-15T05:37:07 | 2021-01-15T05:37:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 941 | java | package com.coco.Singleton.SingletonTest07;
/**
* ๅไพๆจกๅผ:ๆๆฑๅผ(้ๆๅ
้จ็ฑป,็บฟ็จๅฎๅ
จ,ไธ้ไฝๆ็)
*
* @author #L
* @date 2020/12/13
*/
public class SingletonTest07 {
public static void main(String[] args) {
Singleton singleton1 = Singleton.getSingleton();
Singleton singleton2 = Singleton.getSingleton();
System.out.println(singleton1.equals(singleton2));
System.out.println(singleton1.hashCode());
System.out.println(singleton2.hashCode());
}
}
class Singleton {
private Singleton() {
}
/**
* ๅค้จ็ฑปๅ ่ฝฝๆถไธไผๅ ่ฝฝ้ๆๅ
้จ็ฑป,ๆไปฅๅชๆๅจ่ฐ็จgetSingle()ๆนๆณไฝฟ็จๅฐSingletonInstanceๆถๆไผๅ ่ฝฝ
*/
private static class SingletonInstance {
private final static Singleton SINGLETON = new Singleton();
}
public static Singleton getSingleton() {
return SingletonInstance.SINGLETON;
}
}
| [
"287535753@qq.com"
] | 287535753@qq.com |
357d94c11061fc9d415c79b159a710ccaafe7e46 | 0cb5e2c6bd0c94f080d26cb0be6e62578185e0a7 | /appStartActivity/src/main/java/com/psgod/ui/view/TupppaiWebViewChrome.java | 74821f28af5d1de2424ea06d531bd26ac3fa86cd | [] | no_license | tupppai/tupppai-android | cf3bdd2b9bf363d733dfe8e160a1fe9e8cc1c674 | 46a9d9460966d002daa15facb27df77db10fc9b0 | refs/heads/master | 2021-06-05T07:46:41.696218 | 2016-10-14T08:07:23 | 2016-10-14T08:07:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 771 | java | package com.psgod.ui.view;
import android.content.Context;
import android.webkit.ConsoleMessage;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import com.psgod.Utils;
/**
* Created by Administrator on 2016/1/13 0013.
*/
public class TupppaiWebViewChrome extends WebChromeClient {
private Context mContext;
public TupppaiWebViewChrome(Context context){
super();
mContext = context;
}
@Override
public boolean onConsoleMessage(ConsoleMessage consoleMessage) {
String msg = consoleMessage.message();
if(msg.indexOf("tupppai://") != -1){
Utils.skipByUrl(mContext,msg,"ๅพๆดพ");
return true;
}
return super.onConsoleMessage(consoleMessage);
}
}
| [
"againflan@yahoo.com"
] | againflan@yahoo.com |
a1f5c7522e47e53f5ee17494a1542e6a16481d45 | 767bc75d4e1eb1b93919834f54b8bcb8525ee305 | /springboot-demo/src/main/java/com/xinho/springboot/redis/RedisConfig.java | be8db306b9466387fd38d0cc3c301f193dcfd129 | [] | no_license | liuhaifei/springBoot-parent | 7debec6960c420133fe1222603addc5c3d2b9b55 | 45165e254298f7c80b5717f5724ea689ef53bc2b | refs/heads/master | 2020-04-01T01:04:59.486850 | 2018-10-12T09:22:30 | 2018-10-12T09:22:35 | 152,725,535 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,481 | java | //package com.xinho.springboot.redis;
//
//
//import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.boot.autoconfigure.data.redis.RedisProperties;
//import org.springframework.context.annotation.Bean;
//import org.springframework.context.annotation.Configuration;
//import redis.clients.jedis.HostAndPort;
//import redis.clients.jedis.JedisCluster;
//
//import java.util.HashSet;
//import java.util.List;
//import java.util.Set;
//
///**
// * @author lhf
// * @Title: ${file_name}
// * @Package ${package_name}
// * @Description: ${todo}
// * @date 2018/5/2518:03
// */
//@Configuration
//public class RedisConfig {
//
// @Autowired
// private RedisProperties redisProperties;
//
//
// /**
// * ๆณจๆ๏ผ
// * ่ฟ้่ฟๅ็JedisClusterๆฏๅไพ็๏ผๅนถไธๅฏไปฅ็ดๆฅๆณจๅ
ฅๅฐๅ
ถไป็ฑปไธญๅปไฝฟ็จ
// * @return
// */
// @Bean
// public JedisCluster getJedisCluster() {
// List<String> serverArray = redisProperties.getCluster().getNodes();//่ทๅๆๅกๅจๆฐ็ป(่ฟ้่ฆ็ธไฟก่ชๅทฑ็่พๅ
ฅ๏ผๆไปฅๆฒกๆ่่็ฉบๆ้้ฎ้ข)
// Set<HostAndPort> nodes = new HashSet<>();
//
// for (String ipPort : serverArray) {
// String[] ipPortPair = ipPort.split(":");
// nodes.add(new HostAndPort(ipPortPair[0].trim(), Integer.valueOf(ipPortPair[1].trim())));
// }
//
// return new JedisCluster(nodes, redisProperties.getTimeout().getNano(), 1);
// }
//}
| [
"15901995342@163.com"
] | 15901995342@163.com |
b51e6555774588aa39ce9ed1d722ffc58ab12f90 | b107f0c736bbb5013bcfbff64477d9eabbb0ef73 | /example_demo/src/com/example/demo0713/vo/PerInfo.java | b282942af48365cd4b6908aceea477ebbf115db7 | [] | no_license | Qtrer/java2105 | 36790d152efeb8f9bc7f5c8dfbc2328993d9b0be | 10537538bff8b06e89e5b65d64953725a036dc15 | refs/heads/main | 2023-07-14T18:54:39.948018 | 2021-08-20T13:34:01 | 2021-08-20T13:34:01 | 398,273,399 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,168 | java | package com.example.demo0713.vo;
public class PerInfo {
private Integer id;
private String name;
private Integer age;
private String sex;
public PerInfo() {
}
public PerInfo(Integer id, String name, Integer age, String sex) {
this.id = id;
this.name = name;
this.age = age;
this.sex = sex;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
@Override
public String toString() {
return "perInfo{" +
"id=" + id +
", name='" + name + '\'' +
", age=" + age +
", sex='" + sex + '\'' +
'}';
}
}
| [
"noreply@github.com"
] | noreply@github.com |
5c44d80bfdaba755e5ca8293ba8b0e8c0a891e55 | 34c4cb83e4a14eb18a59349bb18998b9b04d53cc | /hcatalog/server-extensions/src/main/java/org/apache/hive/hcatalog/messaging/json/JSONMessageFactory.java | 2db05c62f0a66df97f3500b63fd3cbe1d71fc70d | [
"Apache-2.0",
"BSD-3-Clause",
"JSON",
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"GPL-1.0-or-later"
] | permissive | bigo-sg/spark-hive1.2.1 | 86d0c6035173f81290db9db052261010ddc7c788 | ec22b1e199e61303d43ff9a56a4e42670825539f | refs/heads/master | 2022-10-12T08:25:30.517408 | 2019-07-29T15:36:24 | 2019-07-29T15:36:24 | 197,581,516 | 0 | 1 | Apache-2.0 | 2022-10-05T00:10:09 | 2019-07-18T12:20:26 | Java | UTF-8 | Java | false | false | 5,771 | java | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.hive.hcatalog.messaging.json;
import com.google.common.base.Function;
import com.google.common.collect.Iterators;
import com.google.common.collect.Lists;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.hive.metastore.api.Database;
import org.apache.hadoop.hive.metastore.api.Partition;
import org.apache.hadoop.hive.metastore.api.Table;
import org.apache.hive.hcatalog.messaging.AddPartitionMessage;
import org.apache.hive.hcatalog.messaging.AlterPartitionMessage;
import org.apache.hive.hcatalog.messaging.AlterTableMessage;
import org.apache.hive.hcatalog.messaging.CreateDatabaseMessage;
import org.apache.hive.hcatalog.messaging.CreateTableMessage;
import org.apache.hive.hcatalog.messaging.DropDatabaseMessage;
import org.apache.hive.hcatalog.messaging.DropPartitionMessage;
import org.apache.hive.hcatalog.messaging.DropTableMessage;
import org.apache.hive.hcatalog.messaging.InsertMessage;
import org.apache.hive.hcatalog.messaging.MessageDeserializer;
import org.apache.hive.hcatalog.messaging.MessageFactory;
import javax.annotation.Nullable;
import java.util.Arrays;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* The JSON implementation of the MessageFactory. Constructs JSON implementations of
* each message-type.
*/
public class JSONMessageFactory extends MessageFactory {
private static final Log LOG = LogFactory.getLog(JSONMessageFactory.class.getName());
private static JSONMessageDeserializer deserializer = new JSONMessageDeserializer();
@Override
public MessageDeserializer getDeserializer() {
return deserializer;
}
@Override
public String getVersion() {
return "0.1";
}
@Override
public String getMessageFormat() {
return "json";
}
@Override
public CreateDatabaseMessage buildCreateDatabaseMessage(Database db) {
return new JSONCreateDatabaseMessage(HCAT_SERVER_URL, HCAT_SERVICE_PRINCIPAL, db.getName(),
now());
}
@Override
public DropDatabaseMessage buildDropDatabaseMessage(Database db) {
return new JSONDropDatabaseMessage(HCAT_SERVER_URL, HCAT_SERVICE_PRINCIPAL, db.getName(),
now());
}
@Override
public CreateTableMessage buildCreateTableMessage(Table table) {
return new JSONCreateTableMessage(HCAT_SERVER_URL, HCAT_SERVICE_PRINCIPAL, table.getDbName(),
table.getTableName(), now());
}
@Override
public AlterTableMessage buildAlterTableMessage(Table before, Table after) {
return new JSONAlterTableMessage(HCAT_SERVER_URL, HCAT_SERVICE_PRINCIPAL, before.getDbName(),
before.getTableName(), now());
}
@Override
public DropTableMessage buildDropTableMessage(Table table) {
return new JSONDropTableMessage(HCAT_SERVER_URL, HCAT_SERVICE_PRINCIPAL, table.getDbName(), table.getTableName(),
now());
}
@Override
public AddPartitionMessage buildAddPartitionMessage(Table table, Iterator<Partition> partitionsIterator) {
return new JSONAddPartitionMessage(HCAT_SERVER_URL, HCAT_SERVICE_PRINCIPAL, table.getDbName(),
table.getTableName(), getPartitionKeyValues(table, partitionsIterator), now());
}
@Override
public AlterPartitionMessage buildAlterPartitionMessage(Table table, Partition before, Partition after) {
return new JSONAlterPartitionMessage(HCAT_SERVER_URL, HCAT_SERVICE_PRINCIPAL,
before.getDbName(), before.getTableName(), getPartitionKeyValues(table,before),now());
}
@Override
public DropPartitionMessage buildDropPartitionMessage(Table table, Iterator<Partition> partitions) {
return new JSONDropPartitionMessage(HCAT_SERVER_URL, HCAT_SERVICE_PRINCIPAL, table.getDbName(),
table.getTableName(), getPartitionKeyValues(table, partitions), now());
}
@Override
public InsertMessage buildInsertMessage(String db, String table, Map<String,String> partKeyVals,
List<String> files) {
return new JSONInsertMessage(HCAT_SERVER_URL, HCAT_SERVICE_PRINCIPAL, db, table, partKeyVals,
files, now());
}
private long now() {
return System.currentTimeMillis() / 1000;
}
private static Map<String, String> getPartitionKeyValues(Table table, Partition partition) {
Map<String, String> partitionKeys = new LinkedHashMap<String, String>();
for (int i=0; i<table.getPartitionKeysSize(); ++i)
partitionKeys.put(table.getPartitionKeys().get(i).getName(),
partition.getValues().get(i));
return partitionKeys;
}
private static List<Map<String, String>> getPartitionKeyValues(final Table table, Iterator<Partition> iterator) {
return Lists.newArrayList(Iterators.transform(iterator, new Function<Partition, Map<String, String>>() {
@Override
public Map<String, String> apply(@Nullable Partition partition) {
return getPartitionKeyValues(table, partition);
}
}));
}
}
| [
"wangqian8@bigo.sg"
] | wangqian8@bigo.sg |
949f3e80672bb02da9204bc3dc06e682512e9af4 | c5b694e3873cd095208c0f796dff537ba1d82b98 | /i_gede_susila_astawa/app/src/test/java/example/com/oticket/ExampleUnitTest.java | add937e878e81eda4fbc88ab645dbd4438680dee | [] | no_license | omrobbie/Final-Project-IAK-Periode-3-Batch-3 | 7d077e2272d654f30c2be2656e0151c004b28cb1 | 7f345ac651ba8d554b900f9eb63eeb3e0da0cf89 | refs/heads/master | 2021-08-28T04:45:19.653919 | 2017-12-11T07:34:13 | 2017-12-11T07:35:21 | 112,972,393 | 0 | 10 | null | 2017-12-10T16:37:11 | 2017-12-03T23:21:39 | Java | UTF-8 | Java | false | false | 397 | java | package example.com.oticket;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
} | [
"govins.com@gmail.com"
] | govins.com@gmail.com |
83da593c71aa2c30d28943f62662d79ef44e4fce | 60b8f1bb50164a12bc3d98e72c9e7faa255a2811 | /tsmediaplayer/app/src/main/java/com/ts/media/player/videocache/ProxyCacheException.java | 5523c1da668c29e140a3eaf397b8817261869101 | [] | no_license | snowf07/ts-media-player | f68aed875ab905c3752513a8d7e4a270091b3308 | 1b9faba08d4084eddbe78c3ab68d0cc27a9ba317 | refs/heads/master | 2020-09-03T05:26:07.098388 | 2019-11-04T02:11:24 | 2019-11-04T02:11:24 | 219,396,583 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 663 | java | package com.ts.media.player.videocache;
import com.ts.media.player.BuildConfig;
/**
* Indicates any error in work of {@link ProxyCache}.
*
* @author Alexey Danilov
*/
public class ProxyCacheException extends Exception {
private static final String LIBRARY_VERSION = ". Version: " + BuildConfig.VERSION_NAME;
public ProxyCacheException(String message) {
super(message + LIBRARY_VERSION);
}
public ProxyCacheException(String message, Throwable cause) {
super(message + LIBRARY_VERSION, cause);
}
public ProxyCacheException(Throwable cause) {
super("No explanation error" + LIBRARY_VERSION, cause);
}
}
| [
"snowf07@163.com"
] | snowf07@163.com |
d96b2bea7278184b14c5c9a272430462ef678c13 | a5f2262593cf5cbc4cd13c72efbaf851142513b6 | /src/controlescolar/view/DataView.java | 041d9daac3d02beedb381c534d88255b5ebc326e | [] | no_license | HugoLuna5/Control-Escolar | 8a4f74ce0bcb6cf054ace8893e17707de688ead3 | ddabe0ce88241152063c519c8c955a203edf95b6 | refs/heads/master | 2020-05-19T11:07:16.989511 | 2019-05-05T05:35:34 | 2019-05-05T05:35:34 | 176,040,815 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 17,909 | 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 controlescolar.view;
import java.awt.Color;
import javax.swing.JPanel;
import mdlaf.animation.MaterialUIMovement;
import mdlaf.utils.MaterialColors;
/**
*
* @author hugoluna
*/
public class DataView extends JPanel {
/**
* Creates new form DataView
*/
public DataView() {
initComponents();
configViews();
}
public void configViews(){
//fechaNacField.setEnabled(false);
btnViewDirections.setBackground(MaterialColors.CYAN_500);
btnViewDirections.setForeground(Color.white);
MaterialUIMovement.add(btnViewDirections, MaterialColors.CYAN_400);
MaterialUIMovement.add(btnGuardar, MaterialColors.GRAY_400);
}
/**
* 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() {
mainContainer = new javax.swing.JPanel();
textName = new javax.swing.JLabel();
nameField = new javax.swing.JTextField();
textAP = new javax.swing.JLabel();
apField = new javax.swing.JTextField();
textSex = new javax.swing.JLabel();
amField = new javax.swing.JTextField();
textAM1 = new javax.swing.JLabel();
fechaNacField = new com.github.lgooddatepicker.components.DatePicker();
textAM2 = new javax.swing.JLabel();
sexField = new javax.swing.JComboBox<>();
textCurp = new javax.swing.JLabel();
curpField = new javax.swing.JTextField();
textCurp1 = new javax.swing.JLabel();
nacimientoField = new javax.swing.JTextField();
textCurp2 = new javax.swing.JLabel();
textCurp3 = new javax.swing.JLabel();
btnViewDirections = new javax.swing.JButton();
textTelephone = new javax.swing.JLabel();
carreraField = new javax.swing.JTextField();
btnGuardar = new javax.swing.JButton();
telephoneField = new javax.swing.JTextField();
setMaximumSize(new java.awt.Dimension(920, 480));
setMinimumSize(new java.awt.Dimension(920, 480));
setPreferredSize(new java.awt.Dimension(920, 480));
mainContainer.setBackground(new java.awt.Color(255, 255, 255));
mainContainer.setMaximumSize(new java.awt.Dimension(920, 480));
mainContainer.setMinimumSize(new java.awt.Dimension(920, 480));
mainContainer.setPreferredSize(new java.awt.Dimension(920, 480));
textName.setFont(new java.awt.Font("Lucida Grande", 0, 16)); // NOI18N
textName.setText("Nombre: ");
nameField.setEditable(false);
textAP.setFont(new java.awt.Font("Lucida Grande", 0, 16)); // NOI18N
textAP.setText("Apellido P.");
apField.setEditable(false);
textSex.setFont(new java.awt.Font("Lucida Grande", 0, 16)); // NOI18N
textSex.setText("Sexo");
amField.setEditable(false);
textAM1.setFont(new java.awt.Font("Lucida Grande", 0, 16)); // NOI18N
textAM1.setText("Fecha de Nacimiento");
textAM2.setFont(new java.awt.Font("Lucida Grande", 0, 16)); // NOI18N
textAM2.setText("Apellido M.");
sexField.setEditable(true);
sexField.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "Masculino", "Femenino", " " }));
sexField.setEnabled(false);
textCurp.setFont(new java.awt.Font("Lucida Grande", 0, 16)); // NOI18N
textCurp.setText("Curp");
curpField.setEditable(false);
textCurp1.setFont(new java.awt.Font("Lucida Grande", 0, 16)); // NOI18N
textCurp1.setText("Lugar de nacimiento");
nacimientoField.setEditable(false);
textCurp2.setFont(new java.awt.Font("Lucida Grande", 0, 16)); // NOI18N
textCurp2.setText("Carrera");
textCurp3.setFont(new java.awt.Font("Lucida Grande", 0, 16)); // NOI18N
textCurp3.setText("Direcciรณn");
btnViewDirections.setText("Ver direcciones");
textTelephone.setFont(new java.awt.Font("Lucida Grande", 0, 16)); // NOI18N
textTelephone.setText("Telefono");
carreraField.setEditable(false);
btnGuardar.setText("Guardar");
btnGuardar.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnGuardarActionPerformed(evt);
}
});
telephoneField.setEditable(false);
javax.swing.GroupLayout mainContainerLayout = new javax.swing.GroupLayout(mainContainer);
mainContainer.setLayout(mainContainerLayout);
mainContainerLayout.setHorizontalGroup(
mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(mainContainerLayout.createSequentialGroup()
.addGap(39, 39, 39)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(mainContainerLayout.createSequentialGroup()
.addComponent(textCurp1, javax.swing.GroupLayout.PREFERRED_SIZE, 170, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(nacimientoField, javax.swing.GroupLayout.PREFERRED_SIZE, 395, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(mainContainerLayout.createSequentialGroup()
.addComponent(textAM2, javax.swing.GroupLayout.PREFERRED_SIZE, 90, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(amField, javax.swing.GroupLayout.PREFERRED_SIZE, 250, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(mainContainerLayout.createSequentialGroup()
.addComponent(textAP, javax.swing.GroupLayout.PREFERRED_SIZE, 90, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(apField, javax.swing.GroupLayout.PREFERRED_SIZE, 250, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(mainContainerLayout.createSequentialGroup()
.addComponent(textName, javax.swing.GroupLayout.PREFERRED_SIZE, 90, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(nameField, javax.swing.GroupLayout.PREFERRED_SIZE, 250, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(mainContainerLayout.createSequentialGroup()
.addComponent(textAM1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(fechaNacField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addGroup(mainContainerLayout.createSequentialGroup()
.addComponent(textCurp, javax.swing.GroupLayout.PREFERRED_SIZE, 90, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(curpField))
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, mainContainerLayout.createSequentialGroup()
.addComponent(textSex, javax.swing.GroupLayout.PREFERRED_SIZE, 90, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(sexField, javax.swing.GroupLayout.PREFERRED_SIZE, 250, javax.swing.GroupLayout.PREFERRED_SIZE))))
.addGroup(mainContainerLayout.createSequentialGroup()
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(textCurp3, javax.swing.GroupLayout.PREFERRED_SIZE, 94, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(textCurp2, javax.swing.GroupLayout.PREFERRED_SIZE, 94, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(textTelephone, javax.swing.GroupLayout.PREFERRED_SIZE, 94, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(btnViewDirections, javax.swing.GroupLayout.PREFERRED_SIZE, 160, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(telephoneField, javax.swing.GroupLayout.PREFERRED_SIZE, 395, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(76, 76, 76)))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 118, Short.MAX_VALUE)
.addComponent(btnGuardar, javax.swing.GroupLayout.PREFERRED_SIZE, 136, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(56, 56, 56))
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(mainContainerLayout.createSequentialGroup()
.addGap(149, 149, 149)
.addComponent(carreraField, javax.swing.GroupLayout.PREFERRED_SIZE, 395, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(376, Short.MAX_VALUE)))
);
mainContainerLayout.setVerticalGroup(
mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(mainContainerLayout.createSequentialGroup()
.addGap(24, 24, 24)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(textName, javax.swing.GroupLayout.PREFERRED_SIZE, 40, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(nameField, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(textAP, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(apField, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(amField, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(textAM2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(mainContainerLayout.createSequentialGroup()
.addComponent(textAM1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(sexField, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(textSex, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addGroup(mainContainerLayout.createSequentialGroup()
.addComponent(fechaNacField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(57, 57, 57)))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(textCurp, javax.swing.GroupLayout.DEFAULT_SIZE, 35, Short.MAX_VALUE)
.addComponent(curpField))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(textCurp1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(nacimientoField, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(textCurp2, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(textCurp3, javax.swing.GroupLayout.DEFAULT_SIZE, 35, Short.MAX_VALUE)
.addComponent(btnViewDirections, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(textTelephone, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(btnGuardar, javax.swing.GroupLayout.PREFERRED_SIZE, 40, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(telephoneField, javax.swing.GroupLayout.PREFERRED_SIZE, 40, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(27, 27, 27))
.addGroup(mainContainerLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, mainContainerLayout.createSequentialGroup()
.addContainerGap(332, Short.MAX_VALUE)
.addComponent(carreraField, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(113, 113, 113)))
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(mainContainer, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(mainContainer, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
}// </editor-fold>//GEN-END:initComponents
private void btnGuardarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnGuardarActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_btnGuardarActionPerformed
// Variables declaration - do not modify//GEN-BEGIN:variables
public javax.swing.JTextField amField;
public javax.swing.JTextField apField;
public javax.swing.JButton btnGuardar;
public javax.swing.JButton btnViewDirections;
public javax.swing.JTextField carreraField;
public javax.swing.JTextField curpField;
public com.github.lgooddatepicker.components.DatePicker fechaNacField;
private javax.swing.JPanel mainContainer;
public javax.swing.JTextField nacimientoField;
public javax.swing.JTextField nameField;
public javax.swing.JComboBox<String> sexField;
public javax.swing.JTextField telephoneField;
private javax.swing.JLabel textAM1;
private javax.swing.JLabel textAM2;
private javax.swing.JLabel textAP;
private javax.swing.JLabel textCurp;
private javax.swing.JLabel textCurp1;
private javax.swing.JLabel textCurp2;
private javax.swing.JLabel textCurp3;
private javax.swing.JLabel textName;
private javax.swing.JLabel textSex;
private javax.swing.JLabel textTelephone;
// End of variables declaration//GEN-END:variables
}
| [
"hugo_1199@hotmail.com"
] | hugo_1199@hotmail.com |
1bf9f6227ab82908850916487c65b6cf271ffae2 | 13c2d3db2d49c40c74c2e6420a9cd89377f1c934 | /program_data/JavaProgramData/44/504.java | 54749982a67406cfa4dca1f76e6e0e1ee7ed44c3 | [
"MIT"
] | permissive | qiuchili/ggnn_graph_classification | c2090fefe11f8bf650e734442eb96996a54dc112 | 291ff02404555511b94a4f477c6974ebd62dcf44 | refs/heads/master | 2021-10-18T14:54:26.154367 | 2018-10-21T23:34:14 | 2018-10-21T23:34:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 476 | java | int reverse = int;
int re = int;
int main()
{
int n;
int i;
for (i = 1;i <= 6;i++)
{
n = Integer.parseInt(ConsoleInput.readToWhiteSpace(true));
n = reverse(n);
System.out.print(n);
System.out.print("\n");
}
return 0;
}
int reverse(int n)
{
int i;
int j;
int k = 0;
int sum = 0;
while (n != 0)
{
if (((n % 10) == 0) && (k = 0) != 0)
{
n = n / 10;
}
else
{
sum = sum * 10;
sum = sum + (n % 10);
n = n / 10;
k = 1;
}
}
return sum;
}
| [
"y.yu@open.ac.uk"
] | y.yu@open.ac.uk |
70bb878274af4cb8bc659e6bcd12f2d7a2e8a0af | 0b53f336ec6adcb8d1efdc230f8f8bb0247ae97c | /android/app/src/main/java/com/secondassignment/MainActivity.java | 2ff405ba0d55d7ed75b49df339cb5843f2ac9a75 | [] | no_license | abdurahman/SecondAssignment | e2cbcf819ce51fa1cf293a3539b204b0444b4e91 | 36afde0b460126cb8ec64e510ba0559ee0c82a62 | refs/heads/main | 2023-03-23T11:33:10.171414 | 2021-03-15T03:19:39 | 2021-03-15T03:19:39 | 347,822,594 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 359 | java | package com.secondassignment;
import com.facebook.react.ReactActivity;
public class MainActivity extends ReactActivity {
/**
* Returns the name of the main component registered from JavaScript. This is used to schedule
* rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "SecondAssignment";
}
}
| [
"yoabdurahman@hotmail.com"
] | yoabdurahman@hotmail.com |
56b712c0e8976ca32f4204c53cd1c93c6c222654 | d1e2502e755ff7dd05b3e359c70c0228cebe2f19 | /app/src/main/java/pe/edu/ulima/myapplication/Fragments/CulturaActivity.java | b749baf2291795e115cbd70768ce4ab625f960d0 | [] | no_license | ro029/ProyectoMoviles | 26deab73072ed6272806608a7dcc735094b81112 | 3c1e9a6d4ad633eb0dd8b7f00ec367fb320ea9cc | refs/heads/master | 2021-01-19T06:12:41.662868 | 2016-07-20T21:57:40 | 2016-07-20T21:57:40 | 62,721,839 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,806 | java | package pe.edu.ulima.myapplication.Fragments;
import android.os.Handler;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.support.v4.widget.SwipeRefreshLayout;
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.ListView;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
import java.util.ArrayList;
import pe.edu.ulima.myapplication.R;
import pe.edu.ulima.myapplication.adapter.Adapter;
import pe.edu.ulima.myapplication.beans.Cultura;
public class CulturaActivity extends Fragment implements SwipeRefreshLayout.OnRefreshListener{
ArrayList<Cultura> cultura=new ArrayList<>();
private static DatabaseReference ref;
SwipeRefreshLayout mSwipeRefreshLayout;
Adapter adapter;
ListView lista;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.activity_cultura,container,false);
mSwipeRefreshLayout = (SwipeRefreshLayout) v.findViewById(R.id.swiper);
mSwipeRefreshLayout.setOnRefreshListener(this);
lista= (ListView) v.findViewById(R.id.listaCultura);
return v;
}
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
final FirebaseDatabase database = FirebaseDatabase.getInstance();
ref= database.getReference("promociones");
ref.orderByChild("filtro").equalTo("cultura").addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
for (DataSnapshot data : dataSnapshot.getChildren()){
cultura.add(data.getValue(Cultura.class));
//Log.e("+ "");
}
adapter=new Adapter(cultura,getContext());
lista.setAdapter(adapter);
}
@Override
public void onCancelled(DatabaseError databaseError) {
Log.w("CulturaActivity", "getUser:onCancelled", databaseError.toException());
}
});
}
@Override
public void onRefresh() {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
mSwipeRefreshLayout.setRefreshing(false);
}
},5000);
}
}
| [
"20131349@aloe.ulima.edu.pe"
] | 20131349@aloe.ulima.edu.pe |
44a3510d6b719da2115111e59d763eb59d9a9a48 | 6c3a07d35b2fe5ac7632776d4b2b1b8ba15d29a2 | /src/day31_arrays/ArraysUtil.java | f36e6c26528931dc7d5fef01ab2fc3a851e89473 | [] | no_license | uzmaahsan/Java_Programming1 | eef6571f9814c2fc1f170264c82c27d9a2272314 | 134c325c696de662beec8e826084087162c70d3d | refs/heads/master | 2023-04-25T23:22:10.728492 | 2021-05-23T00:11:27 | 2021-05-23T00:11:27 | 365,615,120 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 927 | java | package day31_arrays;
import java.util.*;
public class ArraysUtil {
public static void main(String[] args) {
int[] num ={100,9,21,5,7,0,-4,44 ,33};
System.out.println(Arrays.toString(num));
//sort nums
Arrays.sort(num);
//print after sorting
System.out.println(Arrays.toString(num));
System.out.println( "min value: " + num[0]);
System.out.println("max value: " + num[num.length-1]);
String words []= {"java" , "c#" , "c++" , "kotlin" ,"Ruby" , "Python" , "Assembly"};
System.out.println(Arrays.toString(words));
System.out.println("[" + String.join(" ," , words) + "]");
//sort words in alphabetic and Asscii table
System.out.println(Arrays.toString(words));
//sort words in reverse order
Arrays.sort(words,Collections.reverseOrder());
System.out.println(Arrays.toString(words));
}
}
| [
"uzmaahsan27@gmail.com"
] | uzmaahsan27@gmail.com |
4dedf2d0bc0794222ede0bb1002cb8b3fcf4fae0 | 61540f40e41d24c9089f7ed17bd73cea974063f7 | /src/com/gx/core/export/ExcelDataReflectionStrategy.java | 10d7fdb261a77fbe6f6906b9cd2e976752e69b3b | [] | no_license | xiaozengwei/weeklyWork | a09d25719aea93f364d9803b4839c2540041a114 | a36fd659831403bde832f805727f52814a4a6c57 | refs/heads/master | 2022-04-14T09:30:45.651093 | 2020-04-15T02:14:05 | 2020-04-15T02:14:05 | 234,865,769 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,013 | java | package com.gx.core.export;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class ExcelDataReflectionStrategy implements ExcelDataStrategy {
/**
* ่ทๅ็จไบๅฏผๅบ็dataMapๆฐๆฎ
*
* @param beanList ๅฏผๅบ็list
* @param metaMap ๅฏผๅบ้กน็ๅ
ไฟกๆฏ
* @return
*/
@Override
public Map<String, Object> getExcelDataMap(List beanList, Map<String, Object> metaMap) {
Class clazz = (Class) metaMap.get("clazz");//็ฑปๅฏน่ฑก
String[] columnNames = (String[]) metaMap.get("columnNames");//ๅฏผๅบ้กน็ๅญๆฎตๅ
Map<String, Object> stringObjectMap = ReflectionUtil.getExportColumnComment(clazz, columnNames);
String[] columnComments = (String[]) stringObjectMap.get("columnComment");
Integer[] excelHeaderWidth = (Integer[]) stringObjectMap.get("columnWidth");//ๅๅฎฝ
String[] validColumnName = (String[]) stringObjectMap.get("columnName");//ๅฎ้
ๅฏผๅบ็ๅญๆฎต๏ผ็ป่ฟๆ ก้ช็๏ผๅฆๆ้่ฆๅฏผๅบ้กน้ฝไธบ0ๆ่
็ฉบ๏ผๅ้่ฆๅฏผๅบๅ
จ้จ้กน็ฎ๏ผ
Map<Integer, List<String>> dataMap = new HashMap<>();
for (int i = 0; i < beanList.size(); i++) {
Object obj = beanList.get(i);
List<String> list = dataMap.get((i + 1));
if (list == null) {
list = new ArrayList<>();
dataMap.put((i + 1), list);
}
for (int m = 0; m < validColumnName.length; m++) {
String columnName = validColumnName[m];
Object columnValue = ReflectionUtil.getValue(clazz, obj, columnName);
list.add(StringUtils.isEmpty(columnValue) ? "" : columnValue.toString());
}
}
Map<String, Object> resultMap = new HashMap<>();
resultMap.put("data", dataMap);
resultMap.put("columnComment", columnComments);
resultMap.put("columnWidth", excelHeaderWidth);
return resultMap;
}
}
| [
"1316901704@qq.com"
] | 1316901704@qq.com |
266ad0be1b6e89f26b13692559ae69381e467afc | 04defa6f6d843bf07e65369de3a4aeec036ba787 | /ZWRpc-Server/test/com/rpc/zw/test/TestFacade2.java | 8dd78324979a9ee0484e961d97baebcd8659b215 | [] | no_license | 417755712/ZWRpc | 8eafd0abd3ec53caa072194deba968dd498158d0 | 6605243aff356d9fae678a82b942598216e231ab | refs/heads/master | 2020-04-15T09:23:07.233931 | 2019-04-01T06:45:51 | 2019-04-01T06:45:51 | 164,547,208 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 392 | java | package com.rpc.zw.test;
import com.rpc.zw.netty.annotation.ServiceEntry;
import com.rpc.zw.netty.context.ServiceRequest;
import com.rpc.zw.netty.context.ServiceResponse;
import com.rpc.zw.netty.facade.IFacade;
public class TestFacade2 implements IFacade {
@ServiceEntry(serviceId = (short) 0x0002)
public void test1(ServiceRequest request, ServiceResponse response) {
}
}
| [
"noreply@github.com"
] | noreply@github.com |
d94f30983d390a9d1a434eddfae456244bcdedca | 8c22d706897d5436c00eef9cfa03dbba82b9b45c | /torrent/src/main/java/org/proninyaroslav/libretorrent/core/BencodeFileItem.java | d9fff5a9a1b8e8c1f9a915a82757ba7a0795b13e | [] | no_license | TuMoH/Izya | dbaf40c8d8b2d23d2149b611739e2a55dd5a5049 | 41bd8eeef33a01f9aa6c1024cec82c776c315e06 | refs/heads/master | 2021-01-18T03:29:42.438496 | 2017-10-12T21:10:51 | 2017-10-12T21:10:51 | 85,820,698 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,926 | java | /*
* Copyright (C) 2016 Yaroslav Pronin <proninyaroslav@mail.ru>
*
* This file is part of LibreTorrent.
*
* LibreTorrent is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LibreTorrent is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LibreTorrent. If not, see <http://www.gnu.org/licenses/>.
*/
package org.proninyaroslav.libretorrent.core;
import android.os.Parcel;
import android.os.Parcelable;
/*
* The class encapsulates path, index and file size, extracted from bencode.
*/
public class BencodeFileItem implements Parcelable, Comparable<BencodeFileItem>
{
private String path;
private int index;
private long size;
public BencodeFileItem(String path, int index, long size)
{
this.path = path;
this.index = index;
this.size = size;
}
public BencodeFileItem(Parcel source)
{
path = source.readString();
index = source.readInt();
size = source.readLong();
}
public String getPath()
{
return path;
}
public void setPath(String path)
{
this.path = path;
}
public long getSize()
{
return size;
}
public void setSize(long size)
{
this.size = size;
}
public int getIndex()
{
return index;
}
public void setIndex(int index)
{
this.index = index;
}
@Override
public int describeContents()
{
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags)
{
dest.writeString(path);
dest.writeInt(index);
dest.writeLong(size);
}
public static final Creator<BencodeFileItem> CREATOR =
new Creator<BencodeFileItem>()
{
@Override
public BencodeFileItem createFromParcel(Parcel source)
{
return new BencodeFileItem(source);
}
@Override
public BencodeFileItem[] newArray(int size)
{
return new BencodeFileItem[size];
}
};
@Override
public int compareTo(BencodeFileItem anotner)
{
return path.compareTo(anotner.path);
}
@Override
public String toString()
{
return "BencodeFileItem{" +
"path='" + path + '\'' +
", index=" + index +
", size=" + size +
'}';
}
} | [
"androidtim@yandex-team.ru"
] | androidtim@yandex-team.ru |
985797f341b8d9925b737f80ba114b72f976c251 | 0e7a8943d743a26ff5ede167b97045e9a5dbf646 | /SillySnail.java | fb3bf746ad7d2644e38a7946281cfe68bc13e1b1 | [] | no_license | mooncrater31/Competitive-Programming | dd7657eda25b269ec3873cc78920fb87edbccc41 | 7cf2c8fc00e24d1575f8b1ebb1136a01d393979a | refs/heads/master | 2020-03-31T04:32:20.498065 | 2020-01-19T09:58:38 | 2020-01-19T09:58:38 | 151,909,755 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,061 | java | import java.util.* ;
class node
{
node left = null ;
node right = null ;
int value ;
node(int v)
{
value = v ;
}
}
class SillySnail
{
int A[],k=0 ;
SillySnail(int length)
{
A = new int[length] ;
}
static void arrayPrinter(int[] arr)
{
for(int i=0;i<arr.length;i++)
{
System.out.print(arr[i]+" ") ;
}
System.out.println() ;
}
void inOrder(node root)
{
if(root==null)
return ;
A[k++] = root.value ;
//arrayPrinter(A) ;
inOrder(root.left) ;
inOrder(root.right) ;
}
public static void main(String args[])
{
Scanner in = new Scanner(System.in) ;
int tests = in.nextInt() ;
int[][] results = new int[tests][] ;
for(int i=0;i<tests;i++)
{
int N = in.nextInt() ;//gives us the number of relations.
int n =2*N + 1 ;
if(N==0)
{
results[i] = new int[1] ;
results[i][0] = 1 ;
}
else
{
Map<Integer,node> map = new HashMap<Integer,node>() ;
node root = null ;
for(int j=0;j<N;j++)
{
int parent = in.nextInt() ;
int lChild = in.nextInt() ;
int rChild = in.nextInt() ;
node lch = null ;
node rch = null ;
if(lChild==0)
n-- ;
else
lch = new node(lChild) ;
if(rChild==0)
n-- ;
else
rch = new node(rChild) ;
if(map.get(parent)==null)
{
node par = new node(parent) ;
map.put(new Integer(parent),par) ;
if(parent==1)
root = par ;
par.left = lch ;
par.right = rch ;
}
else
{
node par = map.get(parent) ;
par.left = lch ;
par.right = rch ;
}
map.put(new Integer(lChild),lch) ;
map.put(new Integer(rChild),rch) ;
}
//creation of the Tree is completed.
SillySnail S = new SillySnail(n) ;
S.inOrder(root) ;
// for(int j=0;j<N;j++)
// {
// results[i][j] = S.A[j] ;
// }
results[i] = S.A ;
}
}
for(int i=0;i<results.length;i++)
{
for(int j=0;j<results[i].length;j++)
{
System.out.print(results[i][j]+" ") ;
}
System.out.println() ;
}
}
} | [
"mooncraterrocks@gmail.com"
] | mooncraterrocks@gmail.com |
ca1b374a85bf2264e5c02af923a3f0289a396d55 | ebd2490ac8ebc79698bb649c66e92b3a467fa87d | /modules/app-version-rest/src/main/java/com/tairanchina/csp/avm/controller/RnController.java | 72c0e200d9f5e73abf9aa441d17f24528a228199 | [
"Apache-2.0"
] | permissive | ahaisong/app-version | 4fbc94722066191c6ac1147164cf72cb2401fc69 | c5f4c69dc79cda0239fd24bee9c20bd6e3383e9a | refs/heads/master | 2020-04-26T22:05:05.254501 | 2019-03-04T09:04:09 | 2019-03-04T09:04:09 | 173,861,341 | 1 | 0 | Apache-2.0 | 2019-03-05T02:53:19 | 2019-03-05T02:53:18 | null | UTF-8 | Java | false | false | 3,830 | java | package com.tairanchina.csp.avm.controller;
import com.tairanchina.csp.avm.constants.ServiceResultConstants;
import com.tairanchina.csp.avm.dto.ServiceResult;
import com.tairanchina.csp.avm.utils.StringUtilsExt;
import com.tairanchina.csp.avm.service.RnService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;
/**
* Created by hzlizx on 2018/6/22 0022
*/
@Api(value = "/", description = "RN็ธๅ
ณๆฅๅฃ")
@RestController
public class RnController {
@Autowired
private RnService rnService;
@ApiOperation(value = "ๆฅ่ฏขRN่ทฏ็ฑ", notes = "ๆ นๆฎ็ๆฌๅทใๅบ็จIDใๅนณๅฐใ็ถๆ่ทๅRN่ทฏ็ฑไฟกๆฏ๏ผๆ นๆฎ[ๆดๆฐๆถ้ด]ๅๅบ")
@GetMapping("/route/{version}-{tenantAppId}-{platform}-{status}")
@ApiImplicitParams({
@ApiImplicitParam(name = "version", value = "็ๆฌๅท", required = true),
@ApiImplicitParam(name = "tenantAppId", value = "ๅบ็จappId", dataType = "string", defaultValue = "uc28ec7f8870a6e785", required = true),
@ApiImplicitParam(name = "platform", value = "ๅนณๅฐ๏ผๅผๅบไธบ ios ๆ android", required = true),
@ApiImplicitParam(name = "status", value = "RN่ทฏ็ฑ็ถๆ๏ผ0:ๅ
ณ้ญ 1:็บฟไธๅผๅฏ 2:ๆต่ฏ้่ฆ", required = true),
})
// @AccessRecord(api = "/route/{version}-{tenantAppId}-{platform}-{status}", apiDescription = AccessLog.ApiDescription.SELECT_RN_ROUTE)
public ServiceResult route(@PathVariable String version,
@PathVariable String tenantAppId,
@PathVariable String platform,
@PathVariable Integer status) {
if (StringUtilsExt.hasEmpty(version, tenantAppId, platform) || status == null) {
return ServiceResultConstants.NEED_PARAMS;
}
if (status != 1 && status != 2) {
return ServiceResultConstants.RN_STATUS_ERROR;
}
return rnService.route(version, tenantAppId, platform, status);
}
@ApiOperation(value = "ๆฅ่ฏขRNๅ
", notes = "ๆ นๆฎ็ๆฌๅทใๅบ็จIDใๅนณๅฐใ็ถๆ่ทๅRNๅ
ไฟกๆฏ๏ผๆ นๆฎ[ๆดๆฐๆถ้ด]ๅๅบ")
@GetMapping("/bundles/{version}-{tenantAppId}-{platform}-{status}")
@ApiImplicitParams({
@ApiImplicitParam(name = "version", value = "็ๆฌๅท", required = true),
@ApiImplicitParam(name = "tenantAppId", value = "ๅบ็จappId", dataType = "string", defaultValue = "uc28ec7f8870a6e785", required = true),
@ApiImplicitParam(name = "platform", value = "ๅนณๅฐ๏ผๅผๅบไธบ ios ๆ android", required = true),
@ApiImplicitParam(name = "status", value = "RNๅ
็ถๆ๏ผ0:ๅ
ณ้ญ 1:็บฟไธๅผๅฏ 2:ๆต่ฏ้่ฆ", required = true),
})
// @AccessRecord(api = "/bundles/{version}-{tenantAppId}-{platform}-{status}", apiDescription = AccessLog.ApiDescription.SELECT_RN_PACKAGE)
public ServiceResult bundles(@PathVariable String version,
@PathVariable String tenantAppId,
@PathVariable String platform,
@PathVariable Integer status) {
if (StringUtilsExt.hasEmpty(version, tenantAppId, platform) || status == null) {
return ServiceResultConstants.NEED_PARAMS;
}
if (status != 1 && status != 2) {
return ServiceResultConstants.RN_STATUS_ERROR;
}
return rnService.bundles(version, tenantAppId, platform, status);
}
}
| [
"617405347@qq.com"
] | 617405347@qq.com |
fabd08768b2c47fd242f096045a377b7d56afc70 | 9201f789810ce7a3388e40c11117660b074f3f8a | /src/test/java/ChromeSearchTests.java | 9a736cda866e0e2f7cb2865aa84c474372b17d86 | [] | no_license | lkarczewski/WebsiteSeleniumTests | 98ef84526e23134072e7096df8aaab151697c648 | 6636dcee679979ad69bbd2009e5e7fab0590fe19 | refs/heads/master | 2021-06-27T10:51:26.054717 | 2019-11-18T12:07:18 | 2019-11-18T12:07:18 | 222,439,470 | 0 | 0 | null | 2021-03-31T21:33:29 | 2019-11-18T12:03:39 | Java | UTF-8 | Java | false | false | 1,837 | java | import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import static org.junit.Assert.assertTrue;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class ChromeSearchTests {
private WebDriver driver;
private WebDriverWait wait;
@BeforeEach
void setUp() {
driver = BrowserManager.initializeBrowser(driver, "Chrome");
driver.get("https://www.google.com");
wait = new WebDriverWait(driver, 15);
}
@Test
void chromeGoogleSearchExistingSite() {
WebElement webElement = driver.findElement(By.name("q"));
webElement.sendKeys("YouTube");
webElement.sendKeys(Keys.ENTER);
wait.until(ExpectedConditions.titleContains("YouTube"));
driver.findElement(By.className("LC20lb")).click();
wait.until(ExpectedConditions.titleIs("YouTube"));
assertEquals("YouTube", driver.getTitle());
}
@Test
void chromeGoogleSearchNonExistingSite() {
WebElement webElement = driver.findElement(By.name("q"));
webElement.sendKeys("dsafhjgsfjhndfjmasfrhSdnmdfash");
webElement.sendKeys(Keys.ENTER);
wait.until(ExpectedConditions.titleContains("dsafhjgsfjhndfjmasfrhSdnmdfash"));
WebElement element = driver.findElement(By.id("topstuff"));
boolean result = element.getText().contains("Podana fraza - dsafhjgsfjhndfjmasfrhSdnmdfash - nie zostaลa odnaleziona.");
assertTrue(result);
}
@AfterEach
void tearDown() {
driver.quit();
}
}
| [
"lkarczewski@sigma.ug.edu.pl"
] | lkarczewski@sigma.ug.edu.pl |
3a282987435d012194e7623581081847483a29dc | 604e341c3b1a87d0dba92ee0134c6cf0face546b | /android/app/src/main/java/com/clima/MainApplication.java | 7470781afc72570d2e70e71ac5293ec45eaf3656 | [] | no_license | marcoalvesalmeida/react-native-clima-tempo | b2f0161d22c1f25d7d3d87215855133936edfaf3 | f0d6651a116cf55c995217c221b28fbf261d731f | refs/heads/main | 2023-03-16T06:25:10.216892 | 2021-03-18T00:51:59 | 2021-03-18T00:51:59 | 348,858,595 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,710 | java | package com.clima;
import android.app.Application;
import android.content.Context;
import com.facebook.react.PackageList;
import com.facebook.react.ReactApplication;
import com.oblador.vectoricons.VectorIconsPackage;
import com.reactnativecommunity.asyncstorage.AsyncStoragePackage;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.soloader.SoLoader;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost =
new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
@SuppressWarnings("UnnecessaryLocalVariable")
List<ReactPackage> packages = new PackageList(this).getPackages();
// Packages that cannot be autolinked yet can be added manually here, for example:
// packages.add(new MyReactNativePackage());
return packages;
}
@Override
protected String getJSMainModuleName() {
return "index";
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
}
/**
* Loads Flipper in React Native templates. Call this in the onCreate method with something like
* initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
*
* @param context
* @param reactInstanceManager
*/
private static void initializeFlipper(
Context context, ReactInstanceManager reactInstanceManager) {
if (BuildConfig.DEBUG) {
try {
/*
We use reflection here to pick up the class that initializes Flipper,
since Flipper library is not available in release mode
*/
Class<?> aClass = Class.forName("com.clima.ReactNativeFlipper");
aClass
.getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
.invoke(null, context, reactInstanceManager);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
}
| [
"marcoalvesneto@gmail.com"
] | marcoalvesneto@gmail.com |
90be8fb9c321715c7eeacf8a437d879ad8eada54 | c4a5c9f5e2b60c5db60b10a683939e372ca276d0 | /MyFirstProgramm/src/main/java/ru/rt/client/Square.java | 4cb895f2b32a1b0ae73c9e1fd4b6d85261551283 | [] | no_license | Drenjy/lesson1 | a54d51d6dc29e8a7e05e29dbbd7f5a53d5b3d396 | 79554bad92d69f3ca77aae2c29d1f9f6be5e6f9b | refs/heads/master | 2020-04-16T07:01:48.353027 | 2019-02-10T20:05:18 | 2019-02-10T20:05:18 | 165,371,022 | 0 | 0 | null | 2019-02-11T18:45:18 | 2019-01-12T09:40:27 | Java | UTF-8 | Java | false | false | 204 | java | package ru.rt.client;
public class Square {
int a;
public Square() {
}
public Square(int a) {
this.a = a;
}
public int area() {
return this.a*this.a;
}
}
| [
"Drenjy@mail.ru"
] | Drenjy@mail.ru |
d7aa655702d9b149521565bfe4ff81f6f72adce8 | c7ad118b9b71762cf4faa535df7e8c7e09033a51 | /app/build/generated/source/r/debug/com/sample/home/testapp/R.java | 1d41429a4aa839cd382348df3c5344f48a0cbd34 | [] | no_license | gitchester/TestApp | 74da022c419c026ec39ab141aab3d9888e1f37a5 | e29d0850c17a3a45d6ec110d73039e5731fb137e | refs/heads/master | 2021-07-07T04:17:24.289159 | 2017-10-04T09:14:02 | 2017-10-04T09:14:02 | 104,023,646 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 726,148 | 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.sample.home.testapp;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f050000;
public static final int abc_fade_out=0x7f050001;
public static final int abc_grow_fade_in_from_bottom=0x7f050002;
public static final int abc_popup_enter=0x7f050003;
public static final int abc_popup_exit=0x7f050004;
public static final int abc_shrink_fade_out_from_bottom=0x7f050005;
public static final int abc_slide_in_bottom=0x7f050006;
public static final int abc_slide_in_top=0x7f050007;
public static final int abc_slide_out_bottom=0x7f050008;
public static final int abc_slide_out_top=0x7f050009;
public static final int design_bottom_sheet_slide_in=0x7f05000a;
public static final int design_bottom_sheet_slide_out=0x7f05000b;
public static final int design_snackbar_in=0x7f05000c;
public static final int design_snackbar_out=0x7f05000d;
}
public static final class animator {
public static final int design_appbar_state_list_animator=0x7f060000;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionBarDivider=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 actionBarItemBackground=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 actionBarPopupTheme=0x7f01006c;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarSplitStyle=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 actionBarStyle=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 actionBarTabBarStyle=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 actionBarTabStyle=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 actionBarTabTextStyle=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 actionBarTheme=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 actionBarWidgetTheme=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 actionButtonStyle=0x7f01008d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionLayout=0x7f010104;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010074;
/** <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=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 actionModeBackground=0x7f010078;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=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 actionModeCloseDrawable=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 actionModeCopyDrawable=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 actionModeCutDrawable=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 actionModeFindDrawable=0x7f010080;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModePasteDrawable=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 actionModePopupWindowStyle=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 actionModeSelectAllDrawable=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 actionModeShareDrawable=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 actionModeSplitBackground=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 actionModeStyle=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=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 actionOverflowButtonStyle=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 actionOverflowMenuStyle=0x7f01006b;
/** <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=0x7f010106;
/** <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=0x7f010105;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010095;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b9;
/** <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=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 alertDialogStyle=0x7f0100b8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f0100bb;
/** <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=0x7f0100d1;
/** <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=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 arrowHeadLength=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 arrowShaftLength=0x7f0100f6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=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 background=0x7f010038;
/** <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=0x7f01003a;
/** <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=0x7f010039;
/** <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=0x7f01016b;
/** <p>Must be one of the following constant values.</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=0x7f01016c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_autoHide=0x7f0100fe;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_hideable=0x7f0100cf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int behavior_overlapTop=0x7f01011f;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static final int behavior_peekHeight=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 behavior_skipCollapsed=0x7f0100d0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int borderWidth=0x7f0100fc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 bottomSheetDialogTheme=0x7f0100ee;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int bottomSheetStyle=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 buttonBarButtonStyle=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 buttonBarNegativeButtonStyle=0x7f0100be;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=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 buttonBarPositiveButtonStyle=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 buttonBarStyle=0x7f01008e;
/** <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=0x7f010160;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int buttonStyle=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100c2;
/** <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=0x7f0100e4;
/** <p>Must be one of the following constant values.</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=0x7f0100e5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100c3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeIcon=0x7f010124;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int closeItemLayout=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 collapseContentDescription=0x7f010162;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010161;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int collapsedTitleGravity=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 collapsedTitleTextAppearance=0x7f0100d8;
/** <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=0x7f0100f1;
/** <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=0x7f0100b0;
/** <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=0x7f0100b7;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorButtonNormal=0x7f0100b4;
/** <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=0x7f0100b2;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorControlHighlight=0x7f0100b3;
/** <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=0x7f0100b1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int colorPrimary=0x7f0100ae;
/** <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=0x7f0100af;
/** <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=0x7f0100b5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int commitIcon=0x7f010129;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int constraintSet=0x7f010000;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentDescription=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 contentInsetEnd=0x7f010043;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010047;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010044;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010045;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010042;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010046;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int contentScrim=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 controlBackground=0x7f0100b6;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterEnabled=0x7f01014d;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int counterMaxLength=0x7f01014e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=0x7f010150;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f01014f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003b;
/** <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=0x7f010123;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 dialogTheme=0x7f010086;
/** <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=0x7f010031;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010037;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int dividerHorizontal=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 dividerPadding=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 dividerVertical=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 drawableSize=0x7f0100f3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010001;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=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 editTextBackground=0x7f01009b;
/** <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=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 editTextStyle=0x7f0100c5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 errorEnabled=0x7f01014b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f01014c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expanded=0x7f010053;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int expandedTitleGravity=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 expandedTitleMargin=0x7f0100d2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginBottom=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 expandedTitleMarginEnd=0x7f0100d5;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginStart=0x7f0100d3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int expandedTitleMarginTop=0x7f0100d4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f0100d7;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int fabSize=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 fastScrollEnabled=0x7f010119;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollHorizontalThumbDrawable=0x7f01011c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollHorizontalTrackDrawable=0x7f01011d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollVerticalThumbDrawable=0x7f01011a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int fastScrollVerticalTrackDrawable=0x7f01011b;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int foregroundInsidePadding=0x7f0100ff;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100f4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int goIcon=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int headerLayout=0x7f010110;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010002;
/** <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=0x7f010041;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintAnimationEnabled=0x7f010151;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int hintEnabled=0x7f01014a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f010149;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int homeAsUpIndicator=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 homeLayout=0x7f01003c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010035;
/** <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=0x7f010121;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int imageButtonStyle=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 indeterminateProgressStyle=0x7f01003e;
/** <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=0x7f01004b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static final int insetForeground=0x7f01011e;
/** <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=0x7f010003;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemBackground=0x7f01010e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemIconTint=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 itemPadding=0x7f010040;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f01010f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int itemTextColor=0x7f01010d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int keylines=0x7f0100e6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout=0x7f010120;
/** <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=0x7f010115;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_anchor=0x7f0100e9;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_anchorGravity=0x7f0100eb;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_behavior=0x7f0100e8;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_collapseMode=0x7f0100e1;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_collapseParallaxMultiplier=0x7f0100e2;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintBaseline_creator=0x7f010004;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintBaseline_toBaselineOf=0x7f010005;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintBottom_creator=0x7f010006;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintBottom_toBottomOf=0x7f010007;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintBottom_toTopOf=0x7f010008;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintDimensionRatio=0x7f010009;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintEnd_toEndOf=0x7f01000a;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintEnd_toStartOf=0x7f01000b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintGuide_begin=0x7f01000c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintGuide_end=0x7f01000d;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintGuide_percent=0x7f01000e;
/** <p>Must be one of the following constant values.</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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int layout_constraintHeight_default=0x7f01000f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintHeight_max=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 layout_constraintHeight_min=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 layout_constraintHorizontal_bias=0x7f010012;
/** <p>Must be one of the following constant values.</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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_constraintHorizontal_chainStyle=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 layout_constraintHorizontal_weight=0x7f010014;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintLeft_creator=0x7f010015;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintLeft_toLeftOf=0x7f010016;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintLeft_toRightOf=0x7f010017;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintRight_creator=0x7f010018;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintRight_toLeftOf=0x7f010019;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintRight_toRightOf=0x7f01001a;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintStart_toEndOf=0x7f01001b;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintStart_toStartOf=0x7f01001c;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintTop_creator=0x7f01001d;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintTop_toBottomOf=0x7f01001e;
/** <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>parent</code></td><td>0</td><td></td></tr>
</table>
*/
public static final int layout_constraintTop_toTopOf=0x7f01001f;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintVertical_bias=0x7f010020;
/** <p>Must be one of the following constant values.</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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
*/
public static final int layout_constraintVertical_chainStyle=0x7f010021;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_constraintVertical_weight=0x7f010022;
/** <p>Must be one of the following constant values.</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>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int layout_constraintWidth_default=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 layout_constraintWidth_max=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 layout_constraintWidth_min=0x7f010025;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static final int layout_dodgeInsetEdges=0x7f0100ed;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_editor_absoluteX=0x7f010026;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_editor_absoluteY=0x7f010027;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginBottom=0x7f010028;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginEnd=0x7f010029;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginLeft=0x7f01002a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginRight=0x7f01002b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginStart=0x7f01002c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_goneMarginTop=0x7f01002d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static final int layout_insetEdge=0x7f0100ec;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int layout_keyline=0x7f0100ea;
/** <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>1</td><td></td></tr>
<tr><td><code>all</code></td><td>2</td><td></td></tr>
<tr><td><code>basic</code></td><td>4</td><td></td></tr>
<tr><td><code>chains</code></td><td>8</td><td></td></tr>
</table>
*/
public static final int layout_optimizationLevel=0x7f01002e;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static final int layout_scrollFlags=0x7f010056;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int layout_scrollInterpolator=0x7f010057;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=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 listDividerAlertDialog=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 listItemLayout=0x7f010051;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int listLayout=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 listMenuViewStyle=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 listPopupWindowStyle=0x7f0100a7;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x7f0100a1;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f0100a3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100a2;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f0100a4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100a5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int logo=0x7f010036;
/** <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=0x7f010165;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int maxActionInlineWidth=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01015f;
/** <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=0x7f010100;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int menu=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 multiChoiceItemLayout=0x7f01004f;
/** <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=0x7f010164;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010163;
/** <p>Must be one of the following constant values.</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=0x7f010030;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int overlapAnchor=0x7f010111;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010113;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010169;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int paddingStart=0x7f010168;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010114;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100aa;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f0100ac;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f0100ab;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleContentDescription=0x7f010154;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int passwordToggleDrawable=0x7f010153;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleEnabled=0x7f010152;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int passwordToggleTint=0x7f010155;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static final int passwordToggleTintMode=0x7f010156;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupTheme=0x7f010049;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f010099;
/** <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=0x7f010109;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int pressedTranslationZ=0x7f0100fb;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f01003f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 queryBackground=0x7f01012b;
/** <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=0x7f010122;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int radioButtonStyle=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 ratingBarStyle=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 ratingBarStyleIndicator=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 ratingBarStyleSmall=0x7f0100c9;
/** <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=0x7f010117;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int rippleColor=0x7f0100f9;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int scrimAnimationDuration=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 scrimVisibleHeightTrigger=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 searchHintIcon=0x7f010127;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchIcon=0x7f010126;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int searchViewStyle=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 seekBarStyle=0x7f0100ca;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int selectableItemBackground=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 selectableItemBackgroundBorderless=0x7f010091;
/** <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=0x7f010103;
/** <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=0x7f010101;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int showText=0x7f010138;
/** <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=0x7f010052;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f010050;
/** <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=0x7f010116;
/** <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=0x7f0100f2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int spinnerStyle=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 splitTrack=0x7f010137;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int srcCompat=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 stackFromEnd=0x7f010118;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_above_anchor=0x7f010112;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsed=0x7f010054;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int state_collapsible=0x7f010055;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int statusBarBackground=0x7f0100e7;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int statusBarScrim=0x7f0100da;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int subMenuArrow=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 submitBackground=0x7f01012c;
/** <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=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 subtitleTextAppearance=0x7f010158;
/** <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=0x7f010167;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 suggestionRowLayout=0x7f01012a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010135;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010136;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100cc;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f010134;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabBackground=0x7f01013c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabContentStart=0x7f01013b;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabGravity=0x7f01013e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorColor=0x7f010139;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabIndicatorHeight=0x7f01013a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMaxWidth=0x7f010140;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabMinWidth=0x7f01013f;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static final int tabMode=0x7f01013d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPadding=0x7f010148;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingBottom=0x7f010147;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingEnd=0x7f010146;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingStart=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabPaddingTop=0x7f010145;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabSelectedTextColor=0x7f010143;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f010141;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tabTextColor=0x7f010142;
/** <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=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 textAppearanceLargePopupMenu=0x7f010083;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 textAppearanceListItemSmall=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 textAppearancePopupMenuHeader=0x7f010085;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=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 textAppearanceSearchResultTitle=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 textAppearanceSmallPopupMenu=0x7f010084;
/** <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=0x7f0100bc;
/** <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 textColorError=0x7f0100f0;
/** <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=0x7f01009f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int theme=0x7f01016a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=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 thumbTextPadding=0x7f010133;
/** <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=0x7f01012e;
/** <p>Must be one of the following constant values.</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=0x7f01012f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010059;
/** <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=0x7f01005a;
/** <p>Must be one of the following constant values.</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=0x7f01005b;
/** <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=0x7f01002f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int titleEnabled=0x7f0100e0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f010159;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01015d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01015b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01015a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01015c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (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=0x7f01015e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f010157;
/** <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=0x7f010166;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarId=0x7f0100db;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f010096;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int tooltipText=0x7f010108;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010130;
/** <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=0x7f010131;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>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=0x7f010132;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int useCompatPadding=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 voiceIcon=0x7f010128;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static final int windowActionBar=0x7f01005d;
/** <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=0x7f01005f;
/** <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=0x7f010060;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010064;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010062;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010061;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010063;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010065;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010066;
/** <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=0x7f01005e;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f0a0000;
public static final int abc_allow_stacked_button_bar=0x7f0a0001;
public static final int abc_config_actionMenuItemAllCaps=0x7f0a0002;
public static final int abc_config_closeDialogWhenTouchOutside=0x7f0a0003;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0004;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f0c0049;
public static final int abc_background_cache_hint_selector_material_light=0x7f0c004a;
public static final int abc_btn_colored_borderless_text_material=0x7f0c004b;
public static final int abc_btn_colored_text_material=0x7f0c004c;
public static final int abc_color_highlight_material=0x7f0c004d;
public static final int abc_hint_foreground_material_dark=0x7f0c004e;
public static final int abc_hint_foreground_material_light=0x7f0c004f;
public static final int abc_input_method_navigation_guard=0x7f0c0001;
public static final int abc_primary_text_disable_only_material_dark=0x7f0c0050;
public static final int abc_primary_text_disable_only_material_light=0x7f0c0051;
public static final int abc_primary_text_material_dark=0x7f0c0052;
public static final int abc_primary_text_material_light=0x7f0c0053;
public static final int abc_search_url_text=0x7f0c0054;
public static final int abc_search_url_text_normal=0x7f0c0002;
public static final int abc_search_url_text_pressed=0x7f0c0003;
public static final int abc_search_url_text_selected=0x7f0c0004;
public static final int abc_secondary_text_material_dark=0x7f0c0055;
public static final int abc_secondary_text_material_light=0x7f0c0056;
public static final int abc_tint_btn_checkable=0x7f0c0057;
public static final int abc_tint_default=0x7f0c0058;
public static final int abc_tint_edittext=0x7f0c0059;
public static final int abc_tint_seek_thumb=0x7f0c005a;
public static final int abc_tint_spinner=0x7f0c005b;
public static final int abc_tint_switch_thumb=0x7f0c005c;
public static final int abc_tint_switch_track=0x7f0c005d;
public static final int accent_material_dark=0x7f0c0005;
public static final int accent_material_light=0x7f0c0006;
public static final int background_floating_material_dark=0x7f0c0007;
public static final int background_floating_material_light=0x7f0c0008;
public static final int background_material_dark=0x7f0c0009;
public static final int background_material_light=0x7f0c000a;
public static final int bright_foreground_disabled_material_dark=0x7f0c000b;
public static final int bright_foreground_disabled_material_light=0x7f0c000c;
public static final int bright_foreground_inverse_material_dark=0x7f0c000d;
public static final int bright_foreground_inverse_material_light=0x7f0c000e;
public static final int bright_foreground_material_dark=0x7f0c000f;
public static final int bright_foreground_material_light=0x7f0c0010;
public static final int button_material_dark=0x7f0c0011;
public static final int button_material_light=0x7f0c0012;
public static final int colorAccent=0x7f0c0013;
public static final int colorPrimary=0x7f0c0014;
public static final int colorPrimaryDark=0x7f0c0015;
public static final int design_bottom_navigation_shadow_color=0x7f0c0016;
public static final int design_error=0x7f0c005e;
public static final int design_fab_shadow_end_color=0x7f0c0017;
public static final int design_fab_shadow_mid_color=0x7f0c0018;
public static final int design_fab_shadow_start_color=0x7f0c0019;
public static final int design_fab_stroke_end_inner_color=0x7f0c001a;
public static final int design_fab_stroke_end_outer_color=0x7f0c001b;
public static final int design_fab_stroke_top_inner_color=0x7f0c001c;
public static final int design_fab_stroke_top_outer_color=0x7f0c001d;
public static final int design_snackbar_background_color=0x7f0c001e;
public static final int design_textinput_error_color_dark=0x7f0c001f;
public static final int design_textinput_error_color_light=0x7f0c0020;
public static final int design_tint_password_toggle=0x7f0c005f;
public static final int dim_foreground_disabled_material_dark=0x7f0c0021;
public static final int dim_foreground_disabled_material_light=0x7f0c0022;
public static final int dim_foreground_material_dark=0x7f0c0023;
public static final int dim_foreground_material_light=0x7f0c0024;
public static final int foreground_material_dark=0x7f0c0025;
public static final int foreground_material_light=0x7f0c0026;
public static final int highlighted_text_material_dark=0x7f0c0027;
public static final int highlighted_text_material_light=0x7f0c0028;
public static final int material_blue_grey_800=0x7f0c0029;
public static final int material_blue_grey_900=0x7f0c002a;
public static final int material_blue_grey_950=0x7f0c002b;
public static final int material_deep_teal_200=0x7f0c002c;
public static final int material_deep_teal_500=0x7f0c002d;
public static final int material_grey_100=0x7f0c002e;
public static final int material_grey_300=0x7f0c002f;
public static final int material_grey_50=0x7f0c0030;
public static final int material_grey_600=0x7f0c0031;
public static final int material_grey_800=0x7f0c0032;
public static final int material_grey_850=0x7f0c0033;
public static final int material_grey_900=0x7f0c0034;
public static final int notification_action_color_filter=0x7f0c0000;
public static final int notification_icon_bg_color=0x7f0c0035;
public static final int notification_material_background_media_default_color=0x7f0c0036;
public static final int primary_dark_material_dark=0x7f0c0037;
public static final int primary_dark_material_light=0x7f0c0038;
public static final int primary_material_dark=0x7f0c0039;
public static final int primary_material_light=0x7f0c003a;
public static final int primary_text_default_material_dark=0x7f0c003b;
public static final int primary_text_default_material_light=0x7f0c003c;
public static final int primary_text_disabled_material_dark=0x7f0c003d;
public static final int primary_text_disabled_material_light=0x7f0c003e;
public static final int ripple_material_dark=0x7f0c003f;
public static final int ripple_material_light=0x7f0c0040;
public static final int secondary_text_default_material_dark=0x7f0c0041;
public static final int secondary_text_default_material_light=0x7f0c0042;
public static final int secondary_text_disabled_material_dark=0x7f0c0043;
public static final int secondary_text_disabled_material_light=0x7f0c0044;
public static final int switch_thumb_disabled_material_dark=0x7f0c0045;
public static final int switch_thumb_disabled_material_light=0x7f0c0046;
public static final int switch_thumb_material_dark=0x7f0c0060;
public static final int switch_thumb_material_light=0x7f0c0061;
public static final int switch_thumb_normal_material_dark=0x7f0c0047;
public static final int switch_thumb_normal_material_light=0x7f0c0048;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f08000c;
public static final int abc_action_bar_content_inset_with_nav=0x7f08000d;
public static final int abc_action_bar_default_height_material=0x7f080001;
public static final int abc_action_bar_default_padding_end_material=0x7f08000e;
public static final int abc_action_bar_default_padding_start_material=0x7f08000f;
public static final int abc_action_bar_elevation_material=0x7f08001d;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f08001e;
public static final int abc_action_bar_overflow_padding_end_material=0x7f08001f;
public static final int abc_action_bar_overflow_padding_start_material=0x7f080020;
public static final int abc_action_bar_progress_bar_size=0x7f080002;
public static final int abc_action_bar_stacked_max_height=0x7f080021;
public static final int abc_action_bar_stacked_tab_max_width=0x7f080022;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080023;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f080024;
public static final int abc_action_button_min_height_material=0x7f080025;
public static final int abc_action_button_min_width_material=0x7f080026;
public static final int abc_action_button_min_width_overflow_material=0x7f080027;
public static final int abc_alert_dialog_button_bar_height=0x7f080000;
public static final int abc_button_inset_horizontal_material=0x7f080028;
public static final int abc_button_inset_vertical_material=0x7f080029;
public static final int abc_button_padding_horizontal_material=0x7f08002a;
public static final int abc_button_padding_vertical_material=0x7f08002b;
public static final int abc_cascading_menus_min_smallest_width=0x7f08002c;
public static final int abc_config_prefDialogWidth=0x7f080005;
public static final int abc_control_corner_material=0x7f08002d;
public static final int abc_control_inset_material=0x7f08002e;
public static final int abc_control_padding_material=0x7f08002f;
public static final int abc_dialog_fixed_height_major=0x7f080006;
public static final int abc_dialog_fixed_height_minor=0x7f080007;
public static final int abc_dialog_fixed_width_major=0x7f080008;
public static final int abc_dialog_fixed_width_minor=0x7f080009;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f080030;
public static final int abc_dialog_list_padding_top_no_title=0x7f080031;
public static final int abc_dialog_min_width_major=0x7f08000a;
public static final int abc_dialog_min_width_minor=0x7f08000b;
public static final int abc_dialog_padding_material=0x7f080032;
public static final int abc_dialog_padding_top_material=0x7f080033;
public static final int abc_dialog_title_divider_material=0x7f080034;
public static final int abc_disabled_alpha_material_dark=0x7f080035;
public static final int abc_disabled_alpha_material_light=0x7f080036;
public static final int abc_dropdownitem_icon_width=0x7f080037;
public static final int abc_dropdownitem_text_padding_left=0x7f080038;
public static final int abc_dropdownitem_text_padding_right=0x7f080039;
public static final int abc_edit_text_inset_bottom_material=0x7f08003a;
public static final int abc_edit_text_inset_horizontal_material=0x7f08003b;
public static final int abc_edit_text_inset_top_material=0x7f08003c;
public static final int abc_floating_window_z=0x7f08003d;
public static final int abc_list_item_padding_horizontal_material=0x7f08003e;
public static final int abc_panel_menu_list_width=0x7f08003f;
public static final int abc_progress_bar_height_material=0x7f080040;
public static final int abc_search_view_preferred_height=0x7f080041;
public static final int abc_search_view_preferred_width=0x7f080042;
public static final int abc_seekbar_track_background_height_material=0x7f080043;
public static final int abc_seekbar_track_progress_height_material=0x7f080044;
public static final int abc_select_dialog_padding_start_material=0x7f080045;
public static final int abc_switch_padding=0x7f080019;
public static final int abc_text_size_body_1_material=0x7f080046;
public static final int abc_text_size_body_2_material=0x7f080047;
public static final int abc_text_size_button_material=0x7f080048;
public static final int abc_text_size_caption_material=0x7f080049;
public static final int abc_text_size_display_1_material=0x7f08004a;
public static final int abc_text_size_display_2_material=0x7f08004b;
public static final int abc_text_size_display_3_material=0x7f08004c;
public static final int abc_text_size_display_4_material=0x7f08004d;
public static final int abc_text_size_headline_material=0x7f08004e;
public static final int abc_text_size_large_material=0x7f08004f;
public static final int abc_text_size_medium_material=0x7f080050;
public static final int abc_text_size_menu_header_material=0x7f080051;
public static final int abc_text_size_menu_material=0x7f080052;
public static final int abc_text_size_small_material=0x7f080053;
public static final int abc_text_size_subhead_material=0x7f080054;
public static final int abc_text_size_subtitle_material_toolbar=0x7f080003;
public static final int abc_text_size_title_material=0x7f080055;
public static final int abc_text_size_title_material_toolbar=0x7f080004;
public static final int design_appbar_elevation=0x7f080056;
public static final int design_bottom_navigation_active_item_max_width=0x7f080057;
public static final int design_bottom_navigation_active_text_size=0x7f080058;
public static final int design_bottom_navigation_elevation=0x7f080059;
public static final int design_bottom_navigation_height=0x7f08005a;
public static final int design_bottom_navigation_item_max_width=0x7f08005b;
public static final int design_bottom_navigation_item_min_width=0x7f08005c;
public static final int design_bottom_navigation_margin=0x7f08005d;
public static final int design_bottom_navigation_shadow_height=0x7f08005e;
public static final int design_bottom_navigation_text_size=0x7f08005f;
public static final int design_bottom_sheet_modal_elevation=0x7f080060;
public static final int design_bottom_sheet_peek_height_min=0x7f080061;
public static final int design_fab_border_width=0x7f080062;
public static final int design_fab_elevation=0x7f080063;
public static final int design_fab_image_size=0x7f080064;
public static final int design_fab_size_mini=0x7f080065;
public static final int design_fab_size_normal=0x7f080066;
public static final int design_fab_translation_z_pressed=0x7f080067;
public static final int design_navigation_elevation=0x7f080068;
public static final int design_navigation_icon_padding=0x7f080069;
public static final int design_navigation_icon_size=0x7f08006a;
public static final int design_navigation_max_width=0x7f080010;
public static final int design_navigation_padding_bottom=0x7f08006b;
public static final int design_navigation_separator_vertical_padding=0x7f08006c;
public static final int design_snackbar_action_inline_max_width=0x7f080011;
public static final int design_snackbar_background_corner_radius=0x7f080012;
public static final int design_snackbar_elevation=0x7f08006d;
public static final int design_snackbar_extra_spacing_horizontal=0x7f080013;
public static final int design_snackbar_max_width=0x7f080014;
public static final int design_snackbar_min_width=0x7f080015;
public static final int design_snackbar_padding_horizontal=0x7f08006e;
public static final int design_snackbar_padding_vertical=0x7f08006f;
public static final int design_snackbar_padding_vertical_2lines=0x7f080016;
public static final int design_snackbar_text_size=0x7f080070;
public static final int design_tab_max_width=0x7f080071;
public static final int design_tab_scrollable_min_width=0x7f080017;
public static final int design_tab_text_size=0x7f080072;
public static final int design_tab_text_size_2line=0x7f080073;
public static final int disabled_alpha_material_dark=0x7f080074;
public static final int disabled_alpha_material_light=0x7f080075;
public static final int fab_margin=0x7f080076;
public static final int fastscroll_default_thickness=0x7f080077;
public static final int fastscroll_margin=0x7f080078;
public static final int fastscroll_minimum_range=0x7f080079;
public static final int highlight_alpha_material_colored=0x7f08007a;
public static final int highlight_alpha_material_dark=0x7f08007b;
public static final int highlight_alpha_material_light=0x7f08007c;
public static final int hint_alpha_material_dark=0x7f08007d;
public static final int hint_alpha_material_light=0x7f08007e;
public static final int hint_pressed_alpha_material_dark=0x7f08007f;
public static final int hint_pressed_alpha_material_light=0x7f080080;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080081;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f080082;
public static final int item_touch_helper_swipe_escape_velocity=0x7f080083;
public static final int notification_action_icon_size=0x7f080084;
public static final int notification_action_text_size=0x7f080085;
public static final int notification_big_circle_margin=0x7f080086;
public static final int notification_content_margin_start=0x7f08001a;
public static final int notification_large_icon_height=0x7f080087;
public static final int notification_large_icon_width=0x7f080088;
public static final int notification_main_column_padding_top=0x7f08001b;
public static final int notification_media_narrow_margin=0x7f08001c;
public static final int notification_right_icon_size=0x7f080089;
public static final int notification_right_side_padding_top=0x7f080018;
public static final int notification_small_icon_background_padding=0x7f08008a;
public static final int notification_small_icon_size_as_large=0x7f08008b;
public static final int notification_subtext_size=0x7f08008c;
public static final int notification_top_pad=0x7f08008d;
public static final int notification_top_pad_large_text=0x7f08008e;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static final int abc_action_bar_item_background_material=0x7f020001;
public static final int abc_btn_borderless_material=0x7f020002;
public static final int abc_btn_check_material=0x7f020003;
public static final int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static final int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static final int abc_btn_colored_material=0x7f020006;
public static final int abc_btn_default_mtrl_shape=0x7f020007;
public static final int abc_btn_radio_material=0x7f020008;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static final int abc_cab_background_internal_bg=0x7f02000d;
public static final int abc_cab_background_top_material=0x7f02000e;
public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static final int abc_control_background_material=0x7f020010;
public static final int abc_dialog_material_background=0x7f020011;
public static final int abc_edit_text_material=0x7f020012;
public static final int abc_ic_ab_back_material=0x7f020013;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static final int abc_ic_clear_material=0x7f020015;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static final int abc_ic_go_search_api_material=0x7f020017;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static final int abc_ic_menu_overflow_material=0x7f02001a;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static final int abc_ic_search_api_material=0x7f02001e;
public static final int abc_ic_star_black_16dp=0x7f02001f;
public static final int abc_ic_star_black_36dp=0x7f020020;
public static final int abc_ic_star_black_48dp=0x7f020021;
public static final int abc_ic_star_half_black_16dp=0x7f020022;
public static final int abc_ic_star_half_black_36dp=0x7f020023;
public static final int abc_ic_star_half_black_48dp=0x7f020024;
public static final int abc_ic_voice_search_api_material=0x7f020025;
public static final int abc_item_background_holo_dark=0x7f020026;
public static final int abc_item_background_holo_light=0x7f020027;
public static final int abc_list_divider_mtrl_alpha=0x7f020028;
public static final int abc_list_focused_holo=0x7f020029;
public static final int abc_list_longpressed_holo=0x7f02002a;
public static final int abc_list_pressed_holo_dark=0x7f02002b;
public static final int abc_list_pressed_holo_light=0x7f02002c;
public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static final int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static final int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static final int abc_list_selector_disabled_holo_light=0x7f020030;
public static final int abc_list_selector_holo_dark=0x7f020031;
public static final int abc_list_selector_holo_light=0x7f020032;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static final int abc_popup_background_mtrl_mult=0x7f020034;
public static final int abc_ratingbar_indicator_material=0x7f020035;
public static final int abc_ratingbar_material=0x7f020036;
public static final int abc_ratingbar_small_material=0x7f020037;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static final int abc_seekbar_thumb_material=0x7f02003d;
public static final int abc_seekbar_tick_mark_material=0x7f02003e;
public static final int abc_seekbar_track_material=0x7f02003f;
public static final int abc_spinner_mtrl_am_alpha=0x7f020040;
public static final int abc_spinner_textfield_background_material=0x7f020041;
public static final int abc_switch_thumb_material=0x7f020042;
public static final int abc_switch_track_mtrl_alpha=0x7f020043;
public static final int abc_tab_indicator_material=0x7f020044;
public static final int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static final int abc_text_cursor_material=0x7f020046;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static final int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static final int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static final int abc_textfield_search_material=0x7f020051;
public static final int abc_vector_test=0x7f020052;
public static final int avd_hide_password=0x7f020053;
public static final int avd_hide_password_1=0x7f020068;
public static final int avd_hide_password_2=0x7f020069;
public static final int avd_hide_password_3=0x7f02006a;
public static final int avd_show_password=0x7f020054;
public static final int avd_show_password_1=0x7f02006b;
public static final int avd_show_password_2=0x7f02006c;
public static final int avd_show_password_3=0x7f02006d;
public static final int design_bottom_navigation_item_background=0x7f020055;
public static final int design_fab_background=0x7f020056;
public static final int design_ic_visibility=0x7f020057;
public static final int design_ic_visibility_off=0x7f020058;
public static final int design_password_eye=0x7f020059;
public static final int design_snackbar_background=0x7f02005a;
public static final int navigation_empty_icon=0x7f02005b;
public static final int notification_action_background=0x7f02005c;
public static final int notification_bg=0x7f02005d;
public static final int notification_bg_low=0x7f02005e;
public static final int notification_bg_low_normal=0x7f02005f;
public static final int notification_bg_low_pressed=0x7f020060;
public static final int notification_bg_normal=0x7f020061;
public static final int notification_bg_normal_pressed=0x7f020062;
public static final int notification_icon_background=0x7f020063;
public static final int notification_template_icon_bg=0x7f020066;
public static final int notification_template_icon_low_bg=0x7f020067;
public static final int notification_tile_bg=0x7f020064;
public static final int notify_panel_notification_icon_bg=0x7f020065;
}
public static final class id {
public static final int action0=0x7f0d008d;
public static final int action_bar=0x7f0d006c;
public static final int action_bar_activity_content=0x7f0d0000;
public static final int action_bar_container=0x7f0d006b;
public static final int action_bar_root=0x7f0d0067;
public static final int action_bar_spinner=0x7f0d0001;
public static final int action_bar_subtitle=0x7f0d004a;
public static final int action_bar_title=0x7f0d0049;
public static final int action_container=0x7f0d008a;
public static final int action_context_bar=0x7f0d006d;
public static final int action_divider=0x7f0d0091;
public static final int action_image=0x7f0d008b;
public static final int action_menu_divider=0x7f0d0002;
public static final int action_menu_presenter=0x7f0d0003;
public static final int action_mode_bar=0x7f0d0069;
public static final int action_mode_bar_stub=0x7f0d0068;
public static final int action_mode_close_button=0x7f0d004b;
public static final int action_settings=0x7f0d00a7;
public static final int action_text=0x7f0d008c;
public static final int actions=0x7f0d0099;
public static final int activity_chooser_view_content=0x7f0d004c;
public static final int add=0x7f0d0027;
public static final int alertTitle=0x7f0d0060;
public static final int all=0x7f0d0015;
public static final int always=0x7f0d0042;
public static final int auto=0x7f0d002e;
public static final int basic=0x7f0d0016;
public static final int beginning=0x7f0d0040;
public static final int bottom=0x7f0d002f;
public static final int btnStart=0x7f0d00a3;
public static final int buttonPanel=0x7f0d0053;
public static final int cancel_action=0x7f0d008e;
public static final int center=0x7f0d0030;
public static final int center_horizontal=0x7f0d0031;
public static final int center_vertical=0x7f0d0032;
public static final int chains=0x7f0d0017;
public static final int checkbox=0x7f0d0063;
public static final int chronometer=0x7f0d0096;
public static final int clip_horizontal=0x7f0d003b;
public static final int clip_vertical=0x7f0d003c;
public static final int collapseActionView=0x7f0d0043;
public static final int contentPanel=0x7f0d0056;
public static final int custom=0x7f0d005d;
public static final int customPanel=0x7f0d005c;
public static final int decor_content_parent=0x7f0d006a;
public static final int default_activity_button=0x7f0d004f;
public static final int design_bottom_sheet=0x7f0d0081;
public static final int design_menu_item_action_area=0x7f0d0088;
public static final int design_menu_item_action_area_stub=0x7f0d0087;
public static final int design_menu_item_text=0x7f0d0086;
public static final int design_navigation_view=0x7f0d0085;
public static final int disableHome=0x7f0d001c;
public static final int edit_query=0x7f0d006e;
public static final int end=0x7f0d0033;
public static final int end_padder=0x7f0d00a0;
public static final int enterAlways=0x7f0d0022;
public static final int enterAlwaysCollapsed=0x7f0d0023;
public static final int exitUntilCollapsed=0x7f0d0024;
public static final int expand_activities_button=0x7f0d004d;
public static final int expanded_menu=0x7f0d0062;
public static final int fab=0x7f0d007c;
public static final int fill=0x7f0d003d;
public static final int fill_horizontal=0x7f0d003e;
public static final int fill_vertical=0x7f0d0034;
public static final int fixed=0x7f0d0047;
public static final int home=0x7f0d0004;
public static final int homeAsUp=0x7f0d001d;
public static final int icon=0x7f0d0051;
public static final int icon_group=0x7f0d009a;
public static final int ifRoom=0x7f0d0044;
public static final int image=0x7f0d004e;
public static final int info=0x7f0d0097;
public static final int item_touch_helper_previous_elevation=0x7f0d0005;
public static final int largeLabel=0x7f0d007f;
public static final int left=0x7f0d0035;
public static final int line1=0x7f0d009c;
public static final int line3=0x7f0d009e;
public static final int listMode=0x7f0d0019;
public static final int list_item=0x7f0d0050;
public static final int ltContent=0x7f0d007d;
public static final int masked=0x7f0d00a6;
public static final int media_actions=0x7f0d0090;
public static final int middle=0x7f0d0041;
public static final int mini=0x7f0d003f;
public static final int multiply=0x7f0d0028;
public static final int navigation_header_container=0x7f0d0084;
public static final int never=0x7f0d0045;
public static final int none=0x7f0d0018;
public static final int normal=0x7f0d001a;
public static final int notification_background=0x7f0d0098;
public static final int notification_main_column=0x7f0d0093;
public static final int notification_main_column_container=0x7f0d0092;
public static final int packed=0x7f0d0013;
public static final int parallax=0x7f0d0039;
public static final int parent=0x7f0d0010;
public static final int parentPanel=0x7f0d0055;
public static final int pin=0x7f0d003a;
public static final int play_button=0x7f0d00a2;
public static final int player_view=0x7f0d00a1;
public static final int progress_circular=0x7f0d0006;
public static final int progress_horizontal=0x7f0d0007;
public static final int radio=0x7f0d0065;
public static final int right=0x7f0d0036;
public static final int right_icon=0x7f0d009b;
public static final int right_side=0x7f0d0094;
public static final int screen=0x7f0d0029;
public static final int scroll=0x7f0d0025;
public static final int scrollIndicatorDown=0x7f0d005b;
public static final int scrollIndicatorUp=0x7f0d0057;
public static final int scrollView=0x7f0d0058;
public static final int scrollable=0x7f0d0048;
public static final int search_badge=0x7f0d0070;
public static final int search_bar=0x7f0d006f;
public static final int search_button=0x7f0d0071;
public static final int search_close_btn=0x7f0d0076;
public static final int search_edit_frame=0x7f0d0072;
public static final int search_go_btn=0x7f0d0078;
public static final int search_mag_icon=0x7f0d0073;
public static final int search_plate=0x7f0d0074;
public static final int search_src_text=0x7f0d0075;
public static final int search_voice_btn=0x7f0d0079;
public static final int select_dialog_listview=0x7f0d007a;
public static final int shortcut=0x7f0d0064;
public static final int showCustom=0x7f0d001e;
public static final int showHome=0x7f0d001f;
public static final int showTitle=0x7f0d0020;
public static final int smallLabel=0x7f0d007e;
public static final int snackbar_action=0x7f0d0083;
public static final int snackbar_text=0x7f0d0082;
public static final int snap=0x7f0d0026;
public static final int spacer=0x7f0d0054;
public static final int split_action_bar=0x7f0d0008;
public static final int spread=0x7f0d0011;
public static final int spread_inside=0x7f0d0014;
public static final int src_atop=0x7f0d002a;
public static final int src_in=0x7f0d002b;
public static final int src_over=0x7f0d002c;
public static final int start=0x7f0d0037;
public static final int status_bar_latest_event_content=0x7f0d008f;
public static final int submenuarrow=0x7f0d0066;
public static final int submit_area=0x7f0d0077;
public static final int tabMode=0x7f0d001b;
public static final int text=0x7f0d009f;
public static final int text2=0x7f0d009d;
public static final int textSpacerNoButtons=0x7f0d005a;
public static final int textSpacerNoTitle=0x7f0d0059;
public static final int text_input_password_toggle=0x7f0d0089;
public static final int textinput_counter=0x7f0d0009;
public static final int textinput_error=0x7f0d000a;
public static final int time=0x7f0d0095;
public static final int title=0x7f0d0052;
public static final int titleDividerNoCustom=0x7f0d0061;
public static final int title_template=0x7f0d005f;
public static final int toolbar=0x7f0d007b;
public static final int top=0x7f0d0038;
public static final int topPanel=0x7f0d005e;
public static final int touch_outside=0x7f0d0080;
public static final int transition_current_scene=0x7f0d000b;
public static final int transition_layout_save=0x7f0d000c;
public static final int transition_scene_layoutid_cache=0x7f0d000d;
public static final int txtProgress=0x7f0d00a4;
public static final int up=0x7f0d000e;
public static final int useLogo=0x7f0d0021;
public static final int view_offset_helper=0x7f0d000f;
public static final int visible=0x7f0d00a5;
public static final int withText=0x7f0d0046;
public static final int wrap=0x7f0d0012;
public static final int wrap_content=0x7f0d002d;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f0b0001;
public static final int abc_config_activityShortDur=0x7f0b0002;
public static final int app_bar_elevation_anim_duration=0x7f0b0003;
public static final int bottom_sheet_slide_duration=0x7f0b0004;
public static final int cancel_button_image_alpha=0x7f0b0005;
public static final int design_snackbar_text_max_lines=0x7f0b0000;
public static final int hide_password_duration=0x7f0b0006;
public static final int show_password_duration=0x7f0b0007;
public static final int status_bar_notification_info_maxnum=0x7f0b0008;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f040000;
public static final int abc_action_bar_up_container=0x7f040001;
public static final int abc_action_bar_view_list_nav_layout=0x7f040002;
public static final int abc_action_menu_item_layout=0x7f040003;
public static final int abc_action_menu_layout=0x7f040004;
public static final int abc_action_mode_bar=0x7f040005;
public static final int abc_action_mode_close_item_material=0x7f040006;
public static final int abc_activity_chooser_view=0x7f040007;
public static final int abc_activity_chooser_view_list_item=0x7f040008;
public static final int abc_alert_dialog_button_bar_material=0x7f040009;
public static final int abc_alert_dialog_material=0x7f04000a;
public static final int abc_alert_dialog_title_material=0x7f04000b;
public static final int abc_dialog_title_material=0x7f04000c;
public static final int abc_expanded_menu_layout=0x7f04000d;
public static final int abc_list_menu_item_checkbox=0x7f04000e;
public static final int abc_list_menu_item_icon=0x7f04000f;
public static final int abc_list_menu_item_layout=0x7f040010;
public static final int abc_list_menu_item_radio=0x7f040011;
public static final int abc_popup_menu_header_item_layout=0x7f040012;
public static final int abc_popup_menu_item_layout=0x7f040013;
public static final int abc_screen_content_include=0x7f040014;
public static final int abc_screen_simple=0x7f040015;
public static final int abc_screen_simple_overlay_action_mode=0x7f040016;
public static final int abc_screen_toolbar=0x7f040017;
public static final int abc_search_dropdown_item_icons_2line=0x7f040018;
public static final int abc_search_view=0x7f040019;
public static final int abc_select_dialog_material=0x7f04001a;
public static final int activity_main=0x7f04001b;
public static final int content_main=0x7f04001c;
public static final int design_bottom_navigation_item=0x7f04001d;
public static final int design_bottom_sheet_dialog=0x7f04001e;
public static final int design_layout_snackbar=0x7f04001f;
public static final int design_layout_snackbar_include=0x7f040020;
public static final int design_layout_tab_icon=0x7f040021;
public static final int design_layout_tab_text=0x7f040022;
public static final int design_menu_item_action_area=0x7f040023;
public static final int design_navigation_item=0x7f040024;
public static final int design_navigation_item_header=0x7f040025;
public static final int design_navigation_item_separator=0x7f040026;
public static final int design_navigation_item_subheader=0x7f040027;
public static final int design_navigation_menu=0x7f040028;
public static final int design_navigation_menu_item=0x7f040029;
public static final int design_text_input_password_icon=0x7f04002a;
public static final int notification_action=0x7f04002b;
public static final int notification_action_tombstone=0x7f04002c;
public static final int notification_media_action=0x7f04002d;
public static final int notification_media_cancel_action=0x7f04002e;
public static final int notification_template_big_media=0x7f04002f;
public static final int notification_template_big_media_custom=0x7f040030;
public static final int notification_template_big_media_narrow=0x7f040031;
public static final int notification_template_big_media_narrow_custom=0x7f040032;
public static final int notification_template_custom_big=0x7f040033;
public static final int notification_template_icon_group=0x7f040034;
public static final int notification_template_lines_media=0x7f040035;
public static final int notification_template_media=0x7f040036;
public static final int notification_template_media_custom=0x7f040037;
public static final int notification_template_part_chronometer=0x7f040038;
public static final int notification_template_part_time=0x7f040039;
public static final int select_dialog_item_material=0x7f04003a;
public static final int select_dialog_multichoice_material=0x7f04003b;
public static final int select_dialog_singlechoice_material=0x7f04003c;
public static final int support_simple_spinner_dropdown_item=0x7f04003d;
public static final int video_slow_motion=0x7f04003e;
}
public static final class menu {
public static final int menu_main=0x7f0e0000;
}
public static final class mipmap {
public static final int ic_launcher=0x7f030000;
public static final int ic_launcher_round=0x7f030001;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f070000;
public static final int abc_action_bar_home_description_format=0x7f070001;
public static final int abc_action_bar_home_subtitle_description_format=0x7f070002;
public static final int abc_action_bar_up_description=0x7f070003;
public static final int abc_action_menu_overflow_description=0x7f070004;
public static final int abc_action_mode_done=0x7f070005;
public static final int abc_activity_chooser_view_see_all=0x7f070006;
public static final int abc_activitychooserview_choose_application=0x7f070007;
public static final int abc_capital_off=0x7f070008;
public static final int abc_capital_on=0x7f070009;
public static final int abc_font_family_body_1_material=0x7f070015;
public static final int abc_font_family_body_2_material=0x7f070016;
public static final int abc_font_family_button_material=0x7f070017;
public static final int abc_font_family_caption_material=0x7f070018;
public static final int abc_font_family_display_1_material=0x7f070019;
public static final int abc_font_family_display_2_material=0x7f07001a;
public static final int abc_font_family_display_3_material=0x7f07001b;
public static final int abc_font_family_display_4_material=0x7f07001c;
public static final int abc_font_family_headline_material=0x7f07001d;
public static final int abc_font_family_menu_material=0x7f07001e;
public static final int abc_font_family_subhead_material=0x7f07001f;
public static final int abc_font_family_title_material=0x7f070020;
public static final int abc_search_hint=0x7f07000a;
public static final int abc_searchview_description_clear=0x7f07000b;
public static final int abc_searchview_description_query=0x7f07000c;
public static final int abc_searchview_description_search=0x7f07000d;
public static final int abc_searchview_description_submit=0x7f07000e;
public static final int abc_searchview_description_voice=0x7f07000f;
public static final int abc_shareactionprovider_share_with=0x7f070010;
public static final int abc_shareactionprovider_share_with_application=0x7f070011;
public static final int abc_toolbar_collapse_description=0x7f070012;
public static final int action_settings=0x7f070021;
public static final int app_name=0x7f070022;
public static final int appbar_scrolling_view_behavior=0x7f070023;
public static final int bottom_sheet_behavior=0x7f070024;
public static final int character_counter_pattern=0x7f070025;
public static final int password_toggle_content_description=0x7f070026;
public static final int path_password_eye=0x7f070027;
public static final int path_password_eye_mask_strike_through=0x7f070028;
public static final int path_password_eye_mask_visible=0x7f070029;
public static final int path_password_strike_through=0x7f07002a;
public static final int search_menu_title=0x7f070013;
public static final int status_bar_notification_info_overflow=0x7f070014;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0900a1;
public static final int AlertDialog_AppCompat_Light=0x7f0900a2;
public static final int Animation_AppCompat_Dialog=0x7f0900a3;
public static final int Animation_AppCompat_DropDownUp=0x7f0900a4;
public static final int Animation_Design_BottomSheetDialog=0x7f0900a5;
public static final int AppTheme=0x7f0900a6;
public static final int AppTheme_AppBarOverlay=0x7f0900a7;
public static final int AppTheme_NoActionBar=0x7f0900a8;
public static final int AppTheme_PopupOverlay=0x7f0900a9;
public static final int Base_AlertDialog_AppCompat=0x7f0900aa;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0900ab;
public static final int Base_Animation_AppCompat_Dialog=0x7f0900ac;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0900ad;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0900ae;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0900af;
public static final int Base_TextAppearance_AppCompat=0x7f090040;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f090041;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f090042;
public static final int Base_TextAppearance_AppCompat_Button=0x7f090028;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f090043;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f090044;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f090045;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f090046;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f090047;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f090048;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f09000c;
public static final int Base_TextAppearance_AppCompat_Large=0x7f090049;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f09000d;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f09004a;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f09004b;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f09004c;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f09000e;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f09004d;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0900b0;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09004e;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f09004f;
public static final int Base_TextAppearance_AppCompat_Small=0x7f090050;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f09000f;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f090051;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090010;
public static final int Base_TextAppearance_AppCompat_Title=0x7f090052;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090011;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090096;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090053;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090054;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090055;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090056;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090057;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090058;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090059;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f09009d;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f09009e;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090097;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900b1;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f09005a;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f09005b;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f09005c;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09005d;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09005e;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900b2;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09005f;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090060;
public static final int Base_Theme_AppCompat=0x7f090061;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0900b3;
public static final int Base_Theme_AppCompat_Dialog=0x7f090012;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f090013;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0900b4;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f090014;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090002;
public static final int Base_Theme_AppCompat_Light=0x7f090062;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0900b5;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f090015;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f090016;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0900b6;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f090017;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090003;
public static final int Base_ThemeOverlay_AppCompat=0x7f0900b7;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0900b8;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0900b9;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900ba;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f090018;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f090019;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0900bb;
public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09001a;
public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09001b;
public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f09001c;
public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090024;
public static final int Base_V12_Widget_AppCompat_EditText=0x7f090025;
public static final int Base_V21_Theme_AppCompat=0x7f090063;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090064;
public static final int Base_V21_Theme_AppCompat_Light=0x7f090065;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090066;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f090067;
public static final int Base_V22_Theme_AppCompat=0x7f090094;
public static final int Base_V22_Theme_AppCompat_Light=0x7f090095;
public static final int Base_V23_Theme_AppCompat=0x7f090098;
public static final int Base_V23_Theme_AppCompat_Light=0x7f090099;
public static final int Base_V7_Theme_AppCompat=0x7f0900bc;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0900bd;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0900be;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0900bf;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0900c0;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0900c1;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0900c2;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0900c3;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900c4;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900c5;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090068;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090069;
public static final int Base_Widget_AppCompat_ActionButton=0x7f09006a;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f09006b;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f09006c;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0900c6;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900c7;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090026;
public static final int Base_Widget_AppCompat_Button=0x7f09006d;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09006e;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09006f;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900c8;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f09009a;
public static final int Base_Widget_AppCompat_Button_Small=0x7f090070;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f090071;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900c9;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f090072;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f090073;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900ca;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900cb;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090074;
public static final int Base_Widget_AppCompat_EditText=0x7f090027;
public static final int Base_Widget_AppCompat_ImageButton=0x7f090075;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900cc;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900cd;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900ce;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090076;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090077;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090078;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090079;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09007a;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0900cf;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f09007b;
public static final int Base_Widget_AppCompat_ListView=0x7f09007c;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f09007d;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f09007e;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f09007f;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f090080;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900d0;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f09001d;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f09001e;
public static final int Base_Widget_AppCompat_RatingBar=0x7f090081;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f09009b;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f09009c;
public static final int Base_Widget_AppCompat_SearchView=0x7f0900d1;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900d2;
public static final int Base_Widget_AppCompat_SeekBar=0x7f090082;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0900d3;
public static final int Base_Widget_AppCompat_Spinner=0x7f090083;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f090004;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f090084;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0900d4;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090085;
public static final int Base_Widget_Design_AppBarLayout=0x7f0900d5;
public static final int Base_Widget_Design_TabLayout=0x7f0900d6;
public static final int Platform_AppCompat=0x7f09001f;
public static final int Platform_AppCompat_Light=0x7f090020;
public static final int Platform_ThemeOverlay_AppCompat=0x7f090086;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090087;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090088;
public static final int Platform_V11_AppCompat=0x7f090021;
public static final int Platform_V11_AppCompat_Light=0x7f090022;
public static final int Platform_V14_AppCompat=0x7f090029;
public static final int Platform_V14_AppCompat_Light=0x7f09002a;
public static final int Platform_V21_AppCompat=0x7f090089;
public static final int Platform_V21_AppCompat_Light=0x7f09008a;
public static final int Platform_V25_AppCompat=0x7f09009f;
public static final int Platform_V25_AppCompat_Light=0x7f0900a0;
public static final int Platform_Widget_AppCompat_Spinner=0x7f090023;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090032;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090033;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090034;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090035;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090036;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090037;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090038;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090039;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f09003a;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09003b;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09003c;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09003d;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f09003e;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f09003f;
public static final int TextAppearance_AppCompat=0x7f0900d7;
public static final int TextAppearance_AppCompat_Body1=0x7f0900d8;
public static final int TextAppearance_AppCompat_Body2=0x7f0900d9;
public static final int TextAppearance_AppCompat_Button=0x7f0900da;
public static final int TextAppearance_AppCompat_Caption=0x7f0900db;
public static final int TextAppearance_AppCompat_Display1=0x7f0900dc;
public static final int TextAppearance_AppCompat_Display2=0x7f0900dd;
public static final int TextAppearance_AppCompat_Display3=0x7f0900de;
public static final int TextAppearance_AppCompat_Display4=0x7f0900df;
public static final int TextAppearance_AppCompat_Headline=0x7f0900e0;
public static final int TextAppearance_AppCompat_Inverse=0x7f0900e1;
public static final int TextAppearance_AppCompat_Large=0x7f0900e2;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900e3;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900e4;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900e5;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900e6;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900e7;
public static final int TextAppearance_AppCompat_Medium=0x7f0900e8;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900e9;
public static final int TextAppearance_AppCompat_Menu=0x7f0900ea;
public static final int TextAppearance_AppCompat_Notification=0x7f09002b;
public static final int TextAppearance_AppCompat_Notification_Info=0x7f09008b;
public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f09008c;
public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0900eb;
public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0900ec;
public static final int TextAppearance_AppCompat_Notification_Media=0x7f09008d;
public static final int TextAppearance_AppCompat_Notification_Time=0x7f09008e;
public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f09008f;
public static final int TextAppearance_AppCompat_Notification_Title=0x7f09002c;
public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f090090;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900ed;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900ee;
public static final int TextAppearance_AppCompat_Small=0x7f0900ef;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900f0;
public static final int TextAppearance_AppCompat_Subhead=0x7f0900f1;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900f2;
public static final int TextAppearance_AppCompat_Title=0x7f0900f3;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900f4;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900f5;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900f6;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900f7;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900f8;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900f9;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900fa;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900fb;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900fc;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900fd;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900fe;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0900ff;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f090100;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090101;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f090102;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f090103;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090104;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090105;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f090106;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f090107;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f090108;
public static final int TextAppearance_Design_Counter=0x7f090109;
public static final int TextAppearance_Design_Counter_Overflow=0x7f09010a;
public static final int TextAppearance_Design_Error=0x7f09010b;
public static final int TextAppearance_Design_Hint=0x7f09010c;
public static final int TextAppearance_Design_Snackbar_Message=0x7f09010d;
public static final int TextAppearance_Design_Tab=0x7f09010e;
public static final int TextAppearance_StatusBar_EventContent=0x7f09002d;
public static final int TextAppearance_StatusBar_EventContent_Info=0x7f09002e;
public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f09002f;
public static final int TextAppearance_StatusBar_EventContent_Time=0x7f090030;
public static final int TextAppearance_StatusBar_EventContent_Title=0x7f090031;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f09010f;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090110;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090111;
public static final int Theme_AppCompat=0x7f090112;
public static final int Theme_AppCompat_CompactMenu=0x7f090113;
public static final int Theme_AppCompat_DayNight=0x7f090005;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f090006;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f090007;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f090008;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f090009;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f09000a;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f09000b;
public static final int Theme_AppCompat_Dialog=0x7f090114;
public static final int Theme_AppCompat_Dialog_Alert=0x7f090115;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f090116;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f090117;
public static final int Theme_AppCompat_Light=0x7f090118;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f090119;
public static final int Theme_AppCompat_Light_Dialog=0x7f09011a;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f09011b;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f09011c;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f09011d;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f09011e;
public static final int Theme_AppCompat_NoActionBar=0x7f09011f;
public static final int Theme_Design=0x7f090120;
public static final int Theme_Design_BottomSheetDialog=0x7f090121;
public static final int Theme_Design_Light=0x7f090122;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f090123;
public static final int Theme_Design_Light_NoActionBar=0x7f090124;
public static final int Theme_Design_NoActionBar=0x7f090125;
public static final int ThemeOverlay_AppCompat=0x7f090126;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f090127;
public static final int ThemeOverlay_AppCompat_Dark=0x7f090128;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090129;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f09012a;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f09012b;
public static final int ThemeOverlay_AppCompat_Light=0x7f09012c;
public static final int Widget_AppCompat_ActionBar=0x7f09012d;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f09012e;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f09012f;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f090130;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f090131;
public static final int Widget_AppCompat_ActionButton=0x7f090132;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090133;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090134;
public static final int Widget_AppCompat_ActionMode=0x7f090135;
public static final int Widget_AppCompat_ActivityChooserView=0x7f090136;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f090137;
public static final int Widget_AppCompat_Button=0x7f090138;
public static final int Widget_AppCompat_Button_Borderless=0x7f090139;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f09013a;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f09013b;
public static final int Widget_AppCompat_Button_Colored=0x7f09013c;
public static final int Widget_AppCompat_Button_Small=0x7f09013d;
public static final int Widget_AppCompat_ButtonBar=0x7f09013e;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f09013f;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f090140;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f090141;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f090142;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090143;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090144;
public static final int Widget_AppCompat_EditText=0x7f090145;
public static final int Widget_AppCompat_ImageButton=0x7f090146;
public static final int Widget_AppCompat_Light_ActionBar=0x7f090147;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f090148;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f090149;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f09014a;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f09014b;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f09014c;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09014d;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f09014e;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f09014f;
public static final int Widget_AppCompat_Light_ActionButton=0x7f090150;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090151;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f090152;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090153;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090154;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090155;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090156;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f090157;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f090158;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f090159;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09015a;
public static final int Widget_AppCompat_Light_SearchView=0x7f09015b;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f09015c;
public static final int Widget_AppCompat_ListMenuView=0x7f09015d;
public static final int Widget_AppCompat_ListPopupWindow=0x7f09015e;
public static final int Widget_AppCompat_ListView=0x7f09015f;
public static final int Widget_AppCompat_ListView_DropDown=0x7f090160;
public static final int Widget_AppCompat_ListView_Menu=0x7f090161;
public static final int Widget_AppCompat_NotificationActionContainer=0x7f090091;
public static final int Widget_AppCompat_NotificationActionText=0x7f090092;
public static final int Widget_AppCompat_PopupMenu=0x7f090162;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f090163;
public static final int Widget_AppCompat_PopupWindow=0x7f090164;
public static final int Widget_AppCompat_ProgressBar=0x7f090165;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f090166;
public static final int Widget_AppCompat_RatingBar=0x7f090167;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f090168;
public static final int Widget_AppCompat_RatingBar_Small=0x7f090169;
public static final int Widget_AppCompat_SearchView=0x7f09016a;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f09016b;
public static final int Widget_AppCompat_SeekBar=0x7f09016c;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f09016d;
public static final int Widget_AppCompat_Spinner=0x7f09016e;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f09016f;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f090170;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f090171;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f090172;
public static final int Widget_AppCompat_Toolbar=0x7f090173;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090174;
public static final int Widget_Design_AppBarLayout=0x7f090093;
public static final int Widget_Design_BottomNavigationView=0x7f090175;
public static final int Widget_Design_BottomSheet_Modal=0x7f090176;
public static final int Widget_Design_CollapsingToolbar=0x7f090177;
public static final int Widget_Design_CoordinatorLayout=0x7f090178;
public static final int Widget_Design_FloatingActionButton=0x7f090179;
public static final int Widget_Design_NavigationView=0x7f09017a;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f09017b;
public static final int Widget_Design_Snackbar=0x7f09017c;
public static final int Widget_Design_TabLayout=0x7f090001;
public static final int Widget_Design_TextInputLayout=0x7f09017d;
}
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.sample.home.testapp:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit com.sample.home.testapp:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked com.sample.home.testapp:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd com.sample.home.testapp:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.sample.home.testapp:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft com.sample.home.testapp:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight com.sample.home.testapp:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart com.sample.home.testapp:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.sample.home.testapp:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout com.sample.home.testapp:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions com.sample.home.testapp:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider com.sample.home.testapp:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation com.sample.home.testapp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height com.sample.home.testapp:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll com.sample.home.testapp:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator com.sample.home.testapp:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout com.sample.home.testapp:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon com.sample.home.testapp:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.sample.home.testapp:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding com.sample.home.testapp:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo com.sample.home.testapp:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode com.sample.home.testapp:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme com.sample.home.testapp:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding com.sample.home.testapp:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle com.sample.home.testapp:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle com.sample.home.testapp:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle com.sample.home.testapp:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title com.sample.home.testapp:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle com.sample.home.testapp: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 = {
0x7f010002, 0x7f01002f, 0x7f010030, 0x7f010031,
0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035,
0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039,
0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d,
0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041,
0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045,
0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049,
0x7f01008c
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:background
*/
public static final int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.sample.home.testapp:backgroundSplit
*/
public static final int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.sample.home.testapp:backgroundStacked
*/
public static final int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetRight
*/
public static final int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetStart
*/
public static final int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:displayOptions
*/
public static final int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:divider
*/
public static final int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:elevation
*/
public static final int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:height
*/
public static final int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:homeLayout
*/
public static final int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:icon
*/
public static final int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:itemPadding
*/
public static final int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:logo
*/
public static final int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:navigationMode
*/
public static final int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:popupTheme
*/
public static final int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:progressBarPadding
*/
public static final int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:progressBarStyle
*/
public static final int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:subtitle
*/
public static final int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:title
*/
public static final int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:titleTextStyle
*/
public static final int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity = 0;
/** Attributes that can be used with a ActionMenuItemView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
</table>
@see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView = {
0x0101013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ActionMenuItemView} array.
@attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background com.sample.home.testapp:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit com.sample.home.testapp:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout com.sample.home.testapp:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height com.sample.home.testapp:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle com.sample.home.testapp:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle com.sample.home.testapp: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 = {
0x7f010002, 0x7f010033, 0x7f010034, 0x7f010038,
0x7f01003a, 0x7f01004a
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:background
*/
public static final int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.sample.home.testapp:backgroundSplit
*/
public static final int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:closeItemLayout
*/
public static final int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:height
*/
public static final int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:titleTextStyle
*/
public static final int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.sample.home.testapp:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount com.sample.home.testapp:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f01004b, 0x7f01004c
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp: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 com.sample.home.testapp:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout com.sample.home.testapp:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout com.sample.home.testapp:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.sample.home.testapp:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle com.sample.home.testapp:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.sample.home.testapp: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, 0x7f01004d, 0x7f01004e, 0x7f01004f,
0x7f010050, 0x7f010051, 0x7f010052
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static final int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:listItemLayout
*/
public static final int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:listLayout
*/
public static final int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:showTitle
*/
public static final int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation com.sample.home.testapp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded com.sample.home.testapp:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x7f010048, 0x7f010053
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static final int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#elevation}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:elevation
*/
public static final int AppBarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#expanded}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:expanded
*/
public static final int AppBarLayout_expanded = 2;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.sample.home.testapp:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.sample.home.testapp:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010054, 0x7f010055
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#state_collapsed}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#state_collapsible}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:state_collapsible
*/
public static final int AppBarLayoutStates_state_collapsible = 1;
/** Attributes that can be used with a AppBarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.sample.home.testapp:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.sample.home.testapp:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f010056, 0x7f010057
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:layout_scrollInterpolator
*/
public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1;
/** Attributes that can be used with a AppCompatImageView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_srcCompat com.sample.home.testapp:srcCompat}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010058
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static final int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:srcCompat
*/
public static final int AppCompatImageView_srcCompat = 1;
/** Attributes that can be used with a AppCompatSeekBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMark com.sample.home.testapp:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.sample.home.testapp:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.sample.home.testapp: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, 0x7f010059, 0x7f01005a, 0x7f01005b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:tickMark
*/
public static final int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.sample.home.testapp: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 com.sample.home.testapp:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f01005c
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.sample.home.testapp:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider com.sample.home.testapp:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.sample.home.testapp:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.sample.home.testapp:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize com.sample.home.testapp:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.sample.home.testapp:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle com.sample.home.testapp:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.sample.home.testapp:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.sample.home.testapp:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.sample.home.testapp:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme com.sample.home.testapp:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.sample.home.testapp:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.sample.home.testapp:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.sample.home.testapp:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.sample.home.testapp:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.sample.home.testapp:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground com.sample.home.testapp:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.sample.home.testapp:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.sample.home.testapp:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.sample.home.testapp:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.sample.home.testapp:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.sample.home.testapp:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.sample.home.testapp:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.sample.home.testapp:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.sample.home.testapp:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.sample.home.testapp:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.sample.home.testapp:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle com.sample.home.testapp:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.sample.home.testapp:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.sample.home.testapp:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.sample.home.testapp:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.sample.home.testapp:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.sample.home.testapp:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.sample.home.testapp:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.sample.home.testapp:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.sample.home.testapp:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.sample.home.testapp:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.sample.home.testapp:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.sample.home.testapp:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.sample.home.testapp:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.sample.home.testapp:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.sample.home.testapp:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.sample.home.testapp:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle com.sample.home.testapp:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.sample.home.testapp:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle com.sample.home.testapp:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.sample.home.testapp:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent com.sample.home.testapp:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.sample.home.testapp:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.sample.home.testapp:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated com.sample.home.testapp:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.sample.home.testapp:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal com.sample.home.testapp:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary com.sample.home.testapp:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.sample.home.testapp:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.sample.home.testapp:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground com.sample.home.testapp:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.sample.home.testapp:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme com.sample.home.testapp:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.sample.home.testapp:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical com.sample.home.testapp:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.sample.home.testapp:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.sample.home.testapp:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground com.sample.home.testapp:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor com.sample.home.testapp:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle com.sample.home.testapp:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.sample.home.testapp:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.sample.home.testapp:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.sample.home.testapp:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.sample.home.testapp:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.sample.home.testapp:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.sample.home.testapp:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.sample.home.testapp:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.sample.home.testapp:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.sample.home.testapp:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.sample.home.testapp:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.sample.home.testapp:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground com.sample.home.testapp:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.sample.home.testapp:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.sample.home.testapp:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.sample.home.testapp:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.sample.home.testapp:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.sample.home.testapp:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.sample.home.testapp:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.sample.home.testapp:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.sample.home.testapp:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle com.sample.home.testapp:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle com.sample.home.testapp:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.sample.home.testapp:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.sample.home.testapp:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.sample.home.testapp:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle com.sample.home.testapp:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle com.sample.home.testapp:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.sample.home.testapp:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.sample.home.testapp:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.sample.home.testapp:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.sample.home.testapp:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.sample.home.testapp:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.sample.home.testapp:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.sample.home.testapp:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.sample.home.testapp:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.sample.home.testapp:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.sample.home.testapp:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle com.sample.home.testapp:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar com.sample.home.testapp:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.sample.home.testapp:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.sample.home.testapp:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.sample.home.testapp:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.sample.home.testapp:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.sample.home.testapp:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.sample.home.testapp:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.sample.home.testapp:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.sample.home.testapp:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle com.sample.home.testapp: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_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, 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, 0x7f0100c1, 0x7f0100c2,
0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6,
0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca,
0x7f0100cb, 0x7f0100cc, 0x7f0100cd
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.sample.home.testapp:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons = 95;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle = 93;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme = 96;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle = 101;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle = 102;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall = 103;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle = 104;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle = 105;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:colorAccent
*/
public static final int AppCompatTheme_colorAccent = 85;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating = 92;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal = 89;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated = 87;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight = 88;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal = 86;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary = 83;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark = 84;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal = 90;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:controlBackground
*/
public static final int AppCompatTheme_controlBackground = 91;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.sample.home.testapp:editTextColor
*/
public static final int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle = 106;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle = 114;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:panelBackground
*/
public static final int AppCompatTheme_panelBackground = 79;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme = 81;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth = 80;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle = 107;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle = 108;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator = 109;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall = 110;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle = 111;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle = 112;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:switchStyle
*/
public static final int AppCompatTheme_switchStyle = 113;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall = 78;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.sample.home.testapp:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem = 97;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.sample.home.testapp:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomNavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomNavigationView_elevation com.sample.home.testapp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground com.sample.home.testapp:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint com.sample.home.testapp:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor com.sample.home.testapp:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu com.sample.home.testapp:menu}</code></td><td></td></tr>
</table>
@see #BottomNavigationView_elevation
@see #BottomNavigationView_itemBackground
@see #BottomNavigationView_itemIconTint
@see #BottomNavigationView_itemTextColor
@see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView = {
0x7f010048, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#elevation}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:elevation
*/
public static final int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#itemBackground}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:itemBackground
*/
public static final int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#itemIconTint}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#itemTextColor}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#menu}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:menu
*/
public static final int BottomNavigationView_menu = 1;
/** Attributes that can be used with a BottomSheetBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.sample.home.testapp:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.sample.home.testapp:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.sample.home.testapp:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f0100ce, 0x7f0100cf, 0x7f0100d0
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#behavior_skipCollapsed}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:behavior_skipCollapsed
*/
public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking com.sample.home.testapp:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100d1
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:allowStacking
*/
public static final int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.sample.home.testapp:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.sample.home.testapp:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.sample.home.testapp:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.sample.home.testapp:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.sample.home.testapp:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.sample.home.testapp:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.sample.home.testapp:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.sample.home.testapp:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.sample.home.testapp:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.sample.home.testapp:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.sample.home.testapp:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.sample.home.testapp:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.sample.home.testapp:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title com.sample.home.testapp:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.sample.home.testapp:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.sample.home.testapp:toolbarId}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_collapsedTitleGravity
@see #CollapsingToolbarLayout_collapsedTitleTextAppearance
@see #CollapsingToolbarLayout_contentScrim
@see #CollapsingToolbarLayout_expandedTitleGravity
@see #CollapsingToolbarLayout_expandedTitleMargin
@see #CollapsingToolbarLayout_expandedTitleMarginBottom
@see #CollapsingToolbarLayout_expandedTitleMarginEnd
@see #CollapsingToolbarLayout_expandedTitleMarginStart
@see #CollapsingToolbarLayout_expandedTitleMarginTop
@see #CollapsingToolbarLayout_expandedTitleTextAppearance
@see #CollapsingToolbarLayout_scrimAnimationDuration
@see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
@see #CollapsingToolbarLayout_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f01002f, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4,
0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#collapsedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#collapsedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#expandedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#expandedTitleMargin}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#expandedTitleMarginBottom}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#expandedTitleMarginEnd}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#expandedTitleMarginStart}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#expandedTitleMarginTop}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#expandedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#scrimAnimationDuration}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#scrimVisibleHeightTrigger}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#statusBarScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#title}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:title
*/
public static final int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleEnabled}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#toolbarId}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId = 10;
/** Attributes that can be used with a CollapsingToolbarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.sample.home.testapp:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.sample.home.testapp:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f0100e1, 0x7f0100e2
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_collapseParallaxMultiplier
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha com.sample.home.testapp: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, 0x7f0100e3
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:alpha
*/
public static final int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static final int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint com.sample.home.testapp:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode com.sample.home.testapp:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100e4, 0x7f0100e5
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static final int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:buttonTint
*/
public static final int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 com.sample.home.testapp: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_maxHeight android:maxHeight}</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_minHeight android:minHeight}</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_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_constraintSet com.sample.home.testapp:constraintSet}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.sample.home.testapp:layout_constraintBaseline_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.sample.home.testapp:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.sample.home.testapp:layout_constraintBottom_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.sample.home.testapp:layout_constraintBottom_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.sample.home.testapp:layout_constraintBottom_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.sample.home.testapp:layout_constraintDimensionRatio}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.sample.home.testapp:layout_constraintEnd_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.sample.home.testapp:layout_constraintEnd_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.sample.home.testapp:layout_constraintGuide_begin}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.sample.home.testapp:layout_constraintGuide_end}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.sample.home.testapp:layout_constraintGuide_percent}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.sample.home.testapp:layout_constraintHeight_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.sample.home.testapp:layout_constraintHeight_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.sample.home.testapp:layout_constraintHeight_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.sample.home.testapp:layout_constraintHorizontal_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.sample.home.testapp:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.sample.home.testapp:layout_constraintHorizontal_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.sample.home.testapp:layout_constraintLeft_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.sample.home.testapp:layout_constraintLeft_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.sample.home.testapp:layout_constraintLeft_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.sample.home.testapp:layout_constraintRight_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.sample.home.testapp:layout_constraintRight_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.sample.home.testapp:layout_constraintRight_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.sample.home.testapp:layout_constraintStart_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.sample.home.testapp:layout_constraintStart_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.sample.home.testapp:layout_constraintTop_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.sample.home.testapp:layout_constraintTop_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.sample.home.testapp:layout_constraintTop_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.sample.home.testapp:layout_constraintVertical_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.sample.home.testapp:layout_constraintVertical_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.sample.home.testapp:layout_constraintVertical_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.sample.home.testapp:layout_constraintWidth_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.sample.home.testapp:layout_constraintWidth_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.sample.home.testapp:layout_constraintWidth_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.sample.home.testapp:layout_editor_absoluteX}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.sample.home.testapp:layout_editor_absoluteY}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.sample.home.testapp:layout_goneMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.sample.home.testapp:layout_goneMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.sample.home.testapp:layout_goneMarginLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.sample.home.testapp:layout_goneMarginRight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.sample.home.testapp:layout_goneMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.sample.home.testapp:layout_goneMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.sample.home.testapp:layout_optimizationLevel}</code></td><td></td></tr>
</table>
@see #ConstraintLayout_Layout_android_maxHeight
@see #ConstraintLayout_Layout_android_maxWidth
@see #ConstraintLayout_Layout_android_minHeight
@see #ConstraintLayout_Layout_android_minWidth
@see #ConstraintLayout_Layout_android_orientation
@see #ConstraintLayout_Layout_constraintSet
@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_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_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_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, 0x7f010000, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009,
0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d,
0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011,
0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015,
0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019,
0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d,
0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025,
0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029,
0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d,
0x7f01002e
};
/**
<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.
@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#maxWidth}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
@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#minHeight}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
@attr name android:minHeight
*/
public static final int ConstraintLayout_Layout_android_minHeight = 4;
/**
<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.
@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#orientation}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
@attr name android:orientation
*/
public static final int ConstraintLayout_Layout_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#constraintSet}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:constraintSet
*/
public static final int ConstraintLayout_Layout_constraintSet = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintBaseline_creator}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintBaseline_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintBaseline_toBaselineOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintBottom_creator}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintBottom_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintBottom_toBottomOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 9;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintBottom_toTopOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 10;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintDimensionRatio}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintDimensionRatio
*/
public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 11;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintEnd_toEndOf
*/
public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 12;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintEnd_toStartOf
*/
public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 13;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintGuide_begin}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintGuide_begin
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 14;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintGuide_end}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintGuide_end
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 15;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintGuide_percent}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintGuide_percent
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 16;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintHeight_default
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 17;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintHeight_max}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintHeight_max
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 18;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintHeight_min}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintHeight_min
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 19;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintHorizontal_bias}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintHorizontal_bias
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 20;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintHorizontal_chainStyle
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 21;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintHorizontal_weight}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintHorizontal_weight
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 22;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintLeft_creator}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintLeft_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 23;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintLeft_toLeftOf
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 24;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintLeft_toRightOf
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 25;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintRight_creator}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintRight_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 26;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintRight_toLeftOf
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 27;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintRight_toRightOf
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 28;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintStart_toEndOf
*/
public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 29;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintStart_toStartOf
*/
public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 30;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintTop_creator}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintTop_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 31;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintTop_toBottomOf
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 32;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintTop_toTopOf
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 33;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintVertical_bias}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintVertical_bias
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 34;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintVertical_chainStyle
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 35;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintVertical_weight}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintVertical_weight
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 36;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintWidth_default
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 37;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintWidth_max}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintWidth_max
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 38;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintWidth_min}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintWidth_min
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 39;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_editor_absoluteX}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_editor_absoluteX
*/
public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 40;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_editor_absoluteY}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_editor_absoluteY
*/
public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 41;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginBottom}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginBottom
*/
public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 42;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginEnd}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginEnd
*/
public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 43;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginLeft}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginLeft
*/
public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 44;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginRight}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginRight
*/
public static final int ConstraintLayout_Layout_layout_goneMarginRight = 45;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginStart}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginStart
*/
public static final int ConstraintLayout_Layout_layout_goneMarginStart = 46;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginTop}
attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginTop
*/
public static final int ConstraintLayout_Layout_layout_goneMarginTop = 47;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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><code>none</code></td><td>1</td><td></td></tr>
<tr><td><code>all</code></td><td>2</td><td></td></tr>
<tr><td><code>basic</code></td><td>4</td><td></td></tr>
<tr><td><code>chains</code></td><td>8</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_optimizationLevel
*/
public static final int ConstraintLayout_Layout_layout_optimizationLevel = 48;
/** 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_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_elevation android:elevation}</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_layout_height android:layout_height}</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_layout_marginEnd android:layout_marginEnd}</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_marginRight android:layout_marginRight}</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_marginTop android:layout_marginTop}</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_orientation android:orientation}</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_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_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_translationZ android:translationZ}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_android_visibility android:visibility}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_creator com.sample.home.testapp:layout_constraintBaseline_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.sample.home.testapp:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.sample.home.testapp:layout_constraintBottom_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.sample.home.testapp:layout_constraintBottom_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.sample.home.testapp:layout_constraintBottom_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.sample.home.testapp:layout_constraintDimensionRatio}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.sample.home.testapp:layout_constraintEnd_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.sample.home.testapp:layout_constraintEnd_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.sample.home.testapp:layout_constraintGuide_begin}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.sample.home.testapp:layout_constraintGuide_end}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.sample.home.testapp:layout_constraintGuide_percent}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.sample.home.testapp:layout_constraintHeight_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.sample.home.testapp:layout_constraintHeight_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.sample.home.testapp:layout_constraintHeight_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.sample.home.testapp:layout_constraintHorizontal_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.sample.home.testapp:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.sample.home.testapp:layout_constraintHorizontal_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.sample.home.testapp:layout_constraintLeft_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.sample.home.testapp:layout_constraintLeft_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.sample.home.testapp:layout_constraintLeft_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.sample.home.testapp:layout_constraintRight_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.sample.home.testapp:layout_constraintRight_toLeftOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.sample.home.testapp:layout_constraintRight_toRightOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.sample.home.testapp:layout_constraintStart_toEndOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.sample.home.testapp:layout_constraintStart_toStartOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.sample.home.testapp:layout_constraintTop_creator}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.sample.home.testapp:layout_constraintTop_toBottomOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.sample.home.testapp:layout_constraintTop_toTopOf}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.sample.home.testapp:layout_constraintVertical_bias}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.sample.home.testapp:layout_constraintVertical_chainStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.sample.home.testapp:layout_constraintVertical_weight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.sample.home.testapp:layout_constraintWidth_default}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.sample.home.testapp:layout_constraintWidth_max}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.sample.home.testapp:layout_constraintWidth_min}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.sample.home.testapp:layout_editor_absoluteX}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.sample.home.testapp:layout_editor_absoluteY}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.sample.home.testapp:layout_goneMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.sample.home.testapp:layout_goneMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.sample.home.testapp:layout_goneMarginLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.sample.home.testapp:layout_goneMarginRight}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.sample.home.testapp:layout_goneMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.sample.home.testapp:layout_goneMarginTop}</code></td><td></td></tr>
</table>
@see #ConstraintSet_android_alpha
@see #ConstraintSet_android_elevation
@see #ConstraintSet_android_id
@see #ConstraintSet_android_layout_height
@see #ConstraintSet_android_layout_marginBottom
@see #ConstraintSet_android_layout_marginEnd
@see #ConstraintSet_android_layout_marginLeft
@see #ConstraintSet_android_layout_marginRight
@see #ConstraintSet_android_layout_marginStart
@see #ConstraintSet_android_layout_marginTop
@see #ConstraintSet_android_layout_width
@see #ConstraintSet_android_orientation
@see #ConstraintSet_android_rotationX
@see #ConstraintSet_android_rotationY
@see #ConstraintSet_android_scaleX
@see #ConstraintSet_android_scaleY
@see #ConstraintSet_android_transformPivotX
@see #ConstraintSet_android_transformPivotY
@see #ConstraintSet_android_translationX
@see #ConstraintSet_android_translationY
@see #ConstraintSet_android_translationZ
@see #ConstraintSet_android_visibility
@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_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_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_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,
0x01010327, 0x01010328, 0x010103b5, 0x010103b6,
0x010103fa, 0x01010440, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009,
0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d,
0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011,
0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015,
0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019,
0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d,
0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021,
0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025,
0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029,
0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:alpha
*/
public static final int ConstraintSet_android_alpha = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#elevation}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:elevation
*/
public static final int ConstraintSet_android_elevation = 21;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:id
*/
public static final int ConstraintSet_android_id = 1;
/**
<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.
@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_marginBottom}
attribute's value can be found in the {@link #ConstraintSet} array.
@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#layout_marginEnd}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:layout_marginEnd
*/
public static final int ConstraintSet_android_layout_marginEnd = 19;
/**
<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.
@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_marginRight}
attribute's value can be found in the {@link #ConstraintSet} array.
@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_marginStart}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:layout_marginStart
*/
public static final int ConstraintSet_android_layout_marginStart = 18;
/**
<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.
@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_width}
attribute's value can be found in the {@link #ConstraintSet} array.
@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#orientation}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:orientation
*/
public static final int ConstraintSet_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#rotationX}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:rotationX
*/
public static final int ConstraintSet_android_rotationX = 16;
/**
<p>This symbol is the offset where the {@link android.R.attr#rotationY}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:rotationY
*/
public static final int ConstraintSet_android_rotationY = 17;
/**
<p>This symbol is the offset where the {@link android.R.attr#scaleX}
attribute's value can be found in the {@link #ConstraintSet} array.
@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.
@attr name android:scaleY
*/
public static final int ConstraintSet_android_scaleY = 15;
/**
<p>This symbol is the offset where the {@link android.R.attr#transformPivotX}
attribute's value can be found in the {@link #ConstraintSet} array.
@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.
@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.
@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.
@attr name android:translationY
*/
public static final int ConstraintSet_android_translationY = 13;
/**
<p>This symbol is the offset where the {@link android.R.attr#translationZ}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:translationZ
*/
public static final int ConstraintSet_android_translationZ = 20;
/**
<p>This symbol is the offset where the {@link android.R.attr#visibility}
attribute's value can be found in the {@link #ConstraintSet} array.
@attr name android:visibility
*/
public static final int ConstraintSet_android_visibility = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintBaseline_creator}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintBaseline_creator
*/
public static final int ConstraintSet_layout_constraintBaseline_creator = 22;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintBaseline_toBaselineOf
*/
public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 23;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintBottom_creator}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintBottom_creator
*/
public static final int ConstraintSet_layout_constraintBottom_creator = 24;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintBottom_toBottomOf
*/
public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 25;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintBottom_toTopOf
*/
public static final int ConstraintSet_layout_constraintBottom_toTopOf = 26;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintDimensionRatio}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintDimensionRatio
*/
public static final int ConstraintSet_layout_constraintDimensionRatio = 27;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintEnd_toEndOf
*/
public static final int ConstraintSet_layout_constraintEnd_toEndOf = 28;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintEnd_toStartOf
*/
public static final int ConstraintSet_layout_constraintEnd_toStartOf = 29;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintGuide_begin}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintGuide_begin
*/
public static final int ConstraintSet_layout_constraintGuide_begin = 30;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintGuide_end}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintGuide_end
*/
public static final int ConstraintSet_layout_constraintGuide_end = 31;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintGuide_percent}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintGuide_percent
*/
public static final int ConstraintSet_layout_constraintGuide_percent = 32;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintHeight_default
*/
public static final int ConstraintSet_layout_constraintHeight_default = 33;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintHeight_max}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintHeight_max
*/
public static final int ConstraintSet_layout_constraintHeight_max = 34;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintHeight_min}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintHeight_min
*/
public static final int ConstraintSet_layout_constraintHeight_min = 35;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintHorizontal_bias}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintHorizontal_bias
*/
public static final int ConstraintSet_layout_constraintHorizontal_bias = 36;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintHorizontal_chainStyle
*/
public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 37;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintHorizontal_weight}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintHorizontal_weight
*/
public static final int ConstraintSet_layout_constraintHorizontal_weight = 38;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintLeft_creator}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintLeft_creator
*/
public static final int ConstraintSet_layout_constraintLeft_creator = 39;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintLeft_toLeftOf
*/
public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 40;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintLeft_toRightOf
*/
public static final int ConstraintSet_layout_constraintLeft_toRightOf = 41;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintRight_creator}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintRight_creator
*/
public static final int ConstraintSet_layout_constraintRight_creator = 42;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintRight_toLeftOf
*/
public static final int ConstraintSet_layout_constraintRight_toLeftOf = 43;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintRight_toRightOf
*/
public static final int ConstraintSet_layout_constraintRight_toRightOf = 44;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintStart_toEndOf
*/
public static final int ConstraintSet_layout_constraintStart_toEndOf = 45;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintStart_toStartOf
*/
public static final int ConstraintSet_layout_constraintStart_toStartOf = 46;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintTop_creator}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintTop_creator
*/
public static final int ConstraintSet_layout_constraintTop_creator = 47;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintTop_toBottomOf
*/
public static final int ConstraintSet_layout_constraintTop_toBottomOf = 48;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 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>parent</code></td><td>0</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintTop_toTopOf
*/
public static final int ConstraintSet_layout_constraintTop_toTopOf = 49;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintVertical_bias}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintVertical_bias
*/
public static final int ConstraintSet_layout_constraintVertical_bias = 50;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>spread_inside</code></td><td>1</td><td></td></tr>
<tr><td><code>packed</code></td><td>2</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintVertical_chainStyle
*/
public static final int ConstraintSet_layout_constraintVertical_chainStyle = 51;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintVertical_weight}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintVertical_weight
*/
public static final int ConstraintSet_layout_constraintVertical_weight = 52;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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><code>spread</code></td><td>0</td><td></td></tr>
<tr><td><code>wrap</code></td><td>1</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_constraintWidth_default
*/
public static final int ConstraintSet_layout_constraintWidth_default = 53;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintWidth_max}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintWidth_max
*/
public static final int ConstraintSet_layout_constraintWidth_max = 54;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_constraintWidth_min}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_constraintWidth_min
*/
public static final int ConstraintSet_layout_constraintWidth_min = 55;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_editor_absoluteX}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_editor_absoluteX
*/
public static final int ConstraintSet_layout_editor_absoluteX = 56;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_editor_absoluteY}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_editor_absoluteY
*/
public static final int ConstraintSet_layout_editor_absoluteY = 57;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginBottom}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginBottom
*/
public static final int ConstraintSet_layout_goneMarginBottom = 58;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginEnd}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginEnd
*/
public static final int ConstraintSet_layout_goneMarginEnd = 59;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginLeft}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginLeft
*/
public static final int ConstraintSet_layout_goneMarginLeft = 60;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginRight}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginRight
*/
public static final int ConstraintSet_layout_goneMarginRight = 61;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginStart}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginStart
*/
public static final int ConstraintSet_layout_goneMarginStart = 62;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_goneMarginTop}
attribute's value can be found in the {@link #ConstraintSet} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_goneMarginTop
*/
public static final int ConstraintSet_layout_goneMarginTop = 63;
/** 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.sample.home.testapp:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.sample.home.testapp:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f0100e6, 0x7f0100e7
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#keylines}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:keylines
*/
public static final int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp: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.sample.home.testapp:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.sample.home.testapp:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.sample.home.testapp:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.sample.home.testapp:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.sample.home.testapp:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.sample.home.testapp: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, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea,
0x7f0100eb, 0x7f0100ec, 0x7f0100ed
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_dodgeInsetEdges}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_insetEdge}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.sample.home.testapp:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle com.sample.home.testapp:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError com.sample.home.testapp:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f0100ee, 0x7f0100ef, 0x7f0100f0
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#bottomSheetDialogTheme}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#bottomSheetStyle}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:textColorError
*/
public static final int DesignTheme_textColorError = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.sample.home.testapp:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.sample.home.testapp:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength com.sample.home.testapp:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color com.sample.home.testapp:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize com.sample.home.testapp:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.sample.home.testapp:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars com.sample.home.testapp:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness com.sample.home.testapp: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 = {
0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4,
0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:barLength
*/
public static final int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:color
*/
public static final int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:spinBars
*/
public static final int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:thickness
*/
public static final int DrawerArrowToggle_thickness = 7;
/** Attributes that can be used with a FloatingActionButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTint com.sample.home.testapp:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.sample.home.testapp:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth com.sample.home.testapp:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation com.sample.home.testapp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize com.sample.home.testapp:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.sample.home.testapp:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor com.sample.home.testapp:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding com.sample.home.testapp:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f010048, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb,
0x7f0100fc, 0x7f0100fd, 0x7f01016b, 0x7f01016c
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#backgroundTint}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#borderWidth}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:borderWidth
*/
public static final int FloatingActionButton_borderWidth = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#elevation}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:elevation
*/
public static final int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:fabSize
*/
public static final int FloatingActionButton_fabSize = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#pressedTranslationZ}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#rippleColor}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:rippleColor
*/
public static final int FloatingActionButton_rippleColor = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#useCompatPadding}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding = 5;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.sample.home.testapp:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f0100fe
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#behavior_autoHide}
attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.sample.home.testapp:foregroundInsidePadding}</code></td><td></td></tr>
</table>
@see #ForegroundLinearLayout_android_foreground
@see #ForegroundLinearLayout_android_foregroundGravity
@see #ForegroundLinearLayout_foregroundInsidePadding
*/
public static final int[] ForegroundLinearLayout = {
0x01010109, 0x01010200, 0x7f0100ff
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static final int ForegroundLinearLayout_android_foreground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foregroundGravity
*/
public static final int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#foregroundInsidePadding}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:foregroundInsidePadding
*/
public static final int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** 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.
@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_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider com.sample.home.testapp:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.sample.home.testapp:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.sample.home.testapp:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers com.sample.home.testapp: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, 0x7f010037, 0x7f010100, 0x7f010101,
0x7f010102
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:divider
*/
public static final int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:showDividers
*/
public static final int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static final int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static final int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static final int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout com.sample.home.testapp:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass com.sample.home.testapp:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass com.sample.home.testapp: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_contentDescription com.sample.home.testapp:contentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction com.sample.home.testapp:showAsAction}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_tooltipText com.sample.home.testapp:tooltipText}</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_contentDescription
@see #MenuItem_showAsAction
@see #MenuItem_tooltipText
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f010103, 0x7f010104, 0x7f010105,
0x7f010106, 0x7f010107, 0x7f010108
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:actionLayout
*/
public static final int MenuItem_actionLayout = 14;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:actionProviderClass
*/
public static final int MenuItem_actionProviderClass = 16;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp: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 com.sample.home.testapp.R.attr#contentDescription}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentDescription
*/
public static final int MenuItem_contentDescription = 17;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:showAsAction
*/
public static final int MenuItem_showAsAction = 13;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tooltipText}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tooltipText
*/
public static final int MenuItem_tooltipText = 18;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing com.sample.home.testapp:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow com.sample.home.testapp: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, 0x7f010109,
0x7f01010a
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:subMenuArrow
*/
public static final int MenuView_subMenuArrow = 8;
/** Attributes that can be used with a NavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_elevation com.sample.home.testapp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout com.sample.home.testapp:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground com.sample.home.testapp:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint com.sample.home.testapp:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance com.sample.home.testapp:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor com.sample.home.testapp:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu com.sample.home.testapp:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f010048,
0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e,
0x7f01010f, 0x7f010110
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static final int NavigationView_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:fitsSystemWindows
*/
public static final int NavigationView_android_fitsSystemWindows = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:maxWidth
*/
public static final int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#elevation}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:elevation
*/
public static final int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#headerLayout}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:headerLayout
*/
public static final int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#itemBackground}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:itemBackground
*/
public static final int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#itemIconTint}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:itemIconTint
*/
public static final int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#itemTextColor}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:itemTextColor
*/
public static final int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#menu}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:menu
*/
public static final int NavigationView_menu = 4;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor com.sample.home.testapp: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, 0x7f010111
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp: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.sample.home.testapp:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f010112
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp: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.sample.home.testapp:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.sample.home.testapp:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f010113, 0x7f010114
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollEnabled com.sample.home.testapp:fastScrollEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.sample.home.testapp:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.sample.home.testapp:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.sample.home.testapp:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.sample.home.testapp:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager com.sample.home.testapp:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout com.sample.home.testapp:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount com.sample.home.testapp:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd com.sample.home.testapp:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_fastScrollEnabled
@see #RecyclerView_fastScrollHorizontalThumbDrawable
@see #RecyclerView_fastScrollHorizontalTrackDrawable
@see #RecyclerView_fastScrollVerticalThumbDrawable
@see #RecyclerView_fastScrollVerticalTrackDrawable
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010115, 0x7f010116,
0x7f010117, 0x7f010118, 0x7f010119, 0x7f01011a,
0x7f01011b, 0x7f01011c, 0x7f01011d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static final int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#fastScrollEnabled}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:fastScrollEnabled
*/
public static final int RecyclerView_fastScrollEnabled = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#fastScrollHorizontalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:fastScrollHorizontalThumbDrawable
*/
public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#fastScrollHorizontalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:fastScrollHorizontalTrackDrawable
*/
public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#fastScrollVerticalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:fastScrollVerticalThumbDrawable
*/
public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#fastScrollVerticalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:fastScrollVerticalTrackDrawable
*/
public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:layoutManager
*/
public static final int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:reverseLayout
*/
public static final int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:spanCount
*/
public static final int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.sample.home.testapp:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f01011e
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#insetForeground}
attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name com.sample.home.testapp:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground = 0;
/** Attributes that can be used with a ScrollingViewBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.sample.home.testapp:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f01011f
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon com.sample.home.testapp:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon com.sample.home.testapp:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint com.sample.home.testapp:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon com.sample.home.testapp:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault com.sample.home.testapp:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout com.sample.home.testapp:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground com.sample.home.testapp:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint com.sample.home.testapp:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon com.sample.home.testapp:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon com.sample.home.testapp:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground com.sample.home.testapp:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout com.sample.home.testapp:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon com.sample.home.testapp: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,
0x7f010120, 0x7f010121, 0x7f010122, 0x7f010123,
0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127,
0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b,
0x7f01012c
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static final int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static final int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:closeIcon
*/
public static final int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:commitIcon
*/
public static final int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:goIcon
*/
public static final int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:layout
*/
public static final int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:queryBackground
*/
public static final int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:queryHint
*/
public static final int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:searchHintIcon
*/
public static final int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:searchIcon
*/
public static final int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:submitBackground
*/
public static final int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:voiceIcon
*/
public static final int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation com.sample.home.testapp:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.sample.home.testapp:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f010048, 0x7f01012d
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static final int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#elevation}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:elevation
*/
public static final int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#maxActionInlineWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth = 2;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme com.sample.home.testapp: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,
0x7f010049
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static final int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static final int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:popupTheme
*/
public static final int Spinner_popupTheme = 4;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText com.sample.home.testapp:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack com.sample.home.testapp:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth com.sample.home.testapp:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding com.sample.home.testapp:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance com.sample.home.testapp:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding com.sample.home.testapp:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint com.sample.home.testapp:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode com.sample.home.testapp:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track com.sample.home.testapp:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint com.sample.home.testapp:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode com.sample.home.testapp: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, 0x7f01012e,
0x7f01012f, 0x7f010130, 0x7f010131, 0x7f010132,
0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136,
0x7f010137, 0x7f010138
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static final int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static final int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static final int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:showText
*/
public static final int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:splitTrack
*/
public static final int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:switchPadding
*/
public static final int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:thumbTint
*/
public static final int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:track
*/
public static final int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:trackTint
*/
public static final int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:trackTintMode
*/
public static final int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static final int TabItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:layout
*/
public static final int TabItem_android_layout = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#text}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:text
*/
public static final int TabItem_android_text = 2;
/** Attributes that can be used with a TabLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabLayout_tabBackground com.sample.home.testapp:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart com.sample.home.testapp:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity com.sample.home.testapp:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor com.sample.home.testapp:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight com.sample.home.testapp:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth com.sample.home.testapp:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth com.sample.home.testapp:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode com.sample.home.testapp:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding com.sample.home.testapp:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom com.sample.home.testapp:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd com.sample.home.testapp:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart com.sample.home.testapp:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop com.sample.home.testapp:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor com.sample.home.testapp:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance com.sample.home.testapp:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor com.sample.home.testapp:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c,
0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140,
0x7f010141, 0x7f010142, 0x7f010143, 0x7f010144,
0x7f010145, 0x7f010146, 0x7f010147, 0x7f010148
};
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabBackground}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:tabBackground
*/
public static final int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabContentStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabContentStart
*/
public static final int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabGravity}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:tabGravity
*/
public static final int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabIndicatorColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabIndicatorHeight}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabMaxWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabMinWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabMinWidth
*/
public static final int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabMode}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:tabMode
*/
public static final int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabPadding}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabPadding
*/
public static final int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabPaddingBottom}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabPaddingEnd}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabPaddingStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabPaddingTop}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabSelectedTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabTextAppearance}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#tabTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:tabTextColor
*/
public static final int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_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 com.sample.home.testapp: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, 0x7f01005c
};
/**
<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 com.sample.home.testapp.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name com.sample.home.testapp:textAllCaps
*/
public static final int TextAppearance_textAllCaps = 9;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled com.sample.home.testapp:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength com.sample.home.testapp:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.sample.home.testapp:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance com.sample.home.testapp:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled com.sample.home.testapp:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance com.sample.home.testapp:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.sample.home.testapp:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled com.sample.home.testapp:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance com.sample.home.testapp:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.sample.home.testapp:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.sample.home.testapp:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.sample.home.testapp:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint com.sample.home.testapp:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.sample.home.testapp:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f010149, 0x7f01014a,
0x7f01014b, 0x7f01014c, 0x7f01014d, 0x7f01014e,
0x7f01014f, 0x7f010150, 0x7f010151, 0x7f010152,
0x7f010153, 0x7f010154, 0x7f010155, 0x7f010156
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static final int TextInputLayout_android_hint = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:textColorHint
*/
public static final int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#counterEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:counterEnabled
*/
public static final int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#counterMaxLength}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#counterOverflowTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#counterTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#errorEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:errorEnabled
*/
public static final int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#errorTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#hintAnimationEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#hintEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:hintEnabled
*/
public static final int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#hintTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#passwordToggleContentDescription}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#passwordToggleDrawable}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#passwordToggleEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#passwordToggleTint}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#passwordToggleTintMode}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:passwordToggleTintMode
*/
public static final int TextInputLayout_passwordToggleTintMode = 15;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_buttonGravity com.sample.home.testapp:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription com.sample.home.testapp:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon com.sample.home.testapp:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd com.sample.home.testapp:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.sample.home.testapp:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft com.sample.home.testapp:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight com.sample.home.testapp:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart com.sample.home.testapp:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.sample.home.testapp:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo com.sample.home.testapp:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription com.sample.home.testapp:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight com.sample.home.testapp:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription com.sample.home.testapp:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon com.sample.home.testapp:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme com.sample.home.testapp:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle com.sample.home.testapp:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance com.sample.home.testapp:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor com.sample.home.testapp:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title com.sample.home.testapp:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin com.sample.home.testapp:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom com.sample.home.testapp:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd com.sample.home.testapp:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart com.sample.home.testapp:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop com.sample.home.testapp:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins com.sample.home.testapp:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance com.sample.home.testapp:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor com.sample.home.testapp: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, 0x7f01002f, 0x7f010032,
0x7f010036, 0x7f010042, 0x7f010043, 0x7f010044,
0x7f010045, 0x7f010046, 0x7f010047, 0x7f010049,
0x7f010157, 0x7f010158, 0x7f010159, 0x7f01015a,
0x7f01015b, 0x7f01015c, 0x7f01015d, 0x7f01015e,
0x7f01015f, 0x7f010160, 0x7f010161, 0x7f010162,
0x7f010163, 0x7f010164, 0x7f010165, 0x7f010166,
0x7f010167
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static final int Toolbar_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:minHeight
*/
public static final int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name com.sample.home.testapp:buttonGravity
*/
public static final int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:collapseIcon
*/
public static final int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetRight
*/
public static final int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetStart
*/
public static final int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:logo
*/
public static final int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:logoDescription
*/
public static final int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:navigationIcon
*/
public static final int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:popupTheme
*/
public static final int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:subtitle
*/
public static final int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:title
*/
public static final int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:titleMargin
*/
public static final int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:titleMarginStart
*/
public static final int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:titleMarginTop
*/
public static final int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:titleMargins
*/
public static final int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:titleTextColor
*/
public static final int Toolbar_titleTextColor = 27;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd com.sample.home.testapp:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart com.sample.home.testapp:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme com.sample.home.testapp: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, 0x7f010168, 0x7f010169,
0x7f01016a
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static final int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static final int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:paddingEnd
*/
public static final int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:paddingStart
*/
public static final int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name com.sample.home.testapp: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.sample.home.testapp:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.sample.home.testapp:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f01016b, 0x7f01016c
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static final int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name com.sample.home.testapp:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link com.sample.home.testapp.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 com.sample.home.testapp: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;
};
}
| [
"chuong@planvsoftware.com"
] | chuong@planvsoftware.com |
9af0201e2259a538963d02350f896892eb0335d2 | c72d1c846b725b7caf7955f4125a9ff4d394dd85 | /src/main/java/http/HTTPRequest.java | 75522a3a57749b41bc33b5efa1c2b683b9f17e5f | [] | no_license | RobertNorthard/jHTTPServer | 9150165316b32aef6d5af605e8f657e047fbbadd | 8f21baf20a20a456616d35607e9148d4cec7a6d9 | refs/heads/master | 2021-01-01T05:31:30.485127 | 2013-12-22T21:13:32 | 2013-12-22T21:13:32 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,405 | java | package http;
import java.io.*;
import java.net.*;
import java.util.*;
/**
* A class that represents a HTTP request.
*
* @author Robert Northard
* @version 18/12/2013
*/
public class HTTPRequest{
private MethodCode method = null;
private String resource = "";
private String version = "";
//key mapping from header field to value
private Map<String, String> headers = new HashMap<String, String>();
/**
* Constructor for class HTTPRequest
* @param method http request type
* @param resource requested resource name
* @param version http version
* @param headers, map containing header mappings
*/
public HTTPRequest(MethodCode method, String resource, String version, Map<String, String> headers){
this.method = method;
this.resource = resource;
this.version = version;
this.headers = headers;
}
/**
* Parse first HTTP request and store headers
* Example: GET / HTTP/1.1
* pre-condition: valid http request line
* @return a valid HTTP Request, null if not valid.
*/
public static HTTPRequest parseRequest(InputStream in) throws IOException{
Scanner scan = new Scanner(in);
String line = scan.nextLine();
String[] parts = line.split(" ");
MethodCode method = null;
String resource = null;
String version = null;
Map<String,String> headers = new HashMap<String,String>();
if(parts.length == 3){
//not the best approach
try{
method = MethodCode.valueOf(parts[0]);
}catch (IllegalArgumentException e){
method = MethodCode.UNRECOGNIZED;
}
resource = parts[1];
version = parts[2];
//get headers
line = scan.nextLine();
while(line.length() != 0){
parts = line.split(":");
headers.put(parts[0], parts[1]);
line = scan.nextLine();
}
in.close();
return new HTTPRequest(method, resource, version, headers);
}
in.close();
return null;
}
/**
* Return true if valid HTTP Request, for HTTP/1.1 Header field required.
* @return true if valid HTTP request
*/
public boolean isValidRequest(){
if (this.method != MethodCode.UNRECOGNIZED && this.resource.startsWith("/"))
if (this.version.equals("HTTP/1.1") && this.headers.containsKey("Host"))
return true;
else if (this.version.equals("HTTP/1.0"))
return true;
return false;
}
/**
* set resouce file name
* @param resource the resource file name
*/
public void setResource(String resource){
this.resource = resource;
}
/**
* Set HTTP version
* @param version updated HTTP version
*/
public String setVersion(String version){
return this.version = version;
}
/**
* Return requested resource
* @return resource file name
*/
public String getResource(){
return this.resource;
}
/**
* Return HTTP version
* @return HTTP version
*/
public String getVersion(){
return this.version;
}
/**
* Return request method type
* @return HTTP method request type
*/
public MethodCode getRequestMethod(){
return this.method;
}
/**
* Return value associated with header field name
* @param header field name, i.e. Host
* @return return value associated with header field name, null if key mapping not present.
*/
public String getHeader(String key){
return this.headers.get(key);
}
/**
* Return HTTP Headers
* @return HTTP headers, null if none.
*/
public Map<String, String> getHeaders(){
return this.headers;
}
/*
* Return a string representation of a http request
* @return a string representation of a http request
*/
@Override
public String toString(){
StringBuilder request = new StringBuilder(this.method + " " + this.resource + " " + this.version + "\r\n");
for(String key: this.headers.keySet())
request.append(key + ":" + this.headers.get(key));
return request.toString();
}
}
| [
"robertnorthard@googlemail.com"
] | robertnorthard@googlemail.com |
bfbcc3ebdcec2ce408ccef7974277377de13a15e | 825fd0a0e50be34b207071a83c86293835b7fecb | /problem/src/pdd/ๅญ็ฌฆไธฒ.java | 778ecd812fd92377c02637a1da3415446b8103d4 | [] | no_license | angryBird2014/problems | dd7cb6fec2ffe05dbff7b8b9893c797c42e49740 | c766be4971c8ac77da4467f3c7f2b0cf46c599ca | refs/heads/master | 2021-09-21T02:05:02.729757 | 2018-08-19T07:38:23 | 2018-08-19T07:38:23 | 115,246,560 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 827 | java | package pdd;
import java.util.Arrays;
import java.util.Scanner;
public class ๅญ็ฌฆไธฒ {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
char[] lines = in.nextLine().toCharArray();
int n = lines.length/4;
char[][] result = new char[n+1][n+1];
for (int i=0;i<result.length;i++)
Arrays.fill(result[i],' ');
int j = 0;
for (int i=0;i<n;i++){
//ไธ
result[0][i] = lines[j++];
}
//ๅณ
for (int i=0;i<n;i++)
result[i][n] = lines[j++];
for (int i=n;i>=1;i--)
result[n][i] = lines[j++];
for (int i=n;i>=1;i--)
result[i][0] = lines[j++];
for (int i=0;i<=n;i++){
System.out.println(result[i]);
}
}
}
| [
"xiaoyan04@baidu.com"
] | xiaoyan04@baidu.com |
fd3d249b5aec02d39827a3cded670e234663657f | 1be216d8466377d3e4622bf648aeff4a62c2a186 | /prototype/Animal.java | 4ee711b149ed0cb65bccfae7f2b61a661bc4ca66 | [] | no_license | mgtlove/OOD-Design-Patterns | 80dd49211160275188cd8d3193f911b57bb01f53 | a45f877b47aef1d7768f0f7f5a8e72fd8bb64740 | refs/heads/master | 2020-07-17T18:53:13.190454 | 2019-09-09T04:55:43 | 2019-09-09T04:55:43 | 206,076,518 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 130 | java | package com.collabera.designpatterns.prototype;
public interface Animal extends Cloneable {
public Animal makeCopy();
}
| [
"noreply@github.com"
] | noreply@github.com |
dcfe4818180f7881c33f1c8aefcf65a27e3b6352 | b10ffd099e9d80306aa0b4d7b7e0c31fe5774250 | /Wypok1/src/com/tomcio/wypok/dao/VoteDAOImpl.java | a6f78409cfbe669b60f79471953e33aa684291c0 | [] | no_license | t-nosal/Wypok | 041789156c56c810fa5983159c5b5b7285d75580 | ef63ca4f5b1a8af07db1612295642e3caa26f545 | refs/heads/master | 2022-11-20T11:16:11.856500 | 2019-02-28T18:08:12 | 2019-02-28T18:08:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,203 | java | package com.tomcio.wypok.dao;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.dao.EmptyResultDataAccessException;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.core.namedparam.MapSqlParameterSource;
import org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate;
import org.springframework.jdbc.core.namedparam.SqlParameterSource;
import org.springframework.jdbc.support.GeneratedKeyHolder;
import org.springframework.jdbc.support.KeyHolder;
import com.tomcio.wypok.data.Vote;
import com.tomcio.wypok.data.VoteType;
import com.tomcio.wypok.util.ConnectionProvider;
public class VoteDAOImpl implements VoteDAO {
private static final String CREATE_VOTE = "INSERT INTO vote(discovery_id, user_id, date, type) "
+ "VALUES (:discovery_id, :user_id, :date, :type);";
private static final String READ_VOTE = "SELECT vote_id, discovery_id, user_id, date, type "
+ "FROM vote WHERE vote_id = :vote_id;";
private static final String READ_VOTE_BY_DISCOVERY_USE_IDS = "SELECT vote_id, discovery_id, user_id, date, type "
+ "FROM vote WHERE user_id = :user_id AND discovery_id = :discovery_id;";
private static final String UPDATE_VOTE = "UPDATE vote SET date=:date, type=:type WHERE vote_id=:vote_id;";
private NamedParameterJdbcTemplate template;
public VoteDAOImpl() {
template = new NamedParameterJdbcTemplate(ConnectionProvider.getDataSource());
}
@Override
public Vote create(Vote vote) {
Vote voteCopy = new Vote(vote);
Map<String, Object> paramMap = new HashMap<>();
paramMap.put("discovery_id", voteCopy.getDiscoveryId());
paramMap.put("user_id", voteCopy.getUserId());
paramMap.put("date", voteCopy.getDate());
paramMap.put("type", voteCopy.getVoteType().toString());
KeyHolder holder = new GeneratedKeyHolder();
SqlParameterSource paramSource = new MapSqlParameterSource(paramMap);
int update = template.update(CREATE_VOTE, paramSource, holder);
if (update > 0) {
voteCopy.setId((Long) holder.getKey());
}
return voteCopy;
}
@Override
public Vote read(Long primaryKey) {
SqlParameterSource paramSource = new MapSqlParameterSource("vote_id", primaryKey);
Vote vote = template.queryForObject(READ_VOTE, paramSource, new VoteRowMapper());
return vote;
}
@Override
public boolean update(Vote vote) {
boolean result = false;
Map<String, Object> paramMap = new HashMap<>();
paramMap.put("date", vote.getDate());
paramMap.put("type", vote.getVoteType().toString());
paramMap.put("vote_id", vote.getId());
SqlParameterSource paramSource = new MapSqlParameterSource(paramMap);
int update = template.update(UPDATE_VOTE, paramSource);
if (update > 0) {
result = true;
}
return result;
}
@Override
public boolean delete(Long key) {
// TODO Auto-generated method stub
return false;
}
@Override
public List<Vote> getAll() {
// TODO Auto-generated method stub
return null;
}
@Override
public Vote getVoteByUserIdDiscoveryId(long userId, long discoveryId) {
Map<String, Object> paramMap = new HashMap<>();
paramMap.put("user_id", userId);
paramMap.put("discovery_id", discoveryId);
SqlParameterSource paramSource = new MapSqlParameterSource(paramMap);
Vote vote = null;
try {
vote = template.queryForObject(READ_VOTE_BY_DISCOVERY_USE_IDS, paramSource, new VoteRowMapper());
} catch (EmptyResultDataAccessException e) {
// vote not found
}
return vote;
}
private class VoteRowMapper implements RowMapper<Vote> {
@Override
public Vote mapRow(ResultSet resultSet, int row) throws SQLException {
Vote vote = new Vote();
vote.setId(resultSet.getLong("vote_id"));
vote.setUserId(resultSet.getLong("user_id"));
vote.setDiscoveryId(resultSet.getLong("discovery_id"));
vote.setDate(resultSet.getTimestamp("date"));
vote.setVoteType(VoteType.valueOf(resultSet.getString("type")));
return vote;
}
}
}
| [
"HP@Sebix"
] | HP@Sebix |
dc06d46fb58d42e023778dc819fae2140e6c41e0 | 44522a681ecbf9f0c35fdc23449580919c3e7174 | /app/src/main/java/com/iuiu_library/huzykamz/iuiulibrary/Science.java | 784298983e244e393c06f3817f63ff806851ba6b | [] | no_license | huxaiphaer/IUIULibrary | 6aefd2f03c48775350d8a0807bb59196ee28671c | 32cd2aeb9b7a6799ab117ab3028c6e4ead320c3c | refs/heads/master | 2020-12-02T00:16:35.980666 | 2016-09-07T09:05:26 | 2016-09-07T09:05:26 | 67,540,357 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,282 | java | package com.iuiu_library.huzykamz.iuiulibrary;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.MenuItem;
import android.view.View;
import android.widget.AdapterView;
import android.widget.EditText;
import android.widget.GridView;
import android.widget.ProgressBar;
import android.widget.Toast;
import com.iuiu_library.huzykamz.iuiulibrary.adapters.ScienceAdapter;
import com.iuiu_library.huzykamz.iuiulibrary.json.AdministratorJson;
import com.iuiu_library.huzykamz.iuiulibrary.json.ScienceJson;
import com.iuiu_library.huzykamz.iuiulibrary.model.ScienceModel;
import java.io.InputStream;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
/**
* Created by HUZY_KAMZ on 5/25/2016.
*/
public class Science extends AppCompatActivity {
private static final String PHOTOS_BASE_URL =
"http://192.168.43.104/Library/FacultyPics/";
public static String KEY_BOOK_ID="BookId";
public static String KEY_BOOKNAME="District";
public static String KEY_DESCRIPTION="Area";
public static String KEY_AUTHOR="floors";
GridView gv;
ProgressBar pb;
List<MyTask> tasks;
List<ScienceModel> modelClassList;
EditText Sch;
ScienceAdapter adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.science);
Infor();
gv =(GridView) findViewById(R.id.gridView);
getSupportActionBar().setDisplayShowHomeEnabled(true);
android.support.v7.app.ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setTitle("Faculty Of Science Books ");
pb = (ProgressBar) findViewById(R.id.progressBar);
pb.setVisibility(View.INVISIBLE);
tasks = new ArrayList<>();
Fetch();
}
public void Infor() {
gv =(GridView) findViewById(R.id.gridView);
gv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
ScienceModel jhild = (ScienceModel) adapter.getItem(position);
Intent in = new Intent(getApplicationContext(), BookInfo.class);
in.putExtra(KEY_DESCRIPTION, jhild.getDescription());
in.putExtra(KEY_BOOK_ID, jhild.getBookId());
in.putExtra(KEY_AUTHOR, jhild.getAuthor());
in.putExtra(KEY_BOOKNAME, jhild.getBookname());
startActivity(in);
}
});
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
onBackPressed();
break;
}
return super.onOptionsItemSelected(item);
}
public void Fetch(){
Thread timerThread = new Thread(){
public void run(){
try{
if (isOnline()) {
requestData("http://192.168.43.104/Library/Faculty/fecth.php");
} else {
}
}catch(NullPointerException e){
e.printStackTrace();
Toast.makeText(Science.this, "Check your Connectivity....", Toast.LENGTH_LONG).show();
}
}
};
timerThread.start();
}
private void requestData(String uri) {
MyTask task = new MyTask();
task.execute(uri);
}
protected void updateDisplay() {
//Use LandAdapter to display data
adapter = new ScienceAdapter(this, R.layout.item_science, modelClassList);
gv =(GridView) findViewById(R.id.gridView);
gv.setAdapter(adapter);
}
protected boolean isOnline() {
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = cm.getActiveNetworkInfo();
if (netInfo != null && netInfo.isConnectedOrConnecting()) {
return true;
} else {
return false;
}
}
private class MyTask extends AsyncTask<String, String, List<ScienceModel>> {
@Override
protected void onPreExecute() {
if (tasks.size() == 0) {
pb.setVisibility(View.VISIBLE);
}
tasks.add(this);
}
@Override
protected List<ScienceModel> doInBackground(String... params) {
try {
String content = HttpManager.getData(params[0], "feeduser", "feedpassword");
modelClassList = ScienceJson.parseFeed(content);
//match pics
for (ScienceModel modelClass : modelClassList) {
try {
String imageUrl = PHOTOS_BASE_URL + modelClass.getPhoto();
InputStream in = (InputStream) new URL(imageUrl).getContent();
Bitmap bitmap = BitmapFactory.decodeStream(in);
modelClass.setBitmap(bitmap);
in.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
catch (NullPointerException e)
{
Toast.makeText(Science.this, "Check your Connection...", Toast.LENGTH_LONG).show();
}
return modelClassList;
}
@Override
protected void onPostExecute(List<ScienceModel> result) {
tasks.remove(this);
if (tasks.size() == 0) {
pb.setVisibility(View.INVISIBLE);
}
if (result == null) {
Toast.makeText(Science.this, "Data is not available", Toast.LENGTH_LONG).show();
return;
}
modelClassList = result;
updateDisplay();
}
}
}
| [
"huxaiphaeridris@gmail.com"
] | huxaiphaeridris@gmail.com |
5f27a70cf7e018ceec12f9ad0a943d6f6b36be45 | 7b1dd35fb1ef8062055334e2d899640daecd4735 | /src/main/java/org/wso2/carbon/connector/ldapConnector.java | e3e33534f71b16e0427a54c7f9076e43e8771fbd | [] | no_license | DImuthuUpe/ESB_LDAP_Connector | 002542e2308f3ba2e0ea2e97957d475a92668d9d | feda6be80d2ff8f337cdc17910f9dc09a51f8206 | refs/heads/master | 2021-01-19T17:13:36.947359 | 2014-04-20T07:26:38 | 2014-04-20T07:26:38 | 18,943,087 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,324 | java | /*
* Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.wso2.carbon.connector;
import org.apache.synapse.MessageContext;
import org.wso2.carbon.connector.core.*;
public class ldapConnector extends AbstractConnector implements Connector {
public void connect(MessageContext messageContext) throws ConnectException {
Object templateParam = getParameter(messageContext, "generated_param");
try {
System.out.println("Hello WORLD " + "ldapConnector !!!" + " : paramter :" + templateParam.toString());
/**
* Add your connector code here
*/
} catch (Exception e) {
throw new ConnectException(e);
}
}
}
| [
"you@example.com"
] | you@example.com |
bb662d5fa7147078d8be11c94b5f9ac8ac2760a9 | c179bf3dd458835c78e479a057221cffb65c917e | /src/com/Manage/service/SIMRechargeBillSer.java | c1951db76724ab2a96feb5f7c9361d5cffdfd36c | [] | no_license | 1Discount/ylcyManage | b49549b4586865d45cecb471e4637ac52b0d81c5 | 3b10a9e786b6908ab5ca57c8270f23239fa28656 | refs/heads/master | 2021-09-06T06:49:22.169585 | 2018-02-03T12:09:02 | 2018-02-03T12:09:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,326 | java | package com.Manage.service;
import java.util.List;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Service;
import com.Manage.common.exception.BmException;
import com.Manage.common.util.LogUtil;
import com.Manage.entity.OrdersInfo;
import com.Manage.entity.SIMRechargeBill;
import com.Manage.entity.common.SearchDTO;
@Service
public class SIMRechargeBillSer extends BaseService{
private Logger logger = LogUtil.getInstance(SIMRechargeBillSer.class);
/**
* ๅ้กต๏ผๆๅบ๏ผๆกไปถๆฅ่ฏข
*
* @param searchDTO
* @return
*/
public String getPageString(SearchDTO searchDTO) {
logger.debug("SIMๅกๅ
ๅผ่ฎฐๅฝๅ้กตๅผๅง");
try {
String jsonString = simRechargeBillDao.getPage(searchDTO);
logger.debug("ๅ้กตๆฅ่ฏข็ปๆ:" + jsonString);
return jsonString;
} catch (Exception e) {
logger.debug(e.getMessage());
// TODO: handle exception
e.printStackTrace();
return "";
}
}
/**
* ๅ้กต๏ผๆๅบ๏ผๆกไปถๆฅ่ฏข ๅทฒๅ ้ค่ฎฐๅฝ
*
* @param searchDTO
* @return
*/
public String getPageDeletedString(SearchDTO searchDTO) {
logger.debug("SIMๅกๅ
ๅผ่ฎฐๅฝๅ้กตๅผๅง");
try {
String jsonString = simRechargeBillDao.getPageDeleted(searchDTO);
logger.debug("ๅ้กตๆฅ่ฏข็ปๆ:" + jsonString);
return jsonString;
} catch (Exception e) {
logger.debug(e.getMessage());
// TODO: handle exception
e.printStackTrace();
return "";
}
}
/**
* ๆฅ่ฏขๅ
จ้จ่ฎฐๅฝๅ่กจ
* @param arg
* @return
*/
public List<SIMRechargeBill> getAll(String arg){
logger.debug("ๆฅ่ฏขๅ
จ้จSIMๅกๅ
ๅผ่ฎฐๅฝๅผๅง");
return simRechargeBillDao.getAll(arg);
}
/**
* ๆฅ่ฏขSIMๅกๅ
ๅผ่ฎฐๅฝ่ฏฆๆ
by ID
* @param id
* @return
*/
public SIMRechargeBill getById(String id){
logger.debug("ๆ นๆฎIDๆฅ่ฏขSIMๅกๅ
ๅผ่ฎฐๅฝ่ฏฆๆ
ๅผๅง");
return simRechargeBillDao.getById(id);
}
/**
* ๆๅ
ฅ
* @param info
* @return
*/
public boolean insertInfo(SIMRechargeBill info) {
logger.debug("ๅผๅงๆง่กๆๅ
ฅSIMๅกๅ
ๅผ่ฎฐๅฝไฟกๆฏ");
try {
if (simRechargeBillDao.insertInfo(info) > 0) {
logger.debug("ๆๅ
ฅSIMๅกๅ
ๅผ่ฎฐๅฝๆๅ");
return true;
} else {
logger.debug("ๆๅ
ฅSIMๅกๅ
ๅผ่ฎฐๅฝๅคฑ่ดฅ");
return false;
}
} catch (BmException e) {
// TODO: handle exception
logger.debug(e.getMessage());
e.printStackTrace();
}
return false;
}
/**
* ๆดๆฐ
* @param info
* @return
*/
public boolean updateInfo(SIMRechargeBill info) {
logger.debug("ๅผๅงๆง่กๆดๆฐSIMๅกๅ
ๅผ่ฎฐๅฝไฟกๆฏ");
try {
if (simRechargeBillDao.updateInfo(info) > 0) {
logger.debug("ๆดๆฐSIMๅกๅ
ๅผ่ฎฐๅฝๆๅ");
return true;
} else {
logger.debug("ๆดๆฐSIMๅกๅ
ๅผ่ฎฐๅฝๅคฑ่ดฅ");
return false;
}
} catch (BmException e) {
// TODO: handle exception
logger.debug(e.getMessage());
e.printStackTrace();
}
return false;
}
/**
* ๆดๆฐ sysStatus
* @param info
* @return
*/
public boolean updateInfoSysStatus(SIMRechargeBill info) {
logger.debug("ๅผๅงๆง่กๆดๆฐSIMๅกๅ
ๅผ่ฎฐๅฝไฟกๆฏsysStatus");
try {
if (simRechargeBillDao.updateInfoSysStatus(info) > 0) {
logger.debug("ๆดๆฐSIMๅกๅ
ๅผ่ฎฐๅฝsysStatusๆๅ");
return true;
} else {
logger.debug("ๆดๆฐSIMๅกๅ
ๅผ่ฎฐๅฝsysStatusๅคฑ่ดฅ");
return false;
}
} catch (BmException e) {
// TODO: handle exception
logger.debug(e.getMessage());
e.printStackTrace();
}
return false;
}
/**
* ็ป่ฎกๅ
ๅผSIMๅกๆฐ
* @param info
* @return
*/
public int countRechargedSim(SIMRechargeBill info){
try {
return simRechargeBillDao.countRechargedSim(info);
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
return 0;
}
/**
* ็ป่ฎกๅ
ๅผ็ฌๆฐ
* @param info
* @return
*/
public int countRechargedBill(SIMRechargeBill info){
try {
return simRechargeBillDao.countRechargedBill(info);
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
return 0;
}
/**
* ๅ่ฎกๅ
ๅผๆป้้ข
* @param info
* @return
*/
public double sumRechargedBill(SIMRechargeBill info){
try {
return simRechargeBillDao.sumRechargedBill(info);
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
return 0;
}
}
| [
"benben683280@126.com"
] | benben683280@126.com |
c72de8695f94bc889bcd1ea7875856adb72fc9e9 | e7d1c56a4fbb27b1e5abcc44001aae2dcd5f50d3 | /service/src/main/java/com/excilys/java/formation/service/UserService.java | 45a14af0d2551bebc401a2c3eba68e9c0f95983c | [] | no_license | Maissa2101/computer-database | 3ce01298beee9ca41403abdd5f98f5ba2df32840 | ee37bf40b514573a6c284df63d3c251bb8aaee40 | refs/heads/master | 2021-04-06T11:51:55.230578 | 2018-05-11T12:00:11 | 2018-05-11T12:00:11 | 124,560,496 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,390 | java | package com.excilys.java.formation.service;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.userdetails.User;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.excilys.java.formation.entities.Users;
import com.excilys.java.formation.persistence.UserDAO;
@Service
@Transactional
public class UserService implements UserDetailsService{
private UserDAO userDAO;
@Autowired
public UserService(UserDAO userDAO) {
this.userDAO = userDAO;
}
public void addUser(Users user) {
userDAO.addUser(user);
userDAO.addUserRole(user);
}
public void updateUser(Users user) {
userDAO.updateUser(user);
}
public Optional<Users> getUser(String pseudo) {
return userDAO.getUser(pseudo);
}
@Override
public UserDetails loadUserByUsername(String pseudo) throws UsernameNotFoundException {
Optional<Users> user = userDAO.getUser(pseudo);
Users users = user.get();
return User.withDefaultPasswordEncoder().username(pseudo).password(users.getPassword()).roles(userDAO.getUserRole(pseudo)).build();
}
}
| [
"mmoatemri@excilys.com"
] | mmoatemri@excilys.com |
a723b232bfbaf1b2d85c93957e7af404f992aa8b | 10989ceea1a71a8da766d2f02f421c5c51bcea02 | /target/struts2-mailreader/WEB-INF/src/java/com/mmdrama/web/actions/maintain/UpdateFormAction.java | 2c1534ad44909890385b413d5d2ba88bc7f40a27 | [
"Apache-2.0"
] | permissive | phyoaungsi/gomovie | a8bbb169f1cf1d3ac6a3a7e3986accd3c17d7ff0 | 07a810d082ebcfc4dac81a70fbdaf35c4a745e10 | refs/heads/master | 2020-06-01T06:19:33.317813 | 2013-05-15T16:17:57 | 2013-05-15T16:17:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,241 | java | package com.mmdrama.web.actions.maintain;
import java.util.Map;
import org.apache.struts2.convention.annotation.Action;
import org.apache.struts2.convention.annotation.Result;
import com.mmdrama.service.MovieService;
import com.mmdrama.web.actions.CommonAction;
import com.mmdrama.web.model.maintain.movie.MaintainMovie;
import com.opensymphony.xwork2.interceptor.ScopedModelDriven;
@Action
public class UpdateFormAction extends CommonAction implements ScopedModelDriven<MaintainMovie> {
/**
*
*/
private static final long serialVersionUID = 8913517218156131272L;
private String uuid;
private MaintainMovie model;
public String execute()
{
MovieService svc=new MovieService();
svc.getMovieById(this.getUuid());
return INPUT;
}
public String getUuid() {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public MaintainMovie getModel() {
// TODO Auto-generated method stub
return this.model;
}
public void setModel(MaintainMovie model) {
// TODO Auto-generated method stub
this.model=model;
}
public void setScopeKey(String key) {
// TODO Auto-generated method stub
}
public String getScopeKey() {
// TODO Auto-generated method stub
return null;
}
}
| [
"phyoaungsiz@gmail.com"
] | phyoaungsiz@gmail.com |
2ea62929fbb98438620979817321d357b51b8b75 | b4e09663281e0bb64ad1b2192ed97387d8711ee3 | /src/main/java/org/alfresco/extension/environment/validation/validators/database/org_postgresql_Driver.java | 661a669c0c803cda353c75738d783bda49a4f307 | [] | no_license | microstrat/alfresco-environment-validation | e2e2dc4246024a92062109228c3b4351442f4570 | e39e44c5e64b3500200f7992fca7c02b2df595d2 | refs/heads/master | 2021-05-24T12:41:52.229652 | 2015-02-20T10:02:43 | 2015-02-20T10:02:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 17,283 | java | /*
* Copyright (C) 2005-2011 Alfresco Software Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have received a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
*/
package org.alfresco.extension.environment.validation.validators.database;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.List;
import java.util.Map;
import org.alfresco.extension.environment.validation.AbstractValidator;
import org.alfresco.extension.environment.validation.TestResult;
import org.alfresco.extension.environment.validation.ValidatorCallback;
import org.alfresco.extension.util.ComparablePair;
/**
* This class defines the database validation rules specific to the PostgreSQL relational database and JDBC driver.
*
* @author Peter Monks (pmonks@alfresco.com)
*
*/
public class org_postgresql_Driver
extends AbstractDBSpecificValidator
{
// Supported PostgreSQL versions
private final static ComparablePair[] SUPPORTED_JDBC_DRIVER_VERSION = { new ComparablePair(new Integer(8), new Integer(4)) };
private final static String DEVELOPMENT_ONLY_POSTGRESQL_VERSIONS = "8.4";
private final static String SUPPORTED_POSTGRESQL_VERSION = DEVELOPMENT_ONLY_POSTGRESQL_VERSIONS + ".1";
// "More information" URIs
private final static String POSTGRESQL_URI_STR = "http://www.postgresql.org/download/";
private final static String[] POSTGRESQL_URI = { POSTGRESQL_URI_STR };
private final static String[] JDBC_URI = { "http://jdbc.postgresql.org/download.html" };
private final static String[] POSTGRESQL_CONFIGURING_CHARACTER_SETS_URI = { "http://www.postgresql.org/docs/" + DEVELOPMENT_ONLY_POSTGRESQL_VERSIONS + "/interactive/multibyte.html" };
private final static String[] POSTGRESQL_TYPE_CONVERSION_URI = { "http://www.postgresql.org/docs/" + DEVELOPMENT_ONLY_POSTGRESQL_VERSIONS + "/static/typeconv.html" };
private final static String[] ALFRESCO_SPM_AND_POSTGRESQL_URIS = { AbstractValidator.ALFRESCO_SUMMARY_SPM_URI_STR, POSTGRESQL_URI_STR };
/**
* @see org.alfresco.extension.environment.validation.validators.database.DBSpecificValidator#validate(org.alfresco.extension.environment.validation.ValidatorCallback, java.sql.Connection)
*/
public void validate(ValidatorCallback callback, Connection con)
{
setupConnection(con);
validateJdbcDriverVersion(callback, con, SUPPORTED_JDBC_DRIVER_VERSION, JDBC_URI);
validateDatabaseVersion(callback, con);
validateEncoding(callback, con);
validateIntToBoolCasts(callback, con);
}
private void setupConnection(final Connection con)
{
try
{
sql(con, "SET NAMES 'UTF8'"); // Force our connection to be UTF8 in all cases
}
catch (SQLException se)
{
// Ignore - we don't really care if these statements fail
}
}
private void validateDatabaseVersion(final ValidatorCallback callback, final Connection con)
{
startTest(callback, "PostgreSQL Version");
TestResult testResult = new TestResult();
try
{
Map row = singletonQuery(con, "SELECT VERSION() AS VERSION");
if (row != null)
{
String version = (String)row.get("VERSION");
if (version != null && version.trim().length() > 0)
{
version = parseVersion(version);
progress(callback, version);
if (version.equals(SUPPORTED_POSTGRESQL_VERSION))
{
testResult.resultType = TestResult.PASS;
}
else if (version.startsWith(DEVELOPMENT_ONLY_POSTGRESQL_VERSIONS))
{
testResult.resultType = TestResult.WARN;
testResult.errorMessage = "Unsupported PostgreSQL version";
testResult.ramification = "Alfresco may function sufficiently well for development purposes but must not be used for production";
testResult.remedy = "Install PostgreSQL " + SUPPORTED_POSTGRESQL_VERSION;
testResult.urisMoreInformation = ALFRESCO_SPM_AND_POSTGRESQL_URIS;
}
else
{
testResult.resultType = TestResult.FAIL;
testResult.errorMessage = "Unsupported PostgreSQL version";
testResult.ramification = "Alfresco will not function correctly on this version";
testResult.remedy = "Install PostgreSQL " + SUPPORTED_POSTGRESQL_VERSION;
testResult.urisMoreInformation = ALFRESCO_SPM_AND_POSTGRESQL_URIS;
}
}
else
{
progress(callback, "unknown");
testResult.resultType = TestResult.FAIL;
testResult.errorMessage = "Unable to determine PostgreSQL version";
testResult.ramification = "Alfresco may not function correctly";
testResult.remedy = "Manually validate that PostgreSQL " + SUPPORTED_POSTGRESQL_VERSION + " is installed";
}
}
else
{
progress(callback, "unknown");
testResult.resultType = TestResult.FAIL;
testResult.errorMessage = "Unable to determine PostgreSQL version";
testResult.ramification = "Alfresco may not function correctly";
testResult.remedy = "Manually validate that PostgreSQL " + SUPPORTED_POSTGRESQL_VERSION + " is installed";
}
}
catch (SQLException se)
{
progress(callback, "unknown");
testResult.resultType = TestResult.FAIL;
testResult.errorMessage = "Unable to determine PostgreSQL version";
testResult.ramification = "Alfresco may not function correctly";
testResult.remedy = "Manually validate that PostgreSQL " + SUPPORTED_POSTGRESQL_VERSION + " is installed";
testResult.rootCause = se;
}
endTest(callback, testResult);
}
/*
* PostgreSQL version strings are of the form:
*
* PostgreSQL 8.4.3 on i386-apple-darwin, compiled by GCC i686-apple-darwin8-gcc-4.0.1 (GCC) 4.0.1 (Apple Computer, Inc. build 5370), 32-bit
*/
private String parseVersion(final String version)
{
String result = version;
if (version.startsWith("PostgreSQL "))
{
int index = "PostgreSQL ".length();
char nextChar = version.charAt(index);
StringBuffer temp = new StringBuffer(5);
while (!Character.isWhitespace(nextChar))
{
temp.append(nextChar);
index++;
nextChar = version.charAt(index);
}
result = temp.toString();
}
return(result);
}
private final void validateEncoding(final ValidatorCallback callback, final Connection con)
{
validateEncoding(callback, con, "Client");
validateEncoding(callback, con, "Server");
}
private final void validateEncoding(final ValidatorCallback callback, final Connection con, final String whichEncoding)
{
startTest(callback, whichEncoding + " Encoding");
TestResult testResult = new TestResult();
String encodingVariable = whichEncoding.toUpperCase() + "_ENCODING";
try
{
Map row = singletonQuery(con, "SHOW " + encodingVariable);
String encoding = (String)row.get(encodingVariable);
if (encoding != null && encoding.trim().length() > 0)
{
progress(callback, encoding);
if (encoding.toLowerCase().equals("utf8"))
{
testResult.resultType = TestResult.PASS;
}
else
{
testResult.resultType = TestResult.FAIL;
testResult.errorMessage = whichEncoding + " character encoding must be 'utf8' but is not";
testResult.ramification = "Alfresco will not function correctly";
testResult.remedy = "Correct the PostgreSQL character set configuration and rerun this test";
testResult.urisMoreInformation = POSTGRESQL_CONFIGURING_CHARACTER_SETS_URI;
}
}
else
{
progress(callback, "unknown");
testResult.resultType = TestResult.WARN;
testResult.errorMessage = "Unable to determine " + whichEncoding + " character encoding";
testResult.ramification = "Alfresco may not function correctly";
testResult.remedy = "Manually execute the SQL statement 'SHOW " + encodingVariable + "';' " +
"and ensure that the values is 'utf8'";
}
}
catch (SQLException se)
{
progress(callback, "unknown");
testResult.resultType = TestResult.WARN;
testResult.errorMessage = "Unable to determine " + whichEncoding + " character encoding";
testResult.ramification = "Alfresco may not function correctly";
testResult.remedy = "Manually execute the SQL statement 'SHOW " + encodingVariable + ";' " +
"and ensure that the values is 'utf8'";
testResult.rootCause = se;
}
endTest(callback, testResult);
}
private final void validateIntToBoolCasts(final ValidatorCallback callback, final Connection con)
{
startTest(callback, "Int to Bool Casts");
TestResult testResult = new TestResult();
try
{
List resultSet = query(con, "SELECT DISTINCT c.castcontext AS TYPECASTTYPE\n" +
" FROM pg_cast c\n" +
" INNER JOIN pg_type src ON src.oid = c.castsource\n" +
" INNER JOIN pg_type tgt ON tgt.oid = c.casttarget\n" +
" WHERE src.typname LIKE 'int%' AND tgt.typname = 'bool'");
if (resultSet != null)
{
if (resultSet.size() > 0)
{
boolean allImplicit = true;
// Loop through the resultset and make sure all rows have the value 'i'
for (int i = 0; i < resultSet.size(); i++)
{
Map row = (Map)resultSet.get(i);
if (row == null)
{
allImplicit = false;
break;
}
else
{
String typeCastType = (String)row.get("TYPECASTTYPE");
if (typeCastType == null)
{
allImplicit = false;
break;
}
else
{
if (!typeCastType.equalsIgnoreCase("i"))
{
allImplicit = false;
break;
}
}
}
}
progress(callback, allImplicit ? "implicit" : "explicit");
if (allImplicit)
{
testResult.resultType = TestResult.PASS;
}
else
{
testResult.resultType = TestResult.FAIL;
testResult.errorMessage = "Implicit casts from int* to bool are not enabled";
testResult.ramification = "Alfresco will not function correctly";
testResult.remedy = "Correct the PostgreSQL implicit type conversion configuration and rerun this test";
testResult.urisMoreInformation = POSTGRESQL_TYPE_CONVERSION_URI;
}
}
else
{
progress(callback, "unknown");
testResult.resultType = TestResult.WARN;
testResult.errorMessage = "Unable to determine whether implicit casts from int* to bool are enabled";
testResult.ramification = "Alfresco may not function correctly";
testResult.remedy = "Manually execute the SQL statement '" +
"SELECT DISTINCT c.castcontext FROM pg_cast c INNER JOIN pg_type src ON src.oid = c.castsource INNER JOIN pg_type tgt ON tgt.oid = c.casttarget WHERE src.typname LIKE 'int%' AND tgt.typname = 'bool';' " +
"and ensure that all values are 'i' (implicit typecasts)";
testResult.urisMoreInformation = POSTGRESQL_TYPE_CONVERSION_URI;
}
}
else
{
progress(callback, "unknown");
testResult.resultType = TestResult.WARN;
testResult.errorMessage = "Unable to determine whether implicit casts from int* to bool are enabled";
testResult.ramification = "Alfresco may not function correctly";
testResult.remedy = "Manually execute the SQL statement '" +
"SELECT DISTINCT c.castcontext FROM pg_cast c INNER JOIN pg_type src ON src.oid = c.castsource INNER JOIN pg_type tgt ON tgt.oid = c.casttarget WHERE src.typname LIKE 'int%' AND tgt.typname = 'bool';' " +
"and ensure that all values are 'i' (implicit typecasts)";
testResult.urisMoreInformation = POSTGRESQL_TYPE_CONVERSION_URI;
}
}
catch (SQLException se)
{
progress(callback, "unknown");
testResult.resultType = TestResult.WARN;
testResult.errorMessage = "Unable to determine whether implicit typecasts are enabled";
testResult.ramification = "Alfresco may not function correctly";
testResult.remedy = "Manually execute the SQL statement '" +
"SELECT DISTINCT c.castcontext FROM pg_cast c INNER JOIN pg_type src ON src.oid = c.castsource INNER JOIN pg_type tgt ON tgt.oid = c.casttarget WHERE src.typname LIKE 'int%' AND tgt.typname = 'bool';' " +
"and ensure that all values are 'i' (implicit typecasts)";
testResult.urisMoreInformation = POSTGRESQL_TYPE_CONVERSION_URI;
testResult.rootCause = se;
}
endTest(callback, testResult);
}
}
| [
"pmonks@gmail.com"
] | pmonks@gmail.com |
4f1baaec2c661257bb41288696c7ea6cdde82fb7 | 770e9acc3aebc9a033da425b0824ac78ed2bd750 | /app/src/main/java/com/lh16808/app/lhys/activity/ShakeActivity.java | 4eb971bce39984fcab78bc7c07fe6c4855145827 | [] | no_license | zofnk/lhys | a4592bd0b1b40b35a82afce7f41f7cb9d63685b7 | 7432065450a213a244e86b77a193c6393d4db54b | refs/heads/master | 2020-06-17T19:36:28.658342 | 2016-12-26T09:32:39 | 2016-12-26T09:32:39 | 74,976,609 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,300 | java | package com.lh16808.app.lhys.activity;
import android.content.Context;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.os.Handler;
import android.os.Vibrator;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationSet;
import android.view.animation.TranslateAnimation;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;
import com.lh16808.app.lhys.R;
import com.lh16808.app.lhys.base.BaseActivity;
import com.lh16808.app.lhys.engine.ShakeListener;
import com.lh16808.app.lhys.marco.Constants;
import com.lh16808.app.lhys.utils.SharedPreUtils;
public class ShakeActivity extends BaseActivity {
ShakeListener mShakeListener = null;
Vibrator mVibrator;
private RelativeLayout mImgUp;
private RelativeLayout mImgDn;
private ImageView shakeBg;
private LinearLayout ll_num_bg;
private TextView tv_lottery_num1, tv_lottery_num2, tv_lottery_num3;
/**
* ๆฏๅฆ่ฝๅค ๆไธๆ
*/
private boolean isCanShake = false;
int num1;
int num2;
int num3;
public static void start(Context context) {
Intent starter = new Intent(context, ShakeActivity.class);
context.startActivity(starter);
}
@Override
protected void initLoadData() {
}
@Override
protected void initVariables() {
}
public void state(int visibie) {
shakeBg.setVisibility(visibie);
ll_num_bg.setVisibility(visibie);
}
@Override
protected void initViews(Bundle savedInstanceState) {
setContentView(R.layout.activity_shake);
setActionbar();
isCanShake = SharedPreUtils.getBoolean(Constants.CAN_SHAKE, true);
//drawerSet ();//่ฎพ็ฝฎ drawer็ๅฌ ๅๆข ๆ้ฎ็ๆนๅ
mVibrator = (Vibrator) getApplication().getSystemService(VIBRATOR_SERVICE);
mImgUp = (RelativeLayout) findViewById(R.id.shakeImgUp);
mImgDn = (RelativeLayout) findViewById(R.id.shakeImgDown);
shakeBg = (ImageView) findViewById(R.id.shakeBg);
ll_num_bg = (LinearLayout) findViewById(R.id.ll_num_bg);
tv_lottery_num1 = (TextView) findViewById(R.id.tv_lottery_num1);
tv_lottery_num2 = (TextView) findViewById(R.id.tv_lottery_num2);
tv_lottery_num3 = (TextView) findViewById(R.id.tv_lottery_num3);
shakeState(isCanShake);
mShakeListener = new ShakeListener(ShakeActivity.this);
mShakeListener.setOnShakeListener(new ShakeListener.OnShakeListener() {
public void onShake() {
if (isCanShake) {
isCanShake = false;
startAnim(); //ๅผๅง ๆไธๆๆๆๅจ็ป
mShakeListener.stop();
startVibrato(); //ๅผๅง ้ๅจ
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
playMusic(R.raw.shake_match);
shakeState(true);
state(View.VISIBLE);
SharedPreUtils.putString(Constants.SHAKE_RESULT, num1 + "," + num2 + "," + num3);
SharedPreUtils.putBoolean(Constants.CAN_SHAKE, false);
mVibrator.cancel();
mShakeListener.start();
}
}, 2000);
}
}
});
}
public void shakeState(boolean bo) {
if (bo) {
state(View.GONE);
num1 = ((int) (Math.random() * 49)) + 1;
num2 = ((int) (Math.random() * 49)) + 1;
num3 = ((int) (Math.random() * 49)) + 1;
} else {
String str[] = SharedPreUtils.getString(Constants.SHAKE_RESULT, "").split(",");
num1 = Integer.parseInt(str[0]);
num2 = Integer.parseInt(str[1]);
num3 = Integer.parseInt(str[2]);
state(View.VISIBLE);
}
tv_lottery_num1.setText("" + num1);
tv_lottery_num2.setText("" + num2);
tv_lottery_num3.setText("" + num3);
}
@Override
protected void loadData() {
}
private void setActionbar() {
// Toolbar toolbar = (Toolbar) findViewById(R.id.tool_bar);
// if (toolbar != null) {
// toolbar.setTitle("");
// }
// setSupportActionBar(toolbar);
TextView toolBarTitle = (TextView) findViewById(R.id.tool_bar_title);
if (toolBarTitle != null) {
toolBarTitle.setText("ๆๅฃนๆ");
}
findViewById(R.id.tv_share).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// MyDialog my = new MyDialog(ShakeActivity.this);
// my.show(getSupportFragmentManager(), null);
}
});
}
public void startAnim() { //ๅฎไนๆไธๆๅจ็ปๅจ็ป
shakeBg.setVisibility(View.GONE);
ll_num_bg.setVisibility(View.GONE);
AnimationSet animup = new AnimationSet(true);
TranslateAnimation mytranslateanimup0 = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, -0.5f);
mytranslateanimup0.setDuration(1000);
TranslateAnimation mytranslateanimup1 = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, +0.5f);
mytranslateanimup1.setDuration(1000);
mytranslateanimup1.setStartOffset(1000);
animup.addAnimation(mytranslateanimup0);
animup.addAnimation(mytranslateanimup1);
mImgUp.startAnimation(animup);
AnimationSet animdn = new AnimationSet(true);
TranslateAnimation mytranslateanimdn0 = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, +0.5f);
mytranslateanimdn0.setDuration(1000);
TranslateAnimation mytranslateanimdn1 = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, -0.5f);
mytranslateanimdn1.setDuration(1000);
mytranslateanimdn1.setStartOffset(1000);
animdn.addAnimation(mytranslateanimdn0);
animdn.addAnimation(mytranslateanimdn1);
mImgDn.startAnimation(animdn);
}
public void startVibrato() {
playMusic(R.raw.shake_sound_male);
//ๅฎไน้ๅจ
mVibrator.vibrate(new long[]{500, 200, 500, 200}, -1); //็ฌฌไธไธช๏ฝ๏ฝ้้ขๆฏ่ๅฅๆฐ็ป๏ผ ็ฌฌไบไธชๅๆฐๆฏ้ๅคๆฌกๆฐ๏ผ-1ไธบไธ้ๅค๏ผ้-1ไฟๆฅไปpattern็ๆๅฎไธๆ ๅผๅง้ๅค
}
public void playMusic(int res) {
MediaPlayer player = MediaPlayer.create(this, res);
player.setLooping(false);
player.start();
}
@Override
protected void onDestroy() {
super.onDestroy();
if (mShakeListener != null) {
mShakeListener.stop();
}
}
}
| [
"zofnk@vip.qq.com"
] | zofnk@vip.qq.com |
747a8cd64442f5f30bb34346c6f76e8c039c87cc | a33dc2720f1e56f054a57611f50358ef38345d2d | /bg-app/bg-oauth-center/bg-auth-server/src/main/java/com/quan/core/factory/AuthTokenFactory.java | 52dd268bd73f8105187c948b10f6c098f6e82233 | [] | no_license | zhengxingquan/design-vue-bg-admin | f71c2c792da01f3fa6d759aba104c0f27267134f | 5c2c3975bba7979a473a360d02031676a608d914 | refs/heads/main | 2023-04-20T00:40:17.957592 | 2021-05-06T12:08:19 | 2021-05-06T12:08:19 | 313,585,035 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,416 | java | package com.quan.core.factory;
import com.quan.core.constant.AuthConstant;
import com.quan.core.controller.request.token.query.*;
import com.quan.core.dto.token.*;
import javax.servlet.http.HttpServletRequest;
/**
* ็ณป็ป่ๅ่กจ ๅๅปบ่ฏทๆฑ็ฑป
*
* @author ${author}
* @email 956607644@qq.com
* @date 2021-01-05 17:50:17
*/
public final class AuthTokenFactory {
public static ClientTokenDTO newInstance(HttpServletRequest request) {
ClientTokenDTO clientToken = new ClientTokenDTO();
clientToken.setClientId(request.getHeader(AuthConstant.CLIENT_ID));
clientToken.setClientSecret(request.getHeader(AuthConstant.CLIENT_SECRET));
return clientToken;
}
public static UserPasswordTokenDTO newInstance(HttpServletRequest request, UserTokenRequest data) {
UserPasswordTokenDTO clientToken = (UserPasswordTokenDTO) newInstance(request);
clientToken.setUserName(data.getUserName());
clientToken.setPassword(data.getPassword());
return clientToken;
}
public static ValidCodeTokenDTO newInstance(HttpServletRequest request, ValidCodeTokenRequest data) {
ValidCodeTokenDTO clientToken = (ValidCodeTokenDTO) newInstance(request);
clientToken.setDeviceId(data.getDeviceId());
clientToken.setValidCode(data.getValidCode());
return clientToken;
}
public static RefreshUserTokenDTO newInstance(RefreshTokenRequest request) {
RefreshUserTokenDTO clientToken = new RefreshUserTokenDTO();
clientToken.setAccessToken(request.getAccessToken());
return clientToken;
}
public static RemoveUserTokenDTO newInstance(RemoveTokenRequest request) {
RemoveUserTokenDTO clientToken = new RemoveUserTokenDTO();
clientToken.setAccessToken(request.getAccessToken());
return clientToken;
}
public static QueryUserTokenDTO newInstance(QueryUserTokenRequest request) {
QueryUserTokenDTO clientToken = new QueryUserTokenDTO();
clientToken.setAccessToken(request.getAccessToken());
return clientToken;
}
public static QueryUserTokenPageDTO newInstance(QueryUserTokenPageRequest request) {
QueryUserTokenPageDTO clientToken = new QueryUserTokenPageDTO();
clientToken.setPageNumber(request.getPageNumber());
clientToken.setPageSize(request.getPageSize());
return clientToken;
}
}
| [
"zhengxingquan@cdyhsoft.com"
] | zhengxingquan@cdyhsoft.com |
468af72b70e558b2f30224d125dae304dd500cee | 770eb7e683866241804cb81f4b78aedb68573a74 | /learning/src/pattern/mediator/ConcreteColleague.java | e9f6042075937fcb6753e0d833e5c2a7623096f2 | [] | no_license | likeliu12/microservicesExample | a3fc124c5f49ea0fa4e73866060dbb636e6f8d31 | b474f68884ff54d7d275dbaf30825bcc462037e5 | refs/heads/master | 2022-12-18T07:31:23.150508 | 2020-09-16T19:17:45 | 2020-09-16T19:17:45 | 107,717,902 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 249 | java | package pattern.mediator;
public class ConcreteColleague extends Colleague {
public ConcreteColleague(Mediator m) {
super(m);
}
@Override
public void receive(String message) {
System.out.println("Colleague Received: " + message);
}
}
| [
"likeliu@example.com"
] | likeliu@example.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.