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
faa58d826ada5ba00ef2be4fee8b1c7ee7ae2253
32d312c4c25b0c35cbbf58d4c51b7738be516501
/teach-resource/src/main/java/cn/cqupt/teachresource/ueditor/upload/Uploader.java
3d9dec82226d59fcf28d6547727657220bfff6b5
[]
no_license
DotGeng/teaching_plat
973a35195b78dfc8a88b473f008af69ed410a2d6
d10499c9f5b999e9a5c6dafcac51e517d673fc22
refs/heads/master
2021-09-15T02:15:07.635918
2018-05-24T07:30:40
2018-05-24T07:30:40
110,221,320
1
0
null
null
null
null
UTF-8
Java
false
false
747
java
package cn.cqupt.teachresource.ueditor.upload; import cn.cqupt.teachresource.ueditor.define.State; import javax.servlet.http.HttpServletRequest; import java.util.Map; public class Uploader { private HttpServletRequest request = null; private Map<String, Object> conf = null; public Uploader(HttpServletRequest request, Map<String, Object> conf) { this.request = request; this.conf = conf; } public final State doExec() { String filedName = (String) this.conf.get("fieldName"); State state = null; if ("true".equals(this.conf.get("isBase64"))) { state = Base64Uploader.save(this.request.getParameter(filedName), this.conf); } else { state = BinaryUploader.save(this.request, this.conf); } return state; } }
[ "yukungeng@gmail.com" ]
yukungeng@gmail.com
a513c111666cc6fe8502dd8e160f13d6221ad402
a0b7b2564ce8c97c646e19928573214b2f048a6f
/spring-boot-ch-6/src/main/java/org/sangaizhi/springboot/ch6/servlet/MyAnnoServlet.java
b4200603ef21e6ea54927de901df496b8288e738
[]
no_license
sangaizhi/spring-boot
20ed05902c79c8bb3d5913cf1302dd2f00a36e24
27343fa10381e70744a7e90b8b7c92f7123ee71c
refs/heads/master
2021-01-25T08:13:48.830855
2017-07-26T14:37:28
2017-07-26T14:37:28
93,738,242
0
0
null
null
null
null
UTF-8
Java
false
false
879
java
package org.sangaizhi.springboot.ch6.servlet; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; /** * @author sangaizhi * @date 2017/6/9 */ @WebServlet(urlPatterns = "/myAnnoServlet/*", description = "这是一个自定义的Servlet") // 表示当前 bean 是一个 Servlet public class MyAnnoServlet extends HttpServlet{ @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { System.out.println("请求自定义的 MyAnnoServlet"); req.setAttribute("message","执行自定义 MyAnnoServlet"); req.getRequestDispatcher("/WEB-INF/view/myAnnoServlet.jsp").forward(req, resp); } }
[ "sangaizhi@163.com" ]
sangaizhi@163.com
6568a8f7eb6f84ad1243e031e53bb164c09a56f1
f12e293e7834b22beab2c17abfea338751c19422
/geometry/src/gr/cs/aueb/java/geometry/Rectangle.java
03400379a0e05fdfa65e99a6d40553a3988c8eba
[]
no_license
nick-nachos/gr.aueb.cs.java
470628f95e77180d88f0aeb5ff23e69831dc4706
2238732512d89ce76feb58d714678587f8fdc880
refs/heads/master
2016-09-06T12:58:30.723896
2015-05-23T20:24:16
2015-05-23T20:24:16
31,782,144
2
1
null
null
null
null
UTF-8
Java
false
false
568
java
package gr.cs.aueb.java.geometry; public final class Rectangle extends Shape { private double a; private double b; public double getA() { return a; } public void setA(double a) { this.a = a; } public double getB() { return b; } public void setB(double b) { this.b = b; } @Override public double getPerimeter() { return 2 * (this.getA() + this.getB()); } @Override public double getArea() { return this.getA() * this.getB(); } @Override public String toString() { return "a: " + this.getA() + " b: " + this.getB(); } }
[ "nick.nachos86@gmail.com" ]
nick.nachos86@gmail.com
b3c8fb42c40db7db587c85dd2c2d703f6cce77da
62867ca1e22ec3307ca6cb865ffe92fbffc976bb
/app/src/main/java/com/primus/lee/testchat/ClientConnection.java
19f424cfaa4290c1ccac76a1f747ed696e2edc08
[]
no_license
leekyounghoon/TestChat
c57c2fe81e291ad20945c23719fcb29c45a1705f
10e8a0476882f3b1574591854177303bbd765076
refs/heads/master
2021-01-19T13:02:43.170851
2015-08-26T10:10:18
2015-08-26T10:10:18
41,288,745
0
0
null
null
null
null
UTF-8
Java
false
false
4,171
java
package com.primus.lee.testchat; import com.primus.lee.testchat.data.Obj; import com.primus.lee.testchat.data.Protocol; import java.io.IOException; import java.net.InetSocketAddress; import java.net.Socket; import java.net.SocketTimeoutException; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.channels.SocketChannel; /** * Created by Lee on 2015-08-26. */ public class ClientConnection extends Thread{ private Socket msocket; //member private boolean mEnd = true; private SocketChannel mSC = null; public String m_ServerIP; public int m_ServerPort; public ClientConnection() { } public int Begin(String ip, int port){ InetSocketAddress address = new InetSocketAddress(ip, port); try { mSC = SocketChannel.open(address); } catch (IOException e) { e.printStackTrace(); return -1; } start(); return 1; } public void End() { mEnd = true; try { mSC.finishConnect(); mSC.close(); } catch (Exception e) { e.printStackTrace(); } } public void run() { // System.out.println("ClientConnection::run()"); mEnd = false; ByteBuffer bb = ByteBuffer.allocate(4096); bb.order(ByteOrder.LITTLE_ENDIAN); while (!mEnd) { try { if (mSC.read(bb) == -1) { break; } CheckPacket(mSC, bb); Thread.sleep(0,1); } catch ( SocketTimeoutException ste) { if( Thread.currentThread().isInterrupted() == true ){ ste.printStackTrace(); mEnd = true; } break; } catch (Exception e ) { e.printStackTrace(); break; } } try { mSC.close(); } catch (Exception e) { e.printStackTrace(); } bb.clear(); } /////////////////////////////// UTIL // Send public void Send(ByteBuffer data) { try { int s = mSC.write(data); } catch (Exception e) { e.printStackTrace(); this.End(); } } public void makePacket_Send(short PacketNum, Obj object) { // buffer loading ByteBuffer buf = ByteBuffer.allocate(1024); buf.clear(); buf.order(ByteOrder.LITTLE_ENDIAN); buf.putShort((short) 0); buf.putShort(PacketNum); buf.putInt(0); // serial // Context object.putbuf(buf); short len = (short) (buf.position()); buf.putShort(0, len); buf.flip(); Send(buf); } public void CheckPacket(SocketChannel sc, ByteBuffer bb) { bb.flip(); while (bb.remaining() > 2) { bb.mark(); short len = bb.getShort(); bb.reset(); if (bb.remaining() < len) { break; } byte[] data = new byte[len]; bb.get(data); OnRecv(sc, data); } bb.compact(); } public void OnRecv(SocketChannel sc, byte[] data) { ByteBuffer bb = ByteBuffer.wrap(data); bb.order(ByteOrder.LITTLE_ENDIAN); short len = bb.getShort(); short msg = bb.getShort(); int Serial = bb.getInt(); switch (msg) { // case TestProtocol.GC_LOGIN: case Protocol.SC_LOGIN: // Recv_MsgLogin(sc, bb); break; case Protocol.SC_MAKE_ROOM: // Recv_MsgMakeRoom( sc, bb); break; case Protocol.SC_JOIN_ROOM: // Recv_MsgJoinRoom( sc, bb); break; case Protocol.SC_LEAVE_ROOM: // Recv_MsgLeaveRoom( sc, bb); break; case Protocol.SC_START_ROOM: // Recv_MsgStartRoom( sc,bb); break; default: break; } } }
[ "leekh13@nate.com" ]
leekh13@nate.com
5f6ae982124599c7f2534874f0338bd7b10b93ef
d21a5bd3ee49e86634ab92de2250e4424830eac6
/roads/src/main/java/common/corpCode/dao/CorpCodeDao.java
ef9af1cddddc3e84d969bd6477a776049362f997
[]
no_license
ShinYoungJun/eseoul
bf9b192eb366ee7eb7ce46a796b7258e73284a54
a5baa8386d69efda1355161c197b55aa3a899e8c
refs/heads/master
2020-03-20T08:26:50.507910
2018-06-14T06:39:55
2018-06-14T06:39:55
137,309,100
0
0
null
null
null
null
UHC
Java
false
false
4,079
java
// 2009 Kim Yun Seo package main.java.common.corpCode.dao; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Types; import java.util.List; import javax.sql.DataSource; import main.java.admin.model.UserRegBean; import main.java.common.corpCode.model.CorpCodeBean; import main.java.common.dao.RoadsJdbcDaoSupport; import org.springframework.jdbc.core.SqlParameter; import org.springframework.jdbc.object.MappingSqlQuery; public class CorpCodeDao extends RoadsJdbcDaoSupport implements ICorpCodeDao{ private RetrieveUserInfoDetailQuery objUserInfoDetailQuery; protected void initDao() throws Exception { super.initDao(); objUserInfoDetailQuery = new RetrieveUserInfoDetailQuery(getDataSource()); } /** * 전달받은 USER_ID에 해당하는 USER_INFO을 조회해 리턴 * @param int seq 게시물 번호 * @return BoardBean 조회된 게시물 bean */ public UserRegBean getUserInfoDetail(String userId) { UserRegBean objUserRegBean = null; objUserRegBean = (UserRegBean) objUserInfoDetailQuery.findObject(userId); return objUserRegBean; } protected class RetrieveUserInfoDetailQuery extends MappingSqlQuery { protected RetrieveUserInfoDetailQuery(DataSource ds) { super(ds, getMessageSourceAccessor().getMessage("Querys.corpCode.selectbyUserId_Info")); declareParameter(new SqlParameter(Types.VARCHAR)); } protected Object mapRow(ResultSet rs, int rownum) throws SQLException { UserRegBean objUserRegBean = new UserRegBean(); objUserRegBean.setUSER_ID(rs.getString("USER_ID")); objUserRegBean.setPW(rs.getString("PASS_WORD")); objUserRegBean.setNAME(rs.getString("NAME")); objUserRegBean.setSIGU_CD(rs.getString("ORG_CD")); objUserRegBean.setGU_NM(rs.getString("GU_NM")); objUserRegBean.setDEPT_CD(rs.getString("DEPT_CD")); objUserRegBean.setSECTION(rs.getString("SECTION")); objUserRegBean.setTEL(rs.getString("TEL")); objUserRegBean.setHP(rs.getString("HP")); objUserRegBean.setTEL_EXT(rs.getString("TEL_EXT")); objUserRegBean.setEMAIL(rs.getString("EMAIL")); objUserRegBean.setIP(rs.getString("IP")); objUserRegBean.setPOSITION(rs.getString("POSITION")); objUserRegBean.setPW_DATE(rs.getString("PW_DATE")); objUserRegBean.setPW_NUM(rs.getInt("PW_NUM")); objUserRegBean.setERROR_NUM(rs.getInt("ERROR_NUM")); objUserRegBean.setREQUEST_DATE(rs.getString("REQUEST_DATE")); objUserRegBean.setAPPROVAL_DATE(rs.getString("APPROVAL_DATE")); objUserRegBean.setREG_DATE(rs.getString("REG_DATE")); objUserRegBean.setUP_DATE(rs.getString("UP_DATE")); objUserRegBean.setGU_CD(rs.getString("GU_CD")); return objUserRegBean; } } public List executeCorpCodeList(String strCorpNm, String guCd) { try{ CorpCode corpCode = new CorpCode(getDataSource()); Object[] values = { "%" + strCorpNm + "%" , guCd }; return corpCode.execute(values); } catch (Exception e) { System.out.println(e.toString()); e.printStackTrace(); return null; } } protected class CorpCode extends MappingSqlQuery { protected CorpCode(DataSource ds) { super(ds, getMessageSourceAccessor().getMessage("Querys.corpCode.CorpCode")); declareParameter(new SqlParameter(Types.VARCHAR)); declareParameter(new SqlParameter(Types.VARCHAR)); } protected Object mapRow(ResultSet rs, int rownum) throws SQLException { CorpCodeBean Bean = new CorpCodeBean(); Bean.setRN(rs.getString("RN")); Bean.setOFFICE_NM(rs.getString("OFFICE_NM")); Bean.setOFFICE_CD(rs.getString("OFFICE_CD")); Bean.setJIJUM_NM(rs.getString("JIJUM_NM")); Bean.setJIJUM_CD(rs.getString("JIJUM_CD")); Bean.setJIJUM_CK(rs.getString("JIJUM_CK")); Bean.setGU_CD(rs.getString("GU_CD")); return Bean; } } }
[ "mihong@KSICSAUP03" ]
mihong@KSICSAUP03
3a3a8259fd7743e7a9e7232193ca8f24d5dc4010
deb7fe94bf3ea0bbddcdb7ccec60522d23ae5a78
/src/main/java/question/Ch05_Bit_Manipulation/Q5_02_Binary_to_String/Question.java
a079ec4b3ba3f47146391e9d9d6a2855dd20a28c
[]
no_license
jadefromkorea/algorithm
86757905ca760269d0643d618996b182fe447d46
51a4e3d1414d5811ef23ab4be7a1601df0f1e47c
refs/heads/master
2022-12-28T19:14:22.172849
2020-10-18T08:53:22
2020-10-18T08:53:22
305,060,062
0
0
null
null
null
null
UTF-8
Java
false
false
1,406
java
package question.Ch05_Bit_Manipulation.Q5_02_Binary_to_String; public class Question { public static String printBinary(double num) { if (num >= 1 || num <= 0) { return "ERROR"; } StringBuilder binary = new StringBuilder(); binary.append("."); while (num > 0) { /* Setting a limit on length: 32 characters */ if (binary.length() > 32) { return "ERROR"; } double r = num * 2; if (r >= 1) { binary.append(1); num = r - 1; } else { binary.append(0); num = r; } } return binary.toString(); } public static String printBinary2(double num) { if (num >= 1 || num <= 0) { return "ERROR"; } StringBuilder binary = new StringBuilder(); double frac = 0.5; binary.append("."); while (num > 0) { /* Setting a limit on length: 32 characters */ if (binary.length() >= 32) { return "ERROR"; } if (num >= frac) { binary.append(1); num -= frac; } else { binary.append(0); } frac /= 2; } return binary.toString(); } public static void main(String[] args) { String bs = printBinary(.125); System.out.println(bs); for (int i = 0; i < 1000; i++) { double num = i / 1000.0; String binary = printBinary(num); String binary2 = printBinary2(num); if (!binary.equals("ERROR") || !binary2.equals("ERROR")) { System.out.println(num + " : " + binary + " " + binary2); } } } }
[ "jadefromkorea@gmail.com" ]
jadefromkorea@gmail.com
75c5fec8da499a1e2c4679a134aaf9c52e688438
01e1d707c2faa436dbd467811847480c10009f93
/j2e-chapter-4/j2e-spring-data-jpa/src/main/java/com/woniuxy/j2e/springdata/Application.java
316730edfe94a9f157bef53158b7cbeb1732ebf5
[ "Apache-2.0" ]
permissive
TeacherChen1990/JavaEE-EFD
2c1c2bed9e135e4e6393df6a24dced78494ec717
74282f0b5882ae108ae2d96f3b9aed5bbf3fe6be
refs/heads/master
2022-10-24T08:11:29.290247
2020-06-14T09:26:49
2020-06-14T09:26:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,815
java
package com.woniuxy.j2e.springdata; import javax.sql.DataSource; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.jpa.repository.config.EnableJpaRepositories; import org.springframework.jdbc.datasource.DriverManagerDataSource; import org.springframework.orm.jpa.JpaTransactionManager; import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean; import org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter; import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.annotation.EnableTransactionManagement; @Configuration @EnableJpaRepositories @EnableTransactionManagement public class Application { @Bean public DataSource dataSource() { DriverManagerDataSource dataSource=new DriverManagerDataSource(); dataSource.setUrl("jdbc:mysql://localhost:3306/jpa"); dataSource.setDriverClassName("com.mysql.jdbc.Driver"); dataSource.setUsername("root"); dataSource.setPassword("123456"); return dataSource; } @Bean public LocalContainerEntityManagerFactoryBean entityManagerFactory() { HibernateJpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter(); vendorAdapter.setGenerateDdl(true); vendorAdapter.setShowSql(true); LocalContainerEntityManagerFactoryBean factory = new LocalContainerEntityManagerFactoryBean(); factory.setJpaVendorAdapter(vendorAdapter); factory.setPackagesToScan("com.woniuxy.j2e.springdata.entity"); factory.setDataSource(dataSource()); return factory; } @Bean public PlatformTransactionManager transactionManager() { JpaTransactionManager txManager = new JpaTransactionManager(); txManager.setEntityManagerFactory(entityManagerFactory().getObject()); return txManager; } }
[ "137273278@qq.com" ]
137273278@qq.com
261cdbc420acceb70f166cda5007fcf19dcf4c56
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/22/22_8a8ecc21dbf46526aa2d4fc0f3922c0769aba651/BoardPage/22_8a8ecc21dbf46526aa2d4fc0f3922c0769aba651_BoardPage_s.java
f3c3ba4e11e3875239e7bb30fce1d1663a3bd105
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
9,047
java
/* This code is part of Freenet. It is distributed under the GNU General * Public License, version 2 (or at your option any later version). See * http://www.gnu.org/ for further details of the GPL. */ package plugins.Freetalk.ui.web; import java.text.DateFormat; import plugins.Freetalk.Board; import plugins.Freetalk.FTOwnIdentity; import plugins.Freetalk.Freetalk; import plugins.Freetalk.Message; import plugins.Freetalk.SubscribedBoard; import plugins.Freetalk.SubscribedBoard.BoardReplyLink; import plugins.Freetalk.SubscribedBoard.BoardThreadLink; import plugins.Freetalk.WoT.WoTIdentity; import plugins.Freetalk.WoT.WoTOwnIdentity; import plugins.Freetalk.exceptions.MessageNotFetchedException; import plugins.Freetalk.exceptions.NoSuchBoardException; import plugins.Freetalk.exceptions.NotInTrustTreeException; import freenet.l10n.BaseL10n; import freenet.support.HTMLNode; import freenet.support.Logger; import freenet.support.api.HTTPRequest; /** * Displays the content messages of a subscribed board. * * @author xor (xor@freenetproject.org) */ public final class BoardPage extends WebPageImpl { private final SubscribedBoard mBoard; private final boolean mMarkAllThreadsAsRead; public BoardPage(WebInterface myWebInterface, FTOwnIdentity viewer, HTTPRequest request, BaseL10n _baseL10n) throws NoSuchBoardException { super(myWebInterface, viewer, request, _baseL10n); mBoard = mFreetalk.getMessageManager().getSubscription(viewer, request.getParam("name")); mMarkAllThreadsAsRead = mRequest.isPartSet("MarkAllThreadsAsRead"); } public final void make() { makeBreadcrumbs(); HTMLNode threadsBox = addContentBox(l10n().getString("BoardPage.Threads.Header", "boardname" , mBoard.getName())); // Button for creating a new thread HTMLNode newThreadForm = addFormChild(threadsBox, Freetalk.PLUGIN_URI + "/NewThread", "NewThreadPage"); newThreadForm.addChild("input", new String[] { "type", "name", "value" }, new String[] { "hidden", "OwnIdentityID", mOwnIdentity.getID() }); newThreadForm.addChild("input", new String[] { "type", "name", "value" }, new String[] { "hidden", "BoardName", mBoard.getName() }); newThreadForm.addChild("input", new String[] { "type", "name", "value" }, new String[] { "submit", "submit", l10n().getString("BoardPage.CreateNewThreadButton") }); // Button to mark all threads read HTMLNode span = threadsBox.addChild("span", "style", "float:right"); HTMLNode markAllAsReadButton = addFormChild(span, getURI(mBoard.getName()), "BoardPage"); markAllAsReadButton.addChild("input", new String[] {"type", "name", "value"}, new String[] {"hidden", "OwnIdentityID", mOwnIdentity.getID()}); markAllAsReadButton.addChild("input", new String[] {"type", "name", "value"}, new String[] {"hidden", "name", mBoard.getName()}); markAllAsReadButton.addChild("input", new String[] {"type", "name", "value"}, new String[] {"hidden", "MarkAllThreadsAsRead", "true"}); markAllAsReadButton.addChild("input", new String[] {"type", "name", "value"}, new String[] {"submit", "submit", l10n().getString("BoardPage.MarkAllThreadsAsReadButton") }); // Threads table HTMLNode threadsTable = threadsBox.addChild("table", new String[] { "border", "width" }, new String[] { "0", "100%" }); // Tell the browser the table columns and their size HTMLNode colgroup = threadsTable.addChild("colgroup"); colgroup.addChild("col", "width", "100%"); // Title, should use as much space as possible, the other columns should have minimal size colgroup.addChild("col"); // Author colgroup.addChild("col"); // Trust colgroup.addChild("col"); // Date colgroup.addChild("col"); // Replies HTMLNode row = threadsTable.addChild("thead"); row.addChild("th", l10n().getString("BoardPage.ThreadTableHeader.Title")); row.addChild("th", l10n().getString("BoardPage.ThreadTableHeader.Author")); row.addChild("th", l10n().getString("BoardPage.ThreadTableHeader.Trust")); row.addChild("th", l10n().getString("BoardPage.ThreadTableHeader.Date")); row.addChild("th", l10n().getString("BoardPage.ThreadTableHeader.Replies")); DateFormat dateFormat = DateFormat.getInstance(); HTMLNode table = threadsTable.addChild("tbody"); synchronized(mBoard) { for(BoardThreadLink threadReference : mBoard.getThreads()) { Message thread; String threadTitle; String authorText; String authorScore; // mark thread read if requested ... if (mMarkAllThreadsAsRead) { markThreadRead(threadReference); } try { thread = threadReference.getMessage(); threadTitle = thread.getTitle(); authorText = thread.getAuthor().getShortestUniqueName(30); try { // TODO: Get rid of the cast somehow, we should maybe call this WoTBoardPage :| authorScore = Integer.toString(((WoTOwnIdentity)mOwnIdentity).getScoreFor((WoTIdentity)thread.getAuthor())); } catch(NotInTrustTreeException e) { authorScore = "null"; // FIXME: Decide about this we should display something better } catch(Exception e) { Logger.error(this, "getScoreFor() failed", e); authorScore = "UNKNOWN"; } } catch(MessageNotFetchedException e) { thread = null; threadTitle = "UNKNOWN"; // FIXME: The author can be reconstructed from the thread id because it contains the id of the author. We just need to figure out // what the proper place for a function "getIdentityIDFromThreadID" is and whether I have already written one which can do that, and if // yes, where it is. authorText = "UNKNOWN"; authorScore = "UNKNOWN"; // The thread was not downloaded yet, we use the title of it's first reply as it's title. for(BoardReplyLink messageRef : mBoard.getAllThreadReplies(threadReference.getThreadID(), true)) { try { threadTitle = messageRef.getMessage().getTitle(); } catch(MessageNotFetchedException e1) { throw new RuntimeException(e1); // Should not happen: BoardReplyLink objects are only created if a message was fetched already. } break; } } row = table.addChild("tr"); threadTitle = maxLength(threadTitle, 70); // TODO: Adjust HTMLNode titleCell = row.addChild("td", new String[] { "align" }, new String[] { "left" }); if(threadReference.wasThreadRead() == false) titleCell = titleCell.addChild("b"); titleCell.addChild(new HTMLNode("a", "href", ThreadPage.getURI(mBoard, threadReference), threadTitle)); /* Author */ row.addChild("td", new String[] { "align" }, new String[] { "left" }, authorText); /* Trust */ row.addChild("td", new String[] { "align" }, new String[] { "left" }, authorScore); /* Date of last reply */ row.addChild("td", new String[] { "align" , "style" }, new String[] { "center" , "white-space:nowrap;"}, dateFormat.format(threadReference.getLastReplyDate())); /* Reply count */ row.addChild("td", new String[] { "align" }, new String[] { "center" }, Integer.toString(mBoard.threadReplyCount(threadReference.getThreadID()))); } } } /** * @param threadReference */ private void markThreadRead(BoardThreadLink threadReference) { // maybe mark thread and top level message read boolean doStore = false; if (!threadReference.wasThreadRead()) { threadReference.markThreadAsRead(); doStore = true; } if (!threadReference.wasRead()) { threadReference.markAsRead(); doStore = true; } if (doStore) { threadReference.storeAndCommit(); } // mark all thread replies as read for(BoardReplyLink reference : mBoard.getAllThreadReplies(threadReference.getThreadID(), true)) { if(!reference.wasRead()) { reference.markAsRead(); reference.storeAndCommit(); } } } private void makeBreadcrumbs() { BreadcrumbTrail trail = new BreadcrumbTrail(l10n()); Welcome.addBreadcrumb(trail); BoardsPage.addBreadcrumb(trail); BoardPage.addBreadcrumb(trail, mBoard); mContentNode.addChild(trail.getHTMLNode()); } public static void addBreadcrumb(BreadcrumbTrail trail, Board board) { trail.addBreadcrumbInfo(board.getName(), getURI(board)); } public static void addBreadcrumb(BreadcrumbTrail trail, String boardName) { trail.addBreadcrumbInfo(boardName, getURI(boardName)); } public static String getURI(Board board) { return getURI(board.getName()); } public static String getURI(String boardName) { return Freetalk.PLUGIN_URI + "/showBoard?name=" + boardName; } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
8cf2714a4caec576fc2da79ed96b2f2b7f37983e
3dc9e630668bf574cc029d1390122f70ce73c97e
/src/androidTest/java/com/openclassrooms/magicgithub/ui/user_list/ListUserActivityTest.java
4872b46fd93ed4399f0185d5f673ba7e7605ecec
[]
no_license
krazzbeluh/MagicGithub
faffcc4e04e13ebd14ca4431ba7229efb1bb5010
a28dcc25934d7db1ce4f7c010a180f213596ec02
refs/heads/master
2021-01-06T17:06:00.283164
2020-02-18T16:26:56
2020-02-18T16:26:56
241,409,812
0
0
null
null
null
null
UTF-8
Java
false
false
525
java
package com.openclassrooms.magicgithub.ui.user_list; import androidx.test.filters.LargeTest; import androidx.test.rule.ActivityTestRule; import androidx.test.runner.AndroidJUnit4; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; @LargeTest @RunWith(AndroidJUnit4.class) public class ListUserActivityTest { @Rule public ActivityTestRule<ListUserActivity> mActivityTestRule = new ActivityTestRule<>(ListUserActivity.class); @Test public void listUserActivityTest() { } }
[ "paulleclerc@icloud.com" ]
paulleclerc@icloud.com
b730ac1074f83c13ab8dd01a184b77f0d71e8049
3a2e54cc7b06d18ed4da8d32393c73e4494987e5
/app/src/main/java/com/example/alc/ActivityC.java
6c42aee1f5218c4a9a66d7ce34ddce7a52c90ba1
[]
no_license
AliRadwan/ALC
c960312d6cd913c6ee20966c07f57226016eb377
642c40f5b9d1a59b4d5b541a1ff54c35a882ecc9
refs/heads/master
2020-06-19T15:52:33.014036
2019-07-13T22:39:24
2019-07-13T22:39:24
196,763,999
0
0
null
null
null
null
UTF-8
Java
false
false
368
java
package com.example.alc; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity; import static com.example.alc.R.layout.activity_c; public class ActivityC extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(activity_c); } }
[ "aliradwan116@yahoo.com" ]
aliradwan116@yahoo.com
3b851268396be5e7fb24805f882521396e2e7d92
aa2205a7590f825b813461514f062e8a08ee11a4
/Code/IdentifierStyles/src/DS/IdentifierDS.java
c99ac35ac093417ad6555f25445cc3d3e337caa4
[]
no_license
APIDocEnrich/IdentifierStyleAnalyses
b90aca2814adad359bc8a6f08e2312a03ac778fd
f9951e71bf9429ccb54b7ce4c31611c46a0a4a04
refs/heads/main
2023-04-22T08:28:57.734299
2021-05-12T01:56:49
2021-05-12T01:56:49
366,400,317
0
0
null
null
null
null
UTF-8
Java
false
false
2,162
java
package DS; public class IdentifierDS { String classpar; String methodpar; String name; String type; String defaultvalue; int location; public String getClasspar() { return classpar; } public void setClasspar(String classpar) { this.classpar = classpar; } public String getMethodpar() { return methodpar; } public void setMethodpar(String methodpar) { this.methodpar = methodpar; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getType() { return type; } public void setType(String type) { this.type = type; } public int getLocation() { return location; } public void setLocation(int location) { this.location = location; } public String getDefaultvalue() { return defaultvalue; } public void setDefaultvalue(String defaultvalue) { this.defaultvalue = defaultvalue; } public IdentifierDS(String classpar, String methodpar, String name, String type, String defaultvalue,int location) { super(); this.classpar = classpar; this.methodpar = methodpar; this.name = name; this.type = type; this.defaultvalue=defaultvalue; this.location = location; } public String toString() { if(type.contains(",")) type=type.replace(",", ""); if(defaultvalue.contains(",")) defaultvalue=defaultvalue.replace(",", ""); if(name.contains(";")) name=name.replace(";", ""); if(name.contains("\n")) name=name.replace("\n", ""); if(name.contains("\r")) name=name.replace("\r", ""); if(defaultvalue.contains("\n")) defaultvalue=defaultvalue.replace("\n", " "); if(defaultvalue.contains("\r")) defaultvalue=defaultvalue.replace("\r", " "); defaultvalue=defaultvalue.replaceAll(" +", " "); if(classpar.isEmpty()) classpar=" "; if(methodpar.isEmpty()) methodpar=" "; if(name.isEmpty()) name=" "; if(type.isEmpty()) type=" "; if(defaultvalue.isEmpty()) defaultvalue=" "; String result=classpar+","+methodpar+","+name+","+type+","+defaultvalue+","+location; return result; } }
[ "noreply@github.com" ]
noreply@github.com
c2a82d72b51ce0d2bf99afef72b6c343d7fd329a
7031c3a7555bb7481e30aeae45ca506763c6401f
/androidmvc/app/src/main/java/example/com/android_mvc/controller/day_controller/day_block.java
856e0830dd1dca690fbc3e3a682d36875fc5e0c6
[]
no_license
AmoteChen/Coder_calender
09533eb6a7a4d850bac326de766275bf20aa2c32
4dd9f3d6d77d00d05012596d8f771744b1ac781a
refs/heads/master
2020-04-11T06:43:27.136137
2018-12-12T21:43:00
2018-12-12T21:43:00
161,589,461
1
0
null
null
null
null
UTF-8
Java
false
false
6,525
java
package example.com.android_mvc.controller.day_controller; import android.annotation.SuppressLint; import android.content.Context; import android.content.Intent; import android.content.res.TypedArray; import android.graphics.Color; import android.support.annotation.Nullable; import android.support.v7.app.AppCompatActivity; import android.util.AttributeSet; import android.view.LayoutInflater; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.LinearLayout; import android.widget.TextView; import java.util.Calendar; import example.com.android_mvc.Model.RecordDAO; import example.com.android_mvc.R; import example.com.android_mvc.Viewer.Main_Viewer; /** * Created by ChenSiyuan on 2018/11/26. */ public class day_block extends LinearLayout{ public RecordDAO dao; private View layout_main; private Button button; private EditText target_text; private TextView finish_text; private LinearLayout top_layout; private Button sync; private TypedArray typedArray; private String month_date; private String month; private int day_index; private Context context; public day_block(Context context){ this(context,null); } public day_block(Context context,@Nullable AttributeSet attrs){ this(context,attrs,-1); } @SuppressLint("ResourceType") public day_block(Context context, @Nullable AttributeSet attrs, int defStyleAttr){ super(context,attrs,defStyleAttr); this.context=context; LayoutInflater main = LayoutInflater.from(context); layout_main = main.inflate(R.layout.content_main,null); Calendar calendar = Calendar.getInstance(); LayoutInflater.from(getContext()).inflate(R.layout.day_block,this); typedArray=context.obtainStyledAttributes(attrs,R.styleable.day_block); init(); button.setTextColor(typedArray.getColor(R.styleable.day_block_text_color, Color.parseColor("#000000"))); button.setText(typedArray.getString(R.styleable.day_block_month_date),null); month_date = typedArray.getString(R.styleable.day_block_month_date); month = typedArray.getString(R.styleable.day_block_month); if (calendar.get(Calendar.YEAR)==2018){ day_index=Integer.parseInt("2018"+month+month_date); } if(month.equals("1")){ day_index=Integer.parseInt("2019"+month+month_date); } dao = new RecordDAO(context); int[]temp = dao.getRecordByDay(day_index); if(temp[1]!=0){ if(dao.getRankByDay(day_index)==0&& Main_Viewer.getStyle_num()==0){ button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton_org1_1080p)); } else if (dao.getRankByDay(day_index)==1&& Main_Viewer.getStyle_num()==0){ button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton_org2_1080p)); } else if (dao.getRankByDay(day_index)==2&& Main_Viewer.getStyle_num()==0){ button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton_org3_1080p)); } else if (dao.getRankByDay(day_index)==3&& Main_Viewer.getStyle_num()==0){ button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton_org4_1080p)); } else if (dao.getRankByDay(day_index)==4&& Main_Viewer.getStyle_num()==0){ button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton_org5_1080p)); } if(dao.getRankByDay(day_index)==0&& Main_Viewer.getStyle_num()==1){ button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton1_blue_1080p)); } else if (dao.getRankByDay(day_index)==1&& Main_Viewer.getStyle_num()==1){ button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton2_blue_1080p)); } else if (dao.getRankByDay(day_index)==2&& Main_Viewer.getStyle_num()==1){ button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton3_blue_1080p)); } else if (dao.getRankByDay(day_index)==3&& Main_Viewer.getStyle_num()==1){ button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton4_blue_1080p)); } else if (dao.getRankByDay(day_index)==4&& Main_Viewer.getStyle_num()==1){ button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton5_blue_1080p)); } } else { button.setBackgroundResource(typedArray.getResourceId(R.styleable.day_block_back_color, R.drawable.daybutton_org1_1080p)); } setListener(); } private void init(){ button=findViewById(R.id.day_back); } private void setListener(){ button.setOnClickListener(new QueryListener(context)); } class InsertListener extends AppCompatActivity implements OnClickListener{ private Context context; public InsertListener(Context context){ this.context=context; } @Override public void onClick(View v) { } } class QueryListener extends AppCompatActivity implements OnClickListener { private Context context; public QueryListener(Context context){ this.context=context; } @Override public void onClick(View v) { int date = day_index; int[] list = dao.getRecordByDay(date); if(list == null){} else { Intent QueryIntent= new Intent("com.example.broadcast.UI_CHANGE"); QueryIntent.putExtra("date",day_index); QueryIntent.putExtra("current",list[0]); QueryIntent.putExtra("target",list[1]); context.sendBroadcast(QueryIntent); } } } class DeleteListener implements OnClickListener{ @Override public void onClick(View v) { int date = day_index; dao.delete(date); } } }
[ "948167893@qq.com" ]
948167893@qq.com
f58e409bb2ddd2866c665b2f334fbbcf89a66d71
eb5d4d8fbb13ea8b59ffa5fc3ce3095a57c89e68
/src/com/ss/reminder/server/SendEmailTask.java
4fcac10a90b8d34cb06cbf4ac154a4aa7dd997a9
[]
no_license
ssinica/ssreminder
b18eae110c47cca1a8d20a033ccbeb57386bbc37
359fb4225b86ac5c865bcb4a65a9205a60dd654a
refs/heads/master
2016-09-06T05:55:10.033786
2013-02-01T09:11:55
2013-02-01T09:11:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,660
java
package com.ss.reminder.server; import java.io.IOException; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.googlecode.objectify.Objectify; import com.ss.reminder.server.entity.TaskEntity; import com.ss.reminder.server.entity.UserEntity; import com.ss.reminder.server.util.ServerUtil; @SuppressWarnings("serial") public class SendEmailTask extends AbstractEmailTask { private static final Logger log = Logger.getLogger(SendEmailTask.class.getName()); @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { String email = req.getParameter("email"); Long time = Long.valueOf(req.getParameter("time")); ReminderService rs = ServiceFactory.getReminderService(); UserEntity user = rs.loadUser(email); if (user == null) { log.log(Level.WARNING, "No user found with email " + email); return; } List<TaskEntity> tasks = rs.listTasks(email); String html = EmailFactory.genListEmail(user, tasks); markUserAsSend(user, time); try { sendEmail(html, email); } catch (Exception e) { log.log(Level.SEVERE, "Failed to send email to user: " + email); } } private void markUserAsSend(UserEntity u, long time) { u.setLastNotifyTime(time); Objectify obf = ServerUtil.obft(); try { obf.put(u); obf.getTxn().commit(); } finally { if (obf.getTxn().isActive()) { obf.getTxn().rollback(); } } } }
[ "sergey@sinica.me" ]
sergey@sinica.me
216ddce4d20de2894fdadcf3507892359b5f4d3c
ddd36c2e3bc51eb5086afefe2700150b5a359ee8
/src/org/transinfo/cacis/action/riskmanagement/OriginalRequestAction.java
5983f06c1090c066f4c766367dc60ecf00fec712
[]
no_license
trandaiduong1990/CACISISS_PADSS
a99bd9e673eaf4897d817d8884953eaa2170ce53
acf2b4634c7ca5ae10ffc205a91375cab3072cb7
refs/heads/master
2021-01-10T01:56:36.101356
2015-11-25T02:11:23
2015-11-25T02:11:23
46,832,469
0
1
null
null
null
null
UTF-8
Java
false
false
4,800
java
package org.transinfo.cacis.action.riskmanagement; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.beanutils.BeanUtils; import org.apache.struts.action.ActionError; import org.apache.struts.action.ActionErrors; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping; import org.transinfo.cacis.TPlusException; import org.transinfo.cacis.action.BaseDispatchAction; import org.transinfo.cacis.controller.riskmanagement.OriginalRequestManager; import org.transinfo.cacis.dataacess.dao.BaseDAO; import org.transinfo.cacis.dto.riskmanagement.OriginalRequestDto; import org.transinfo.cacis.formbean.riskmanagement.OriginalRequest; public class OriginalRequestAction extends BaseDispatchAction { public ActionForward update(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws TPlusException, Exception { System.out.println("we are in dipatchAction update method"); OriginalRequest objForm = (OriginalRequest) form; OriginalRequestDto objDto = new OriginalRequestDto(); OriginalRequestManager objManager = new OriginalRequestManager(); ActionErrors errors = null; boolean idExist = false; boolean boolUpdate = false; // Token Validation if (!isTokenValid(request)) { errors = new ActionErrors(); errors.add("Error", new ActionError("error.duplicate")); saveErrors(request, errors); return mapping.findForward("token"); } // DTO Creation try { BeanUtils.copyProperties(objDto, objForm); } catch (Exception e) { System.out.println("Error converting to dto: " + e); throw new TPlusException("Could not populate to the dto: " + e); } idExist = objManager.validate(objDto, BaseDAO.UPDATE); if (idExist) { // Action Execution boolUpdate = objManager.update(objDto); } else { errors = new ActionErrors(); errors.add("Error", new ActionError("error.idnotexist")); saveErrors(request, errors); request.setAttribute("ACTION", "update"); return mapping.getInputForward(); } if (!boolUpdate) { System.out .println("OriginalRequestDispatchAction: update record fail"); errors = new ActionErrors(); errors.add("Error", new ActionError(" error.updatefailed")); request.setAttribute("ACTION", "update"); saveErrors(request, errors); } else { errors = new ActionErrors(); errors.add("Error", new ActionError("error.updateSuccess")); saveErrors(request, errors); try { BeanUtils.copyProperties(objForm, objDto); } catch (Exception e) { System.out.println("Error converting to form bean: " + e); throw new TPlusException("Could not populate the form bean: " + e); } } System.out.println("OriginalRequestDispatchAction:update() successful"); // Success resetToken(request); request.setAttribute("ACTION", "cancel"); return mapping.findForward("success"); } public ActionForward change(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws TPlusException, Exception { OriginalRequestManager objManager = new OriginalRequestManager(); OriginalRequest objForm = (OriginalRequest) form; // DTO Creation OriginalRequestDto objDto = new OriginalRequestDto(); String strSettlementId = request.getParameter("settlementId"); long settlementId = Long.parseLong(strSettlementId); objDto = objManager.get(settlementId); try { BeanUtils.copyProperties(objForm, objDto); } catch (Exception e) { System.out.println("Error converting to form bean: " + e); throw new TPlusException("Could not populate the form bean: " + e); } // Success saveToken(request); String errorMsg = ""; int status = objDto.getStatus(); if (status > 0) { switch (status) { case 1: errorMsg = "originalrequestsetup.requestsaleslip"; break; case 2: errorMsg = "originalrequestsetup.requestphotocopyslip"; break; case 3: case 4: errorMsg = "originalrequestsetup.chargeback"; break; } ActionErrors errors = null; errors = new ActionErrors(); errors.add("Error", new ActionError(errorMsg)); saveErrors(request, errors); } request.setAttribute("ACTION", "update"); return mapping.findForward("success"); } public ActionForward cancel(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { OriginalRequest objOldForm = (OriginalRequest) form; OriginalRequest objForm = new OriginalRequest(); try { BeanUtils.copyProperties(objOldForm, objForm); } catch (Exception e) { System.out.println("Error converting to form bean: " + e); } return mapping.findForward("listPage"); } }
[ "trandaiduong1990@gmail.com" ]
trandaiduong1990@gmail.com
bff22ea4744ccda22b5e122b997e514dfe9a7257
fc13875ded2f4e740047226d35d3bb59bbf83a83
/RegApp/src/main/java/com/tcs/repositories/RegistrationEntityRepo.java
7f0fb13e9c889cb87658a292e3b66aee8ddd172d
[]
no_license
prasanthreddy4510/rRealTimeRegistration
3857f91c3da4c8f9f51f395e83683812d71b503f
edeaae90d5a26104f15aa368d10c126c0f9e42f2
refs/heads/master
2022-12-01T23:49:57.088581
2020-08-20T02:09:35
2020-08-20T02:09:35
283,764,965
0
1
null
null
null
null
UTF-8
Java
false
false
399
java
package com.tcs.repositories; import java.io.Serializable; import org.springframework.data.jpa.repository.JpaRepository; import com.tcs.entities.RegistrationEntity; public interface RegistrationEntityRepo extends JpaRepository<RegistrationEntity,Serializable>{ public RegistrationEntity findByEmail(String email); public RegistrationEntity findByEmailAndPwd(String email,String pwd); }
[ "prasanth.bayagari@gmail.com" ]
prasanth.bayagari@gmail.com
967990d81fa2fcf10df425925308b7b6646b0dcf
57b6c699fd716ce2e6820737d9f52e40712efdef
/fr.unice.polytech.si5.smarthome.am.model/src-gen/fr/unice/polytech/si5/smarthome/am/model/util/ModelAdapterFactory.java
b20ec21fd807cdf192637657fb1ffce3e54ac333
[ "MIT" ]
permissive
Corentin-Luc-Artaud/Interpretation
7235c1ac282c27ea602b07f3393759b336a49d26
240f3d115baa87f9b10b8dafa679efa6f61b01a5
refs/heads/master
2022-04-03T02:54:30.908415
2020-02-24T15:33:45
2020-02-24T15:33:45
236,487,233
0
0
null
null
null
null
UTF-8
Java
false
false
7,518
java
/** */ package fr.unice.polytech.si5.smarthome.am.model.util; import fr.unice.polytech.si5.smarthome.am.model.*; import org.eclipse.emf.common.notify.Adapter; import org.eclipse.emf.common.notify.Notifier; import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * The <b>Adapter Factory</b> for the model. * It provides an adapter <code>createXXX</code> method for each class of the model. * <!-- end-user-doc --> * @see fr.unice.polytech.si5.smarthome.am.model.ModelPackage * @generated */ public class ModelAdapterFactory extends AdapterFactoryImpl { /** * The cached model package. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected static ModelPackage modelPackage; /** * Creates an instance of the adapter factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ModelAdapterFactory() { if (modelPackage == null) { modelPackage = ModelPackage.eINSTANCE; } } /** * Returns whether this factory is applicable for the type of the object. * <!-- begin-user-doc --> * This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model. * <!-- end-user-doc --> * @return whether this factory is applicable for the type of the object. * @generated */ @Override public boolean isFactoryForType(Object object) { if (object == modelPackage) { return true; } if (object instanceof EObject) { return ((EObject) object).eClass().getEPackage() == modelPackage; } return false; } /** * The switch that delegates to the <code>createXXX</code> methods. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ModelSwitch<Adapter> modelSwitch = new ModelSwitch<Adapter>() { @Override public Adapter caseNamedElement(NamedElement object) { return createNamedElementAdapter(); } @Override public Adapter caseSubject(Subject object) { return createSubjectAdapter(); } @Override public Adapter caseActor(Actor object) { return createActorAdapter(); } @Override public Adapter caseMaison(Maison object) { return createMaisonAdapter(); } @Override public Adapter caseAction(Action object) { return createActionAdapter(); } @Override public Adapter caseEvent(Event object) { return createEventAdapter(); } @Override public Adapter caseOccurence(Occurence object) { return createOccurenceAdapter(); } @Override public Adapter caseCondition(Condition object) { return createConditionAdapter(); } @Override public Adapter defaultCase(EObject object) { return createEObjectAdapter(); } }; /** * Creates an adapter for the <code>target</code>. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param target the object to adapt. * @return the adapter for the <code>target</code>. * @generated */ @Override public Adapter createAdapter(Notifier target) { return modelSwitch.doSwitch((EObject) target); } /** * Creates a new adapter for an object of class '{@link fr.unice.polytech.si5.smarthome.am.model.NamedElement <em>Named Element</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see fr.unice.polytech.si5.smarthome.am.model.NamedElement * @generated */ public Adapter createNamedElementAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link fr.unice.polytech.si5.smarthome.am.model.Subject <em>Subject</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see fr.unice.polytech.si5.smarthome.am.model.Subject * @generated */ public Adapter createSubjectAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link fr.unice.polytech.si5.smarthome.am.model.Actor <em>Actor</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see fr.unice.polytech.si5.smarthome.am.model.Actor * @generated */ public Adapter createActorAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link fr.unice.polytech.si5.smarthome.am.model.Maison <em>Maison</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see fr.unice.polytech.si5.smarthome.am.model.Maison * @generated */ public Adapter createMaisonAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link fr.unice.polytech.si5.smarthome.am.model.Action <em>Action</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see fr.unice.polytech.si5.smarthome.am.model.Action * @generated */ public Adapter createActionAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link fr.unice.polytech.si5.smarthome.am.model.Event <em>Event</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see fr.unice.polytech.si5.smarthome.am.model.Event * @generated */ public Adapter createEventAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link fr.unice.polytech.si5.smarthome.am.model.Occurence <em>Occurence</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see fr.unice.polytech.si5.smarthome.am.model.Occurence * @generated */ public Adapter createOccurenceAdapter() { return null; } /** * Creates a new adapter for an object of class '{@link fr.unice.polytech.si5.smarthome.am.model.Condition <em>Condition</em>}'. * <!-- begin-user-doc --> * This default implementation returns null so that we can easily ignore cases; * it's useful to ignore a case when inheritance will catch all the cases anyway. * <!-- end-user-doc --> * @return the new adapter. * @see fr.unice.polytech.si5.smarthome.am.model.Condition * @generated */ public Adapter createConditionAdapter() { return null; } /** * Creates a new adapter for the default case. * <!-- begin-user-doc --> * This default implementation returns null. * <!-- end-user-doc --> * @return the new adapter. * @generated */ public Adapter createEObjectAdapter() { return null; } } //ModelAdapterFactory
[ "corentin.luc.artaud@gmail.com" ]
corentin.luc.artaud@gmail.com
fd9baece11587b787188673bfeed6dfbb0c72da9
23832b6d9251972bc3a647796085232e177f718d
/app/src/main/java/com/lineplus/lineplusmemo/module/ValidationCheck.java
16af5474848e9b4633fd37d1e6e06a7ebe5c38df
[]
no_license
HOBOOK/LineplusMemoApp
28c9402748581f6d6b26158c1c8adbdef73fe1a6
fdb9a2636e3bc07f8890edc78acf52a73f23e561
refs/heads/master
2022-04-06T16:17:18.631653
2020-02-15T11:57:08
2020-02-15T11:57:08
239,668,891
1
0
null
null
null
null
UTF-8
Java
false
false
709
java
package com.lineplus.lineplusmemo.module; import android.text.Editable; import android.util.Patterns; import android.webkit.URLUtil; /// 유효서 검사 클래스 public class ValidationCheck { private static ValidationCheck instnace = null; public static ValidationCheck getInstance() { if(instnace==null) instnace = new ValidationCheck(); return instnace; } // 이미지 URL 유효성 검사 public boolean checkImageURL(String url){ if(URLUtil.isValidUrl(url) || Patterns.WEB_URL.matcher(url).matches()){ return true; } return false; } // 메모 저장 유효성 검사 public boolean checkEditableMemo(Editable edit){ return edit!=null && !edit.toString().equals(""); } }
[ "37508173+HOBOOK@users.noreply.github.com" ]
37508173+HOBOOK@users.noreply.github.com
d9cd138dc47c0d09de4aa35ecadf192b08c851af
e5cc0a03922963c579c3871d72e389393ede7498
/fe/src/main/java/org/apache/impala/catalog/IcebergFileMetadataLoader.java
c365e9cac04e7c0f28f8e00656c7b6af9a0b2554
[ "PSF-2.0", "BSD-3-Clause", "LicenseRef-scancode-mit-modification-obligations", "LicenseRef-scancode-unknown-license-reference", "bzip2-1.0.6", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows", "Minpack", "BSL-1.0", "Apache-2.0", "LicenseRef-scancode-public-domain", "OpenSSL"...
permissive
seyeh/impala
55cf4cdca5f4cd4b76d7583eb3b4130e6c8a1c8d
419aeba469abde234e84432a90b80270800ff3d9
refs/heads/master
2023-07-07T13:03:54.663634
2023-06-26T03:23:23
2023-06-26T03:23:23
276,465,169
0
0
Apache-2.0
2020-07-01T19:31:09
2020-07-01T19:31:09
null
UTF-8
Java
false
false
6,039
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.impala.catalog; import com.google.common.base.Strings; import com.google.common.collect.Lists; import com.google.common.collect.Maps; import java.io.IOException; import java.net.URI; import java.util.List; import java.util.Map; import org.apache.hadoop.fs.FileStatus; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; import org.apache.hadoop.fs.RemoteIterator; import org.apache.hadoop.hive.common.ValidTxnList; import org.apache.hadoop.hive.common.ValidWriteIdList; import org.apache.iceberg.ContentFile; import org.apache.impala.catalog.FeIcebergTable.Utils; import org.apache.impala.catalog.HdfsPartition.FileDescriptor; import org.apache.impala.catalog.iceberg.GroupedContentFiles; import org.apache.impala.common.FileSystemUtil; import org.apache.impala.common.Reference; import org.apache.impala.thrift.TNetworkAddress; import org.apache.impala.util.ListMap; /** * Utility for loading the content files metadata of the Iceberg tables. */ public class IcebergFileMetadataLoader extends FileMetadataLoader { private final GroupedContentFiles icebergFiles_; private final boolean canDataBeOutsideOfTableLocation_; public IcebergFileMetadataLoader(Path partDir, boolean recursive, List<FileDescriptor> oldFds, ListMap<TNetworkAddress> hostIndex, ValidTxnList validTxnList, ValidWriteIdList writeIds, GroupedContentFiles icebergFiles, boolean canDataBeOutsideOfTableLocation) { super(partDir, recursive, oldFds, hostIndex, validTxnList, writeIds, HdfsFileFormat.ICEBERG); icebergFiles_ = icebergFiles; canDataBeOutsideOfTableLocation_ = canDataBeOutsideOfTableLocation; } /** * Throw exception if the path fails to relativize based on the location of the Iceberg * tables, and files is not allowed outside the table location. */ @Override protected FileDescriptor getFileDescriptor(FileSystem fs, boolean listWithLocations, Reference<Long> numUnknownDiskIds, FileStatus fileStatus) throws IOException { String relPath = null; String absPath = null; URI relUri = partDir_.toUri().relativize(fileStatus.getPath().toUri()); if (relUri.isAbsolute() || relUri.getPath().startsWith(Path.SEPARATOR)) { if (canDataBeOutsideOfTableLocation_) { absPath = fileStatus.getPath().toString(); } else { throw new IOException(String.format("Failed to load Iceberg datafile %s, because " + "it's outside of the table location", fileStatus.getPath().toUri())); } } else { relPath = relUri.getPath(); } String path = Strings.isNullOrEmpty(relPath) ? absPath : relPath; FileDescriptor fd = oldFdsByPath_.get(path); if (listWithLocations || forceRefreshLocations || fd == null || fd.isChanged(fileStatus)) { fd = createFd(fs, fileStatus, relPath, numUnknownDiskIds, absPath); ++loadStats_.loadedFiles; } else { ++loadStats_.skippedFiles; } return fd; } /** * Return file status list based on the data and delete files of the Iceberg tables. */ @Override protected List<FileStatus> getFileStatuses(FileSystem fs, boolean listWithLocations) throws IOException { if (icebergFiles_.isEmpty()) return null; RemoteIterator<? extends FileStatus> fileStatuses = null; // For the FSs in 'FileSystemUtil#SCHEME_SUPPORT_STORAGE_IDS' (e.g. HDFS, Ozone, // Alluxio, etc.) we ensure the file with block location information, so we're going // to get the block information through 'FileSystemUtil.listFiles'. if (listWithLocations) { fileStatuses = FileSystemUtil.listFiles(fs, partDir_, recursive_, debugAction_); } Map<Path, FileStatus> nameToFileStatus = Maps.newHashMap(); if (fileStatuses != null) { while (fileStatuses.hasNext()) { FileStatus status = fileStatuses.next(); nameToFileStatus.put(status.getPath(), status); } } List<FileStatus> stats = Lists.newLinkedList(); for (ContentFile<?> contentFile : icebergFiles_.getAllContentFiles()) { Path path = FileSystemUtil.createFullyQualifiedPath( new Path(contentFile.path().toString())); // If data is in the table location, then we can get LocatedFileStatus from // 'nameToFileStatus'. If 'nameToFileStatus' does not include the ContentFile, we // try to get LocatedFileStatus based on the specific fs(StorageIds are supported) // of the actual ContentFile. If the specific fs does not support StorageIds, then // we create FileStatus directly by the method // 'org.apache.impala.catalog.IcebergFileMetadataLoader.createFileStatus'. if (nameToFileStatus.containsKey(path)) { stats.add(nameToFileStatus.get(path)); } else { FileSystem fsForPath = FileSystemUtil.getFileSystemForPath(path); if (FileSystemUtil.supportsStorageIds(fsForPath)) { stats.add(Utils.createLocatedFileStatus(path, fsForPath)); } else { // To avoid the cost of directory listing on OSS service (e.g. S3A, COS, OSS, // etc), we create FileStatus ourselves. stats.add(Utils.createFileStatus(contentFile, path)); } } } return stats; } }
[ "boroknagyz@cloudera.com" ]
boroknagyz@cloudera.com
cdc1e8006e8fe11fe08825224a8200690139e78b
6b20768f40d46cfcadea1ba8472f2e7f93dae272
/JavaFile_16/src/com/yuanren/core9/PropertiesDemo.java
4666ff2114f22cd13997865e436c1aa8ce8c2318
[]
no_license
chou120/JavaYuanRen
b436e08379cc62ef8fea2c5694772d2bd2590e71
6da43ce9030ce3475a7646dfb52e7ecd18d4c692
refs/heads/main
2023-06-15T15:23:48.138569
2021-07-06T08:34:29
2021-07-06T08:34:29
374,542,543
1
0
null
null
null
null
UTF-8
Java
false
false
1,353
java
package com.yuanren.core9; import java.io.*; import java.util.Properties; public class PropertiesDemo { public static void main(String[] args) { Properties properties=new Properties(); /*properties.put("username","张三丰"); properties.put("password","123456"); properties.put("driver","mysql");*/ /* File file=new File("JavaFile_16/db.properties");*/ /* try { FileWriter fileWriter = new FileWriter(file,true); properties.store(fileWriter,"sanye"); fileWriter.close(); } catch (IOException e) { e.printStackTrace(); } */ try { // FileReader fileReader = new FileReader(file); // FileInputStream fileInputStream = new FileInputStream(file); InputStream resourceAsStream = PropertiesDemo.class.getResourceAsStream("/db.properties"); properties.load(resourceAsStream); resourceAsStream.close(); System.out.println(properties.getProperty("username")); System.out.println(properties.getProperty("password")); System.out.println(properties.getProperty("driver")); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } }
[ "1208160221@qq.com" ]
1208160221@qq.com
3d6dbfdcec54a662479a73df64d6f3dd5b17ec02
2d1f125578ec412defe1a279c5e487b885e685b5
/src/main/java/org/oasis/open/docs/wsn/b_2/ResumeFailedFaultType.java
e5a662c7ba01b9a47eea2aee325171fe4ac7f184
[]
no_license
fengxiaobu/liveclient
3b43ee7b474026c1018a22a6a1be8c89c1c0eb42
a28a0129d244cd49d72b4b781157ac9f964091fa
refs/heads/master
2020-04-11T20:07:15.175695
2018-12-17T01:54:45
2018-12-17T01:54:45
162,060,421
1
1
null
null
null
null
UTF-8
Java
false
false
864
java
package org.oasis.open.docs.wsn.b_2; import org.oasis.open.docs.wsrf.bf_2.BaseFaultType; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ResumeFailedFaultType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="ResumeFailedFaultType"> * &lt;complexContent> * &lt;extension base="{http://docs.oasis-open.org/wsrf/bf-2}BaseFaultType"> * &lt;anyAttribute processContents='lax' namespace='##other'/> * &lt;/extension> * &lt;/complexContent> * &lt;/complexType> * </pre> */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResumeFailedFaultType") public class ResumeFailedFaultType extends BaseFaultType { }
[ "luopanfeng@benefitech.cn" ]
luopanfeng@benefitech.cn
865aebc3e9a4402f4381ce1a8301063e2c925cbd
8b1df227305a395484073c8417be07c71cd623d3
/assignmentThree/Question6.java
bd9a0234b169cf2662666bc212a4c78e6ba8c7c7
[]
no_license
timecorner35/assignment3
77060e345bcc06c5b7621565cbae8af80aa0debc
aefff948d1d48b81d49d56754cb3ecc11adf78ad
refs/heads/master
2022-12-27T17:30:47.632629
2020-09-26T14:06:17
2020-09-26T14:06:17
298,039,974
0
0
null
null
null
null
UTF-8
Java
false
false
376
java
package assignmentThree; public class Question6 { public static void main(String[] args) { final int lethal=10000; int NumberofMiligramsinDrink=500; System.out.println("NumberofMiligramsinDrink: "+NumberofMiligramsinDrink); System.out.println("It would take about "+(lethal/NumberofMiligramsinDrink)+" drink for an overdose"); } }
[ "noreply@github.com" ]
noreply@github.com
d093c8a233d842ba3ea89f418c203cc32905ccec
1ad93607d976f4d02f2b6c0576164018f96c8b95
/app/src/main/java/com/example/btl_ltuddd_electricstore/Adapter/ItemQuanLyAdapter.java
00de4dd3d6b7afd9874b95113bbc1ab660fc5f02
[]
no_license
nhatbao2k/qlcuahangdientu_android
2102ad02c08a5cd9692c06470585cf486a8413dc
e46176b2bceacb3504404706a6e6144f1cb17772
refs/heads/master
2023-05-06T13:04:19.668621
2021-06-03T15:07:03
2021-06-03T15:07:03
357,065,901
0
0
null
null
null
null
UTF-8
Java
false
false
2,905
java
package com.example.btl_ltuddd_electricstore.Adapter; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.ImageView; import android.widget.TextView; import com.example.btl_ltuddd_electricstore.R; import com.example.btl_ltuddd_electricstore.object.SanPham; import com.example.btl_ltuddd_electricstore.Activity.quan_ly_ban_hang_Activity; import com.squareup.picasso.Picasso; import java.util.List; public class ItemQuanLyAdapter extends BaseAdapter { private quan_ly_ban_hang_Activity context; private int layout; private List<SanPham> sanPhamList; public ItemQuanLyAdapter(quan_ly_ban_hang_Activity context, int layout, List<SanPham> sanPhamList) { this.context = context; this.layout = layout; this.sanPhamList = sanPhamList; } @Override public int getCount() { return sanPhamList.size(); } @Override public Object getItem(int position) { return null; // return sanPhamList.get(position); } @Override public long getItemId(int position) { // return position; return 0; } private class ViewHolder { ImageView imgHinhAnh; TextView txt_maSP, txt_tenSP, txt_maLSP, txt_gia, txt_mota; } @Override public View getView(int position, View convertView, ViewGroup parent) { LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); View rowView = convertView; ViewHolder viewHolder; if (rowView == null) { rowView = inflater.inflate(layout, null); viewHolder = new ViewHolder(); viewHolder.imgHinhAnh =(ImageView) rowView.findViewById(R.id.img_item); viewHolder.txt_maSP =(TextView) rowView.findViewById(R.id.txt_masp); viewHolder.txt_maLSP = (TextView) rowView.findViewById(R.id.txt_maloai); viewHolder.txt_tenSP = (TextView) rowView.findViewById(R.id.txt_tensp); viewHolder.txt_gia = (TextView) rowView.findViewById(R.id.txt_gia); viewHolder.txt_mota = (TextView) rowView.findViewById(R.id.txt_mota_item); rowView.setTag(viewHolder); }else{ viewHolder = (ViewHolder) rowView.getTag(); } viewHolder.txt_maSP.setText(sanPhamList.get(position).getMaSP()); viewHolder.txt_tenSP.setText(sanPhamList.get(position).getTenSP()); viewHolder.txt_maLSP.setText(sanPhamList.get(position).getMaLoaiSP()); viewHolder.txt_gia.setText(sanPhamList.get(position).getGia()+" vnđ"); viewHolder.txt_mota.setText(sanPhamList.get(position).getMoTa()); Picasso.get().load(sanPhamList.get(position).getHinhAnh()).into(viewHolder.imgHinhAnh); return rowView; } }
[ "nhatbao2k@gmail.com" ]
nhatbao2k@gmail.com
7d97e82241f85c2284fb213576f8ab9b24e7ee41
005553bcc8991ccf055f15dcbee3c80926613b7f
/generated/pcftest/CheckRecurrenceDetailInputSet_weekly.java
bfd596e7bcf88c24970acf2ab78cf7f10a93da36
[]
no_license
azanaera/toggle-isbtf
5f14209cd87b98c123fad9af060efbbee1640043
faf991ec3db2fd1d126bc9b6be1422b819f6cdc8
refs/heads/master
2023-01-06T22:20:03.493096
2020-11-16T07:04:56
2020-11-16T07:04:56
313,212,938
0
0
null
2020-11-16T08:48:41
2020-11-16T06:42:23
null
UTF-8
Java
false
false
4,057
java
package pcftest; import gw.lang.SimplePropertyProcessing; import gw.smoketest.platform.web.CheckboxValueElement; import gw.smoketest.platform.web.DateElement; import gw.smoketest.platform.web.OptionElement; import gw.smoketest.platform.web.PCFElement; import gw.smoketest.platform.web.PCFElementId; import gw.smoketest.platform.web.SelectElement; import gw.smoketest.platform.web.ValueElement; import gw.testharness.ISmokeTest; import javax.annotation.processing.Generated; import pcftest.CheckRecurrenceDetailInputSet_weekly.SubsequentChecks; import pcftest.CheckRecurrenceDetailInputSet_weekly.SubsequentChecks.DayOfWeek; import typekey.RecurrenceDay; @SimplePropertyProcessing @Generated(comments = "config/web/pcf/claim/newtransaction/check/CheckRecurrenceDetailInputSet.weekly.pcf", date = "", value = "com.guidewire.pcfgen.PCFClassGenerator") public class CheckRecurrenceDetailInputSet_weekly extends CheckRecurrenceDetailInputSet { public final static String CHECKSUM = "fb8a35e11dcc8ab2a205419c01a60a5b"; public CheckRecurrenceDetailInputSet_weekly(ISmokeTest helper, PCFElementId componentId) { super(helper, componentId); } public CheckRecurrenceAdditionalInfoInputSet getCheckRecurrenceAdditionalInfoInputSet() { return getOrCreateProperty("CheckRecurrenceAdditionalInfoInputSet", "CheckRecurrenceAdditionalInfoInputSet", null, pcftest.CheckRecurrenceAdditionalInfoInputSet.class); } public DateElement getScheduledSendDate() { return getOrCreateProperty("ScheduledSendDate", "ScheduledSendDate", null, gw.smoketest.platform.web.DateElement.class); } public SubsequentChecks getSubsequentChecks() { return getOrCreateProperty("SubsequentChecks", "SubsequentChecks", null, pcftest.CheckRecurrenceDetailInputSet_weekly.SubsequentChecks.class); } @SimplePropertyProcessing @Generated(comments = "config/web/pcf/claim/newtransaction/check/CheckRecurrenceDetailInputSet.weekly.pcf", date = "", value = "com.guidewire.pcfgen.PCFClassGenerator") public static class SubsequentChecks extends PCFElement { public SubsequentChecks(ISmokeTest helper, PCFElementId componentId) { super(helper, componentId); } public DayOfWeek getDayOfWeek() { return getOrCreateProperty("DayOfWeek", "DayOfWeek", null, pcftest.CheckRecurrenceDetailInputSet_weekly.SubsequentChecks.DayOfWeek.class); } public ValueElement getDaysInAdvance() { return getOrCreateProperty("DaysInAdvance", "DaysInAdvance", null, gw.smoketest.platform.web.ValueElement.class); } public ValueElement getEveryXWeek() { return getOrCreateProperty("EveryXWeek", "EveryXWeek", null, gw.smoketest.platform.web.ValueElement.class); } public SelectElement getFrequency() { return getOrCreateProperty("Frequency", "Frequency", null, gw.smoketest.platform.web.SelectElement.class); } public CheckboxValueElement getIssueCheckInAdvance() { return getOrCreateProperty("IssueCheckInAdvance", "IssueCheckInAdvance", gw.smoketest.platform.web.PCFElementId.PCFElementScope.BooleanCheckboxValue, gw.smoketest.platform.web.CheckboxValueElement.class); } @SimplePropertyProcessing @Generated(comments = "config/web/pcf/claim/newtransaction/check/CheckRecurrenceDetailInputSet.weekly.pcf", date = "", value = "com.guidewire.pcfgen.PCFClassGenerator") public static class DayOfWeek extends SelectElement { public DayOfWeek(ISmokeTest helper, PCFElementId componentId) { super(helper, componentId); } public OptionElement getOptionByTypeKey(RecurrenceDay arg) { return getOptionByValue(arg == null ? null : arg.getCode()); } public RecurrenceDay getTypeKeyValue() { String myValue = getValue();return myValue == null || myValue.isEmpty() ? null : typekey.RecurrenceDay.getTypeKey(myValue); } public void setTypeKeyValue(RecurrenceDay arg) { setValue(arg == null ? null : arg.getCode()); } } } }
[ "azanaera691@gmail.com" ]
azanaera691@gmail.com
b1e7376454d6cfdbf160b431dea145013fa4af66
0e3430a2911080e5f03ac4c7ddf8dbe43809f6ad
/PerfectPitchPoC.Android/obj/Debug/90/android/com/companyname/perfectpitchpoc/R.java
cec52d1f9c18570febc8dfc6e5c4d7197013edbf
[]
no_license
pchriste-microsoft-com/PerfectPitchPoC
5d954f2908b7d5ce50601e46db55d76c14d4492b
2fe8963c877e125959acbc46334a2b1b78e5804f
refs/heads/main
2023-01-08T05:02:48.613532
2020-10-13T17:14:49
2020-10-13T17:14:49
303,777,477
0
0
null
null
null
null
UTF-8
Java
false
false
979,413
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.companyname.perfectpitchpoc; 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 abc_tooltip_enter=0x7f05000a; public static final int abc_tooltip_exit=0x7f05000b; public static final int design_bottom_sheet_slide_in=0x7f05000c; public static final int design_bottom_sheet_slide_out=0x7f05000d; public static final int design_snackbar_in=0x7f05000e; public static final int design_snackbar_out=0x7f05000f; public static final int enterfromleft=0x7f050010; public static final int enterfromright=0x7f050011; public static final int exittoleft=0x7f050012; public static final int exittoright=0x7f050013; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f060000; public static final int design_fab_hide_motion_spec=0x7f060001; public static final int design_fab_show_motion_spec=0x7f060002; public static final int mtrl_btn_state_list_anim=0x7f060003; public static final int mtrl_btn_unelevated_state_list_anim=0x7f060004; public static final int mtrl_chip_state_list_anim=0x7f060005; public static final int mtrl_fab_hide_motion_spec=0x7f060006; public static final int mtrl_fab_show_motion_spec=0x7f060007; public static final int mtrl_fab_transformation_sheet_collapse_spec=0x7f060008; public static final int mtrl_fab_transformation_sheet_expand_spec=0x7f060009; } public static final class attr { /** Custom divider drawable to use for elements in the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010062; /** Custom item state list drawable background for action bar items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010063; /** Reference to a theme that should be used to inflate popups shown by widgets in the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005c; /** Size of the Action Bar, including the contextual bar used to present Action Modes. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010061; /** Reference to a style for the split Action Bar. This style controls the split component that holds the menu/action buttons. actionBarStyle is still used for the primary bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005e; /** Reference to a style for the Action Bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f010058; /** Default style for tabs within an action bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarTabTextStyle=0x7f010059; /** Reference to a theme that should be used to inflate the action bar. This will be inherited by any widget inflated into the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005f; /** Reference to a theme that should be used to inflate widgets and layouts destined for the action bar. Most of the time this will be a reference to the current theme, but when the action bar has a significantly different contrast profile than the rest of the activity the difference can become important. If this is set to @null the current theme will be used. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010060; /** Default action button style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01007e; /** Default ActionBar dropdown style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01007a; /** An optional layout to be used as an action view. See {@link android.view.MenuItem#setActionView(android.view.View)} for more info. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100d5; /** TextAppearance style that will be applied to text that appears within action menu items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010064; /** Color for text that appears within action menu items. Color for text that appears within action menu items. <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=0x7f010065; /** Background drawable to use for action mode UI <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionModeCloseButtonStyle=0x7f010067; /** Drawable to use for the close action mode button <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006a; /** Drawable to use for the Copy action button in Contextual Action Bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006c; /** Drawable to use for the Cut action button in Contextual Action Bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006b; /** Drawable to use for the Find action button in WebView selection action modes <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010070; /** Drawable to use for the Paste action button in Contextual Action Bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006d; /** PopupWindow style to use for action modes when showing as a window overlay. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010072; /** Drawable to use for the Select all action button in Contextual Action Bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006e; /** Drawable to use for the Share action button in WebView selection action modes <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006f; /** Background drawable to use for action mode UI in the lower split bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionModeStyle=0x7f010066; /** Drawable to use for the Web Search action button in WebView selection action modes <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionOverflowButtonStyle=0x7f01005a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f01005b; /** The name of an optional ActionProvider class to instantiate an action view and perform operations such as default action for that menu item. See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} for more info. <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=0x7f0100d7; /** The name of an optional View class to instantiate and use as an action view. See {@link android.view.MenuItem#setActionView(android.view.View)} for more info. <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=0x7f0100d6; /** Default ActivityChooserView style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010086; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f0100ab; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alertDialogCenterButtons=0x7f0100ac; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogStyle=0x7f0100aa; /** Theme to use for alert dialogs spawned from this theme. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ad; /** Whether to automatically stack the buttons when there is not enough space to lay them out side-by-side. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100c4; /** Alpha multiplier applied to the base color. <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=0x7f0101d1; /** The alphabetic modifier key. This is the modifier when using a keyboard with alphabetic keys. The values should be kept in sync with KeyEvent <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static final int alphabeticModifiers=0x7f0100d2; /** The length of the arrow head when formed to make an arrow <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100cb; /** The length of the shaft when formed to make an arrow <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100cc; /** Default AutoCompleteTextView style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b2; /** The maximum text size constraint to be used when auto-sizing text. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeMaxTextSize=0x7f010048; /** The minimum text size constraint to be used when auto-sizing text. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeMinTextSize=0x7f010047; /** Resource array of dimensions to be used in conjunction with <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides <code>autoSizeStepGranularity</code> if set. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoSizePresetSizes=0x7f010046; /** Specify the auto-size step size if <code>autoSizeTextType</code> is set to <code>uniform</code>. The default is 1px. Overwrites <code>autoSizePresetSizes</code> if set. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeStepGranularity=0x7f010045; /** Specify the type of auto-size. Note that this feature is not supported by EditText, works only for TextView. <p>Must be one of the following constant values.</p> <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> No auto-sizing (default). </td></tr> <tr><td><code>uniform</code></td><td>1</td><td> Uniform horizontal and vertical text size scaling to fit within the container. </td></tr> </table> */ public static final int autoSizeTextType=0x7f010044; /** Specifies a background drawable for the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010021; /** Specifies a background drawable for the bottom component of a split action bar. <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=0x7f010023; /** Specifies a background drawable for a second stacked row of the action bar. <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=0x7f010022; /** Tint to apply to the background. <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=0x7f01010e; /** Blending mode used to apply the background tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> */ public static final int backgroundTintMode=0x7f01010f; /** The length of the bars when they are parallel to each other <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100cd; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01017e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_fitToContents=0x7f010146; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 behavior_overlapTop=0x7f01018f; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010143; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010145; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01017b; /** Style for buttons without an explicit border, often used in groups. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 bottomAppBarStyle=0x7f010110; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomNavigationStyle=0x7f010111; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetDialogTheme=0x7f010112; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010113; /** <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 boxBackgroundColor=0x7f0101c4; /** <p>Must be one of the following constant values.</p> <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>filled</code></td><td>1</td><td></td></tr> <tr><td><code>outline</code></td><td>2</td><td></td></tr> </table> */ public static final int boxBackgroundMode=0x7f0101bd; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int boxCollapsedPaddingTop=0x7f0101be; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int boxCornerRadiusBottomEnd=0x7f0101c2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int boxCornerRadiusBottomStart=0x7f0101c1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int boxCornerRadiusTopEnd=0x7f0101c0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int boxCornerRadiusTopStart=0x7f0101bf; /** <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 boxStrokeColor=0x7f0101c3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int boxStrokeWidth=0x7f0101c5; /** Style for buttons within button bars <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010080; /** Style for the "negative" buttons within button bars <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b0; /** Style for the "neutral" buttons within button bars <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b1; /** Style for the "positive" buttons within button bars <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100af; /** Style for button bars <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01007f; /** <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> Push object to the top of its container, not changing its size. </td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td> Push object to the bottom of its container, not changing its size. </td></tr> </table> */ public static final int buttonGravity=0x7f010103; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int buttonIconDimen=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 buttonPanelSideLayout=0x7f010036; /** Normal Button style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b3; /** Small Button style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b4; /** Tint to apply to the button drawable. <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=0x7f0100c5; /** Blending mode used to apply the button tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> */ public static final int buttonTintMode=0x7f0100c6; /** Background color for CardView. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardBackgroundColor=0x7f01000a; /** Corner radius for CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardCornerRadius=0x7f01000b; /** Elevation for CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardElevation=0x7f01000c; /** Maximum Elevation for CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardMaxElevation=0x7f01000d; /** Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardPreventCornerOverlap=0x7f01000f; /** Add padding in API v21+ as well to have the same measurements with previous versions. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardUseCompatPadding=0x7f01000e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int cardViewStyle=0x7f010009; /** Default Checkbox style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 checkedChip=0x7f010165; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedIcon=0x7f010157; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int checkedIconEnabled=0x7f010156; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int checkedIconVisible=0x7f010155; /** Default CheckedTextView style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b6; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int chipBackgroundColor=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 chipCornerRadius=0x7f010149; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int chipEndPadding=0x7f01015f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int chipGroupStyle=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 chipIcon=0x7f01014e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int chipIconEnabled=0x7f01014d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int chipIconSize=0x7f010150; /** <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 chipIconTint=0x7f01014f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int chipIconVisible=0x7f01014c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int chipMinHeight=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 chipSpacing=0x7f010160; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int chipSpacingHorizontal=0x7f010161; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int chipSpacingVertical=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 chipStandaloneStyle=0x7f010115; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int chipStartPadding=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 chipStrokeColor=0x7f01014a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int chipStrokeWidth=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 chipStyle=0x7f010116; /** Close button icon <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e6; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int closeIconEnabled=0x7f010152; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int closeIconEndPadding=0x7f01015e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int closeIconSize=0x7f010154; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int closeIconStartPadding=0x7f01015d; /** <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 closeIconTint=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 closeIconVisible=0x7f010151; /** Specifies a layout to use for the "close" item at the starting edge. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010033; /** Text to set as the content description for the collapse button. <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=0x7f010105; /** Icon drawable to use for the collapse button. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010104; /** <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=0x7f010172; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01016c; /** The drawing color for the bars <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=0x7f0100c7; /** Bright complement to the primary branding color. By default, this is the color applied to framework controls (via colorControlActivated). <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=0x7f0100a2; /** Default color of background imagery for floating components, ex. dialogs, popups, and cards. <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=0x7f0100a9; /** The color applied to framework buttons in their normal state. <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=0x7f0100a6; /** The color applied to framework controls in their activated (ex. checked) state. <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=0x7f0100a4; /** The color applied to framework control highlights (ex. ripples, list selectors). <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=0x7f0100a5; /** The color applied to framework controls in their normal state. <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=0x7f0100a3; /** Color used for error states and things that need to be drawn to the user's attention. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int colorError=0x7f0100c2; /** The primary branding color for the app. By default, this is the color applied to the action bar background. <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=0x7f0100a0; /** Dark variant of the primary branding color. By default, this is the color applied to the status bar (via statusBarColor) and navigation bar (via navigationBarColor). <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=0x7f0100a1; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorSecondary=0x7f010117; /** The color applied to framework switch thumbs in their normal state. <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=0x7f0100a7; /** Commit icon shown in the query suggestion row <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100eb; /** The content description associated with the item. <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=0x7f0100d8; /** Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002c; /** Minimum inset for content views within a bar when actions from a menu are present. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010030; /** Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002d; /** Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002e; /** Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002b; /** Minimum inset for content views within a bar when a navigation button is present, such as the Up button. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002f; /** Inner padding between the edges of the Card and children of the CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPadding=0x7f010010; /** Inner padding between the bottom edge of the Card and children of the CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingBottom=0x7f010014; /** Inner padding between the left edge of the Card and children of the CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingLeft=0x7f010011; /** Inner padding between the right edge of the Card and children of the CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingRight=0x7f010012; /** Inner padding between the top edge of the Card and children of the CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingTop=0x7f010013; /** <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=0x7f01016d; /** The background used by framework controls. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 coordinatorLayoutStyle=0x7f0101c8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cornerRadius=0x7f010185; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0101b4; /** <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=0x7f0101b5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0101b7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0101b6; /** Specifies a layout for custom navigation. Overrides navigationMode. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010024; /** Default query hint used when {@code queryHint} is undefined and the search view's {@code SearchableInfo} does not provide a hint. <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=0x7f0100e5; /** Preferred corner radius of dialogs. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dialogCornerRadius=0x7f010079; /** Preferred padding for dialog content. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010077; /** Theme to use for dialogs spawned from this theme. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010076; /** Options affecting how the action bar is displayed. <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=0x7f01001a; /** Specifies the drawable used for item dividers. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010020; /** A drawable that may be used as a horizontal divider between visual elements. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010085; /** Size of padding on either end of a divider. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100d1; /** A drawable that may be used as a vertical divider between visual elements. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010084; /** The total size of the drawable <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100c9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010015; /** ListPopupWindow compatibility <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010097; /** The preferred item height for dropdown lists. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01007b; /** EditText background drawable. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008c; /** EditText text foreground color. <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=0x7f01008b; /** Default EditText style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b7; /** Elevation for the action bar itself <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010031; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int enforceMaterialTheme=0x7f0101c6; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int enforceTextAppearance=0x7f0101c7; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0101b2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0101b3; /** The drawable to show in the button for expanding the activities overflow popup. <strong>Note:</strong> Clients would like to set this drawable as a clue about the action the chosen activity will perform. For example, if share activity is to be chosen the drawable should give a clue that sharing is to be performed. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 expanded=0x7f010131; /** <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=0x7f010173; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010166; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginBottom=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 expandedTitleMarginEnd=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 expandedTitleMarginStart=0x7f010167; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginTop=0x7f010168; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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>center</code></td><td>0</td><td></td></tr> <tr><td><code>end</code></td><td>1</td><td></td></tr> </table> */ public static final int fabAlignmentMode=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 fabCradleMargin=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 fabCradleRoundedCornerRadius=0x7f01013b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fabCradleVerticalOffset=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 fabCustomSize=0x7f010178; /** <p>Must be one of the following constant values.</p> <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=0x7f010177; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fastScrollEnabled=0x7f010004; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollHorizontalThumbDrawable=0x7f010007; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollHorizontalTrackDrawable=0x7f010008; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollVerticalThumbDrawable=0x7f010005; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollVerticalTrackDrawable=0x7f010006; /** Distance from the top of the TextView to the first text baseline. If set, this overrides the value set for paddingTop. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int firstBaselineToTopHeight=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 string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>May be an integer value, such as "<code>100</code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</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>". <p>May be a floating point value, such as "<code>1.2</code>". <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. */ public static final int floatingActionButtonStyle=0x7f010118; /** The reference to the font file to be used. This should be a file in the res/font folder and should therefore have an R reference value. E.g. @font/myfont <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int font=0x7f0101d9; /** The attribute for the font family. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontFamily=0x7f010049; /** The authority of the Font Provider to be used for the request. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontProviderAuthority=0x7f0101d2; /** The sets of hashes for the certificates the provider should be signed with. This is used to verify the identity of the provider, and is only required if the provider is not part of the system image. This value may point to one list or a list of lists, where each individual list represents one collection of signature hashes. Refer to your font provider's documentation for these values. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fontProviderCerts=0x7f0101d5; /** The strategy to be used when fetching font data from a font provider in XML layouts. This attribute is ignored when the resource is loaded from code, as it is equivalent to the choice of API between {@link androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and {@link androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} (async). <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>blocking</code></td><td>0</td><td> The blocking font fetch works as follows. First, check the local cache, then if the requested font is not cached, request the font from the provider and wait until it is finished. You can change the length of the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the default typeface will be used instead. </td></tr> <tr><td><code>async</code></td><td>1</td><td> The async font fetch works as follows. First, check the local cache, then if the requeted font is not cached, trigger a request the font and continue with layout inflation. Once the font fetch succeeds, the target text view will be refreshed with the downloaded font data. The fontProviderFetchTimeout will be ignored if async loading is specified. </td></tr> </table> */ public static final int fontProviderFetchStrategy=0x7f0101d6; /** The length of the timeout during fetching. <p>May be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>forever</code></td><td>-1</td><td> A special value for the timeout. In this case, the blocking font fetching will not timeout and wait until a reply is received from the font provider. </td></tr> </table> */ public static final int fontProviderFetchTimeout=0x7f0101d7; /** The package for the Font Provider to be used for the request. This is used to verify the identity of the provider. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontProviderPackage=0x7f0101d3; /** The query to be sent over to the provider. Refer to your font provider's documentation on the format of this string. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontProviderQuery=0x7f0101d4; /** The style of the given font file. This will be used when the font is being loaded into the font stack and will override any style information in the font's header tables. If unspecified, the value in the font's header tables will be used. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>italic</code></td><td>1</td><td></td></tr> </table> */ public static final int fontStyle=0x7f0101d8; /** The variation settings to be applied to the font. The string should be in the following format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be used, or the font used does not support variation settings, this attribute needs not be specified. <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 fontVariationSettings=0x7f0101db; /** The weight of the given font file. This will be used when the font is being loaded into the font stack and will override any weight information in the font's header tables. Must be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most common values are 400 for regular weight and 700 for bold weight. If unspecified, the value in the font's header tables will be used. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontWeight=0x7f0101da; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010181; /** The max gap between the bars when they are parallel to each other <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ca; /** Go button icon <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int headerLayout=0x7f01018b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010016; /** <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 helperText=0x7f0101af; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int helperTextEnabled=0x7f0101b0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int helperTextTextAppearance=0x7f0101b1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int hideMotionSpec=0x7f010119; /** Set true to hide the action bar on a vertical nested scroll of content. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002a; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hideOnScroll=0x7f01013d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hintAnimationEnabled=0x7f0101ad; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0101ac; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0101ae; /** Specifies a drawable to use for the 'home as up' indicator. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01007d; /** Specifies a layout to use for the "home" section of the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010025; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hoveredFocusedTranslationZ=0x7f010179; /** Specifies the drawable used for the application icon. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconEndPadding=0x7f01015a; /** <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>start</code></td><td>0x1</td><td></td></tr> <tr><td><code>textStart</code></td><td>0x2</td><td></td></tr> </table> */ public static final int iconGravity=0x7f010184; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconPadding=0x7f010183; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconSize=0x7f010182; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconStartPadding=0x7f010159; /** Tint to apply to the icon. <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. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconTint=0x7f0100da; /** Blending mode used to apply the icon tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the icon. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the icon. The icon’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the icon, but with the icon’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the icon with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> */ public static final int iconTintMode=0x7f0100db; /** The default state of the SearchView. If true, it will be iconified when not in use and expanded when clicked. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100e3; /** ImageButton background drawable. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008d; /** Specifies a style resource to use for an indeterminate progress spinner. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010027; /** The maximal number of items initially shown in the activity list. <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=0x7f010034; /** <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=0x7f01018e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010017; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemBackground=0x7f010189; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemHorizontalPadding=0x7f01018c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemHorizontalTranslationEnabled=0x7f010142; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemIconPadding=0x7f01018d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemIconSize=0x7f01013f; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemIconTint=0x7f010187; /** Specifies padding that should be applied to the left and right sides of system-provided items in the bar. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 itemSpacing=0x7f01017f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01018a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemTextAppearanceActive=0x7f010141; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemTextAppearanceInactive=0x7f010140; /** <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=0x7f010188; /** A reference to an array of integers representing the locations of horizontal keylines in dp from the starting edge. Child views can refer to these keylines for alignment using layout_keyline="index" where index is a 0-based index into this array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0101c9; /** <p>Must be one of the following constant values.</p> <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>selected</code></td><td>0</td><td></td></tr> <tr><td><code>labeled</code></td><td>1</td><td></td></tr> <tr><td><code>unlabeled</code></td><td>2</td><td></td></tr> </table> */ public static final int labelVisibilityMode=0x7f01013e; /** Distance from the bottom of the TextView to the last text baseline. If set, this overrides the value set for paddingBottom. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int lastBaselineToBottomHeight=0x7f01004c; /** The layout to use for the search view. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e2; /** Class name of the Layout Manager to be used. <p/> The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager and have either a default constructor or constructor with the signature (android.content.Context, android.util.AttributeSet, int, int). <p/> If the name starts with a '.', application package is prefixed. Else, if the name contains a '.', the classname is assumed to be a full class name. Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layoutManager=0x7f010000; /** The id of an anchor view that this view should position relative to. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0101cc; /** Specifies how an object should position relative to an anchor, on both the X and Y axes, within its parent's bounds. <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> Push object to the top of its container, not changing its size. </td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td> Push object to the bottom of its container, not changing its size. </td></tr> <tr><td><code>left</code></td><td>0x03</td><td> Push object to the left of its container, not changing its size. </td></tr> <tr><td><code>right</code></td><td>0x05</td><td> Push object to the right of its container, not changing its size. </td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td> Place object in the vertical center of its container, not changing its size. </td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td> Grow the vertical size of the object if needed so it completely fills its container. </td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td> Place object in the horizontal center of its container, not changing its size. </td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td> Grow the horizontal size of the object if needed so it completely fills its container. </td></tr> <tr><td><code>center</code></td><td>0x11</td><td> Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. </td></tr> <tr><td><code>fill</code></td><td>0x77</td><td> Grow the horizontal and vertical size of the object if needed so it completely fills its container. </td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td> Additional option that can be set to have the top and/or bottom edges of the child clipped to its container's bounds. The clip will be based on the vertical gravity: a top gravity will clip the bottom edge, a bottom gravity will clip the top edge, and neither will clip both edges. </td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td> Additional option that can be set to have the left and/or right edges of the child clipped to its container's bounds. The clip will be based on the horizontal gravity: a left gravity will clip the right edge, a right gravity will clip the left edge, and neither will clip both edges. </td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td> Push object to the beginning of its container, not changing its size. </td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td> Push object to the end of its container, not changing its size. </td></tr> </table> */ public static final int layout_anchorGravity=0x7f0101ce; /** The class name of a Behavior class defining special runtime behavior for this child view. <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=0x7f0101cb; /** <p>Must be one of the following constant values.</p> <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=0x7f010175; /** <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=0x7f010176; /** Specifies how this view dodges the inset edges of the CoordinatorLayout. <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> Don't dodge any edges </td></tr> <tr><td><code>top</code></td><td>0x30</td><td> Dodge the top inset edge. </td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td> Dodge the bottom inset edge. </td></tr> <tr><td><code>left</code></td><td>0x03</td><td> Dodge the left inset edge. </td></tr> <tr><td><code>right</code></td><td>0x05</td><td> Dodge the right inset edge. </td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td> Dodge the start inset edge. </td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td> Dodge the end inset edge. </td></tr> <tr><td><code>all</code></td><td>0x77</td><td> Dodge all the inset edges. </td></tr> </table> */ public static final int layout_dodgeInsetEdges=0x7f0101d0; /** Specifies how this view insets the CoordinatorLayout and make some other views dodge it. <p>Must be one of the following constant values.</p> <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> Don't inset. </td></tr> <tr><td><code>top</code></td><td>0x30</td><td> Inset the top edge. </td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td> Inset the bottom edge. </td></tr> <tr><td><code>left</code></td><td>0x03</td><td> Inset the left edge. </td></tr> <tr><td><code>right</code></td><td>0x05</td><td> Inset the right edge. </td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td> Inset the start edge. </td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td> Inset the end edge. </td></tr> </table> */ public static final int layout_insetEdge=0x7f0101cf; /** The index of a keyline this view should position relative to. android:layout_gravity will affect how the view aligns to the specified keyline. <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=0x7f0101cd; /** <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> <tr><td><code>snapMargins</code></td><td>0x20</td><td></td></tr> </table> */ public static final int layout_scrollFlags=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 layout_scrollInterpolator=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 liftOnScroll=0x7f010132; /** Explicit height between lines of text. If set, this will override the values set for lineSpacingExtra and lineSpacingMultiplier. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int lineHeight=0x7f01004a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int lineSpacing=0x7f010180; /** Drawable used as a background for selected list items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009f; /** The list divider used in alert dialogs. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 listItemLayout=0x7f01003a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listLayout=0x7f010037; /** Default menu-style ListView style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 listPopupWindowStyle=0x7f010098; /** The preferred list item height. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010092; /** A larger, more robust list item height. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010094; /** A smaller, sleeker list item height. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010093; /** The preferred padding along the left edge of list items. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010095; /** The preferred padding along the right edge of list items. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010096; /** Specifies the drawable used for the application logo. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001f; /** A content description string to describe the appearance of the associated logo image. <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=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 materialButtonStyle=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 materialCardViewStyle=0x7f01011b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxActionInlineWidth=0x7f010192; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010102; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxImageSize=0x7f01017d; /** When set to true, all children with a weight will be considered having the minimum size of the largest child. If false, all children are measured normally. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100cf; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int menu=0x7f010186; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010038; /** Text to set as the content description for the navigation button located at the start of the toolbar. <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=0x7f010107; /** Icon drawable to use for the navigation button located at the start of the toolbar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010106; /** The type of navigation to use. <p>Must be one of the following constant values.</p> <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> Normal static title text </td></tr> <tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr> <tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr> </table> */ public static final int navigationMode=0x7f010019; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int navigationViewStyle=0x7f01011c; /** The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) keyboard. The values should be kept in sync with KeyEvent <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static final int numericModifiers=0x7f0100d3; /** Whether the popup window should overlap its anchor view. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100de; /** Bottom padding to use when no buttons are present. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100e0; /** Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01010c; /** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01010b; /** Top padding to use when no title is present. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100e1; /** The background of a panel when it is inset from the left and right edges of the screen. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009c; /** Default Panel Menu style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009e; /** Default Panel Menu width. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01009d; /** <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=0x7f0101ba; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0101b9; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0101b8; /** <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=0x7f0101bb; /** <p>Must be one of the following constant values.</p> <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=0x7f0101bc; /** Default PopupMenu style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010089; /** Reference to a theme that should be used to inflate popups shown by widgets in the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010032; /** Default PopupWindow style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008a; /** Whether space should be reserved in layout when an icon is missing. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100dc; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01017a; /** Specifies the horizontal padding on either end for an embedded progress bar. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010028; /** Specifies a style resource to use for an embedded progress bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010026; /** Background for the section containing the search query <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ed; /** An optional user-defined query hint string to be displayed in the empty query field. <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=0x7f0100e4; /** Default RadioButton style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b8; /** Default RatingBar style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100b9; /** Indicator RatingBar style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ba; /** Small indicator RatingBar style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 reverseLayout=0x7f010002; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int rippleColor=0x7f01011d; /** <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=0x7f010171; /** <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 scrimBackground=0x7f01011e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int scrimVisibleHeightTrigger=0x7f010170; /** Search icon displayed as a text field hint <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e9; /** Search icon <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e8; /** Style for the search query widget. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010091; /** Default SeekBar style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100bc; /** A style that may be applied to buttons or other selectable items that should react to pressed and focus states, but that do not have a clear visual border along the edges. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010081; /** Background drawable for borderless standalone items that need focus/pressed states. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010082; /** How this item should display in the Action Bar, if present. <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> Never show this item in an action bar, show it in the overflow menu instead. Mutually exclusive with "ifRoom" and "always". </td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined by the system. Favor this option over "always" where possible. Mutually exclusive with "never" and "always". </td></tr> <tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override the system's limits of how much stuff to put there. This may make your action bar look bad on some screens. In most cases you should use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr> <tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text label with it even if it has an icon representation. </td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu item. When expanded, the action view takes over a larger segment of its container. </td></tr> </table> */ public static final int showAsAction=0x7f0100d4; /** Setting for which dividers to show. <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=0x7f0100d0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int showMotionSpec=0x7f01011f; /** Whether to draw on/off text. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100f9; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01003b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010039; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int singleLine=0x7f010163; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int singleSelection=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 snackbarButtonStyle=0x7f010191; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int snackbarStyle=0x7f010190; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spanCount=0x7f010001; /** Whether bars should rotate or not during transition <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100c8; /** Default Spinner style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01007c; /** Default Spinner style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100bd; /** Whether to split the track and leave a gap for the thumb drawable. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100f8; /** Sets a drawable as the content of this ImageView. Allows the use of vector drawable when running on older versions of the platform. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int stackFromEnd=0x7f010003; /** State identifier indicating the popup will be above the anchor. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100df; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010133; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010134; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_liftable=0x7f010136; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_lifted=0x7f010135; /** Drawable to display behind the status bar when the view is set to draw behind it. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int statusBarBackground=0x7f0101ca; /** <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=0x7f01016e; /** <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 strokeColor=0x7f010120; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int strokeWidth=0x7f010121; /** Drawable for the arrow icon indicating a particular item is a submenu. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100dd; /** Background for the section containing the action (e.g. voice search) <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ee; /** Specifies subtitle text used for navigationMode="normal" <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=0x7f01001b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100fb; /** A color to apply to the subtitle string. <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=0x7f01010a; /** Specifies a style to use for subtitle text. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001d; /** Layout for query suggestion rows <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ec; /** Minimum width for the switch component <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchMinWidth=0x7f0100f6; /** Minimum space between the switch and caption text <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchPadding=0x7f0100f7; /** Default style for the Switch widget. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100be; /** TextAppearance style for text displayed on the switch thumb. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=0x7f0100f5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010196; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010195; /** <p>Must be one of the following constant values.</p> <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=0x7f01019c; /** <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 tabIconTint=0x7f0101a8; /** <p>Must be one of the following constant values.</p> <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 tabIconTintMode=0x7f0101a9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabIndicator=0x7f010197; /** <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 tabIndicatorAnimationDuration=0x7f010199; /** <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=0x7f010193; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabIndicatorFullWidth=0x7f01019a; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>bottom</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> <tr><td><code>top</code></td><td>2</td><td></td></tr> <tr><td><code>stretch</code></td><td>3</td><td></td></tr> </table> */ public static final int tabIndicatorGravity=0x7f010198; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010194; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabInlineLabel=0x7f01019d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01019f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01019e; /** <p>Must be one of the following constant values.</p> <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=0x7f01019b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0101a7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0101a6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0101a5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0101a3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0101a4; /** <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 tabRippleColor=0x7f0101aa; /** <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=0x7f0101a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabStyle=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 tabTextAppearance=0x7f0101a0; /** <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=0x7f0101a1; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabUnboundedRipple=0x7f0101ab; /** Present the text in ALL CAPS. This may use a small-caps form when available. <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=0x7f010043; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceBody1=0x7f010123; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceBody2=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 textAppearanceButton=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 textAppearanceCaption=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 textAppearanceHeadline1=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 textAppearanceHeadline2=0x7f010128; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceHeadline3=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 textAppearanceHeadline4=0x7f01012a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceHeadline5=0x7f01012b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceHeadline6=0x7f01012c; /** Text color, typeface, size, and style for the text inside of a popup menu. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010073; /** The preferred TextAppearance for the primary text of list items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010099; /** The preferred TextAppearance for the secondary text of list items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSecondary=0x7f01009a; /** The preferred TextAppearance for the primary text of small list items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceOverline=0x7f01012d; /** Text color, typeface, size, and style for header text inside of a popup menu. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010075; /** Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008f; /** Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008e; /** Text color, typeface, size, and style for small text inside of a popup menu. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010074; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSubtitle1=0x7f01012e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSubtitle2=0x7f01012f; /** Color of list item text in alert dialogs. <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=0x7f0100ae; /** Text color for urls in search suggestions, used by things like global search <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=0x7f010090; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int textEndPadding=0x7f01015c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textInputStyle=0x7f010130; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int textStartPadding=0x7f01015b; /** Deprecated. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01010d; /** The thickness (stroke size) for the bar paint <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ce; /** Amount of padding on either side of text within the switch thumb. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTextPadding=0x7f0100f4; /** Tint to apply to the thumb drawable. <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=0x7f0100ef; /** Blending mode used to apply the thumb tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and drawable color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> */ public static final int thumbTintMode=0x7f0100f0; /** Drawable displayed at each progress position on a seekbar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010040; /** Tint to apply to the tick mark drawable. <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=0x7f010041; /** Blending mode used to apply the tick mark tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and drawable color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> */ public static final int tickMarkTintMode=0x7f010042; /** Tint to apply to the image source. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tint=0x7f01003e; /** Blending mode used to apply the image source tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> */ public static final int tintMode=0x7f01003f; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int title=0x7f010018; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010174; /** Specifies extra space on the left, start, right and end sides of the toolbar's title. Margin values should be positive. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100fc; /** Specifies extra space on the bottom side of the toolbar's title. If both this attribute and titleMargin are specified, then this attribute takes precedence. Margin values should be positive. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010100; /** Specifies extra space on the end side of the toolbar's title. If both this attribute and titleMargin are specified, then this attribute takes precedence. Margin values should be positive. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100fe; /** Specifies extra space on the start side of the toolbar's title. If both this attribute and titleMargin are specified, then this attribute takes precedence. Margin values should be positive. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100fd; /** Specifies extra space on the top side of the toolbar's title. If both this attribute and titleMargin are specified, then this attribute takes precedence. Margin values should be positive. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ff; /** {@deprecated Use titleMargin} <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ @Deprecated public static final int titleMargins=0x7f010101; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextAppearance=0x7f0100fa; /** A color to apply to the title string. <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=0x7f010109; /** Specifies a style to use for title text. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01001c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarId=0x7f01016f; /** Default Toolar NavigationButtonStyle <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010088; /** Default Toolbar style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010087; /** Foreground color to use for tooltips <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int tooltipForegroundColor=0x7f0100c1; /** Background to use for tooltips <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tooltipFrameBackground=0x7f0100c0; /** The tooltip text associated with the item. <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=0x7f0100d9; /** Drawable to use as the "track" that the switch thumb slides within. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f0100f1; /** Tint to apply to the track. <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=0x7f0100f2; /** Blending mode used to apply the track tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and drawable color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> */ public static final int trackTintMode=0x7f0100f3; /** The index of the font in the tcc font file. If the font file referenced is not in the tcc format, this attribute needs not be specified. <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 ttcIndex=0x7f0101dc; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01017c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int viewInflaterClass=0x7f0100c3; /** Voice button icon <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ea; /** Flag indicating whether this window should have an Action Bar in place of the usual title bar. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01004d; /** Flag indicating whether this window's Action Bar should overlay application content. Does nothing if the window would not have an Action Bar. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01004f; /** Flag indicating whether action modes should overlay window content when there is not reserved space for their UI (such as an Action Bar). <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010050; /** A fixed height for the window along the major axis of the screen, that is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010054; /** A fixed height for the window along the minor axis of the screen, that is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010052; /** A fixed width for the window along the major axis of the screen, that is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010051; /** A fixed width for the window along the minor axis of the screen, that is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010053; /** The minimum width the window is allowed to be, along the major axis of the screen. That is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010055; /** The minimum width the window is allowed to be, along the minor axis of the screen. That is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010056; /** Flag indicating whether there should be no title on this window. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01004e; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0e0000; public static final int abc_allow_stacked_button_bar=0x7f0e0001; public static final int abc_config_actionMenuItemAllCaps=0x7f0e0002; public static final int mtrl_btn_textappearance_all_caps=0x7f0e0003; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0c005e; public static final int abc_background_cache_hint_selector_material_light=0x7f0c005f; public static final int abc_btn_colored_borderless_text_material=0x7f0c0060; public static final int abc_btn_colored_text_material=0x7f0c0061; public static final int abc_color_highlight_material=0x7f0c0062; public static final int abc_hint_foreground_material_dark=0x7f0c0063; public static final int abc_hint_foreground_material_light=0x7f0c0064; public static final int abc_input_method_navigation_guard=0x7f0c0004; public static final int abc_primary_text_disable_only_material_dark=0x7f0c0065; public static final int abc_primary_text_disable_only_material_light=0x7f0c0066; public static final int abc_primary_text_material_dark=0x7f0c0067; public static final int abc_primary_text_material_light=0x7f0c0068; public static final int abc_search_url_text=0x7f0c0069; public static final int abc_search_url_text_normal=0x7f0c0005; public static final int abc_search_url_text_pressed=0x7f0c0006; public static final int abc_search_url_text_selected=0x7f0c0007; public static final int abc_secondary_text_material_dark=0x7f0c006a; public static final int abc_secondary_text_material_light=0x7f0c006b; public static final int abc_tint_btn_checkable=0x7f0c006c; public static final int abc_tint_default=0x7f0c006d; public static final int abc_tint_edittext=0x7f0c006e; public static final int abc_tint_seek_thumb=0x7f0c006f; public static final int abc_tint_spinner=0x7f0c0070; public static final int abc_tint_switch_track=0x7f0c0071; public static final int accent_material_dark=0x7f0c0008; public static final int accent_material_light=0x7f0c0009; public static final int background_floating_material_dark=0x7f0c000a; public static final int background_floating_material_light=0x7f0c000b; public static final int background_material_dark=0x7f0c000c; public static final int background_material_light=0x7f0c000d; public static final int bright_foreground_disabled_material_dark=0x7f0c000e; public static final int bright_foreground_disabled_material_light=0x7f0c000f; public static final int bright_foreground_inverse_material_dark=0x7f0c0010; public static final int bright_foreground_inverse_material_light=0x7f0c0011; public static final int bright_foreground_material_dark=0x7f0c0012; public static final int bright_foreground_material_light=0x7f0c0013; public static final int browser_actions_bg_grey=0x7f0c0054; public static final int browser_actions_divider_color=0x7f0c0055; public static final int browser_actions_text_color=0x7f0c0056; public static final int browser_actions_title_color=0x7f0c0057; public static final int button_material_dark=0x7f0c0014; public static final int button_material_light=0x7f0c0015; public static final int cardview_dark_background=0x7f0c0000; public static final int cardview_light_background=0x7f0c0001; public static final int cardview_shadow_end_color=0x7f0c0002; public static final int cardview_shadow_start_color=0x7f0c0003; public static final int colorAccent=0x7f0c005d; public static final int colorPrimary=0x7f0c005b; public static final int colorPrimaryDark=0x7f0c005c; public static final int design_bottom_navigation_shadow_color=0x7f0c0041; public static final int design_default_color_primary=0x7f0c0042; public static final int design_default_color_primary_dark=0x7f0c0043; public static final int design_error=0x7f0c0072; public static final int design_fab_shadow_end_color=0x7f0c0044; public static final int design_fab_shadow_mid_color=0x7f0c0045; public static final int design_fab_shadow_start_color=0x7f0c0046; public static final int design_fab_stroke_end_inner_color=0x7f0c0047; public static final int design_fab_stroke_end_outer_color=0x7f0c0048; public static final int design_fab_stroke_top_inner_color=0x7f0c0049; public static final int design_fab_stroke_top_outer_color=0x7f0c004a; public static final int design_snackbar_background_color=0x7f0c004b; public static final int design_tint_password_toggle=0x7f0c0073; public static final int dim_foreground_disabled_material_dark=0x7f0c0016; public static final int dim_foreground_disabled_material_light=0x7f0c0017; public static final int dim_foreground_material_dark=0x7f0c0018; public static final int dim_foreground_material_light=0x7f0c0019; public static final int error_color_material_dark=0x7f0c001a; public static final int error_color_material_light=0x7f0c001b; public static final int foreground_material_dark=0x7f0c001c; public static final int foreground_material_light=0x7f0c001d; public static final int highlighted_text_material_dark=0x7f0c001e; public static final int highlighted_text_material_light=0x7f0c001f; public static final int launcher_background=0x7f0c005a; public static final int material_blue_grey_800=0x7f0c0020; public static final int material_blue_grey_900=0x7f0c0021; public static final int material_blue_grey_950=0x7f0c0022; public static final int material_deep_teal_200=0x7f0c0023; public static final int material_deep_teal_500=0x7f0c0024; public static final int material_grey_100=0x7f0c0025; public static final int material_grey_300=0x7f0c0026; public static final int material_grey_50=0x7f0c0027; public static final int material_grey_600=0x7f0c0028; public static final int material_grey_800=0x7f0c0029; public static final int material_grey_850=0x7f0c002a; public static final int material_grey_900=0x7f0c002b; public static final int mtrl_bottom_nav_colored_item_tint=0x7f0c0074; public static final int mtrl_bottom_nav_item_tint=0x7f0c0075; public static final int mtrl_btn_bg_color_disabled=0x7f0c004c; public static final int mtrl_btn_bg_color_selector=0x7f0c0076; public static final int mtrl_btn_ripple_color=0x7f0c0077; public static final int mtrl_btn_stroke_color_selector=0x7f0c0078; public static final int mtrl_btn_text_btn_ripple_color=0x7f0c0079; public static final int mtrl_btn_text_color_disabled=0x7f0c004d; public static final int mtrl_btn_text_color_selector=0x7f0c007a; public static final int mtrl_btn_transparent_bg_color=0x7f0c004e; public static final int mtrl_chip_background_color=0x7f0c007b; public static final int mtrl_chip_close_icon_tint=0x7f0c007c; public static final int mtrl_chip_ripple_color=0x7f0c007d; public static final int mtrl_chip_text_color=0x7f0c007e; public static final int mtrl_fab_ripple_color=0x7f0c007f; public static final int mtrl_scrim_color=0x7f0c004f; public static final int mtrl_tabs_colored_ripple_color=0x7f0c0080; public static final int mtrl_tabs_icon_color_selector=0x7f0c0081; public static final int mtrl_tabs_icon_color_selector_colored=0x7f0c0082; public static final int mtrl_tabs_legacy_text_color_selector=0x7f0c0083; public static final int mtrl_tabs_ripple_color=0x7f0c0084; public static final int mtrl_text_btn_text_color_selector=0x7f0c0085; public static final int mtrl_textinput_default_box_stroke_color=0x7f0c0050; public static final int mtrl_textinput_disabled_color=0x7f0c0051; public static final int mtrl_textinput_filled_box_default_background_color=0x7f0c0052; public static final int mtrl_textinput_hovered_box_stroke_color=0x7f0c0053; public static final int notification_action_color_filter=0x7f0c0058; public static final int notification_icon_bg_color=0x7f0c0059; public static final int notification_material_background_media_default_color=0x7f0c0040; public static final int primary_dark_material_dark=0x7f0c002c; public static final int primary_dark_material_light=0x7f0c002d; public static final int primary_material_dark=0x7f0c002e; public static final int primary_material_light=0x7f0c002f; public static final int primary_text_default_material_dark=0x7f0c0030; public static final int primary_text_default_material_light=0x7f0c0031; public static final int primary_text_disabled_material_dark=0x7f0c0032; public static final int primary_text_disabled_material_light=0x7f0c0033; public static final int ripple_material_dark=0x7f0c0034; public static final int ripple_material_light=0x7f0c0035; public static final int secondary_text_default_material_dark=0x7f0c0036; public static final int secondary_text_default_material_light=0x7f0c0037; public static final int secondary_text_disabled_material_dark=0x7f0c0038; public static final int secondary_text_disabled_material_light=0x7f0c0039; public static final int switch_thumb_disabled_material_dark=0x7f0c003a; public static final int switch_thumb_disabled_material_light=0x7f0c003b; public static final int switch_thumb_material_dark=0x7f0c0086; public static final int switch_thumb_material_light=0x7f0c0087; public static final int switch_thumb_normal_material_dark=0x7f0c003c; public static final int switch_thumb_normal_material_light=0x7f0c003d; public static final int tooltip_background_dark=0x7f0c003e; public static final int tooltip_background_light=0x7f0c003f; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f0a0014; public static final int abc_action_bar_content_inset_with_nav=0x7f0a0015; public static final int abc_action_bar_default_height_material=0x7f0a000a; public static final int abc_action_bar_default_padding_end_material=0x7f0a0016; public static final int abc_action_bar_default_padding_start_material=0x7f0a0017; public static final int abc_action_bar_elevation_material=0x7f0a0019; public static final int abc_action_bar_icon_vertical_padding_material=0x7f0a001a; public static final int abc_action_bar_overflow_padding_end_material=0x7f0a001b; public static final int abc_action_bar_overflow_padding_start_material=0x7f0a001c; public static final int abc_action_bar_stacked_max_height=0x7f0a001d; public static final int abc_action_bar_stacked_tab_max_width=0x7f0a001e; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f0a001f; public static final int abc_action_bar_subtitle_top_margin_material=0x7f0a0020; public static final int abc_action_button_min_height_material=0x7f0a0021; public static final int abc_action_button_min_width_material=0x7f0a0022; public static final int abc_action_button_min_width_overflow_material=0x7f0a0023; public static final int abc_alert_dialog_button_bar_height=0x7f0a0009; public static final int abc_alert_dialog_button_dimen=0x7f0a0024; public static final int abc_button_inset_horizontal_material=0x7f0a0025; public static final int abc_button_inset_vertical_material=0x7f0a0026; public static final int abc_button_padding_horizontal_material=0x7f0a0027; public static final int abc_button_padding_vertical_material=0x7f0a0028; public static final int abc_cascading_menus_min_smallest_width=0x7f0a0029; public static final int abc_config_prefDialogWidth=0x7f0a000d; public static final int abc_control_corner_material=0x7f0a002a; public static final int abc_control_inset_material=0x7f0a002b; public static final int abc_control_padding_material=0x7f0a002c; public static final int abc_dialog_corner_radius_material=0x7f0a002d; public static final int abc_dialog_fixed_height_major=0x7f0a000e; public static final int abc_dialog_fixed_height_minor=0x7f0a000f; public static final int abc_dialog_fixed_width_major=0x7f0a0010; public static final int abc_dialog_fixed_width_minor=0x7f0a0011; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f0a002e; public static final int abc_dialog_list_padding_top_no_title=0x7f0a002f; public static final int abc_dialog_min_width_major=0x7f0a0012; public static final int abc_dialog_min_width_minor=0x7f0a0013; public static final int abc_dialog_padding_material=0x7f0a0030; public static final int abc_dialog_padding_top_material=0x7f0a0031; public static final int abc_dialog_title_divider_material=0x7f0a0032; public static final int abc_disabled_alpha_material_dark=0x7f0a0033; public static final int abc_disabled_alpha_material_light=0x7f0a0034; public static final int abc_dropdownitem_icon_width=0x7f0a0035; public static final int abc_dropdownitem_text_padding_left=0x7f0a0036; public static final int abc_dropdownitem_text_padding_right=0x7f0a0037; public static final int abc_edit_text_inset_bottom_material=0x7f0a0038; public static final int abc_edit_text_inset_horizontal_material=0x7f0a0039; public static final int abc_edit_text_inset_top_material=0x7f0a003a; public static final int abc_floating_window_z=0x7f0a003b; public static final int abc_list_item_padding_horizontal_material=0x7f0a003c; public static final int abc_panel_menu_list_width=0x7f0a003d; public static final int abc_progress_bar_height_material=0x7f0a003e; public static final int abc_search_view_preferred_height=0x7f0a003f; public static final int abc_search_view_preferred_width=0x7f0a0040; public static final int abc_seekbar_track_background_height_material=0x7f0a0041; public static final int abc_seekbar_track_progress_height_material=0x7f0a0042; public static final int abc_select_dialog_padding_start_material=0x7f0a0043; public static final int abc_switch_padding=0x7f0a0018; public static final int abc_text_size_body_1_material=0x7f0a0044; public static final int abc_text_size_body_2_material=0x7f0a0045; public static final int abc_text_size_button_material=0x7f0a0046; public static final int abc_text_size_caption_material=0x7f0a0047; public static final int abc_text_size_display_1_material=0x7f0a0048; public static final int abc_text_size_display_2_material=0x7f0a0049; public static final int abc_text_size_display_3_material=0x7f0a004a; public static final int abc_text_size_display_4_material=0x7f0a004b; public static final int abc_text_size_headline_material=0x7f0a004c; public static final int abc_text_size_large_material=0x7f0a004d; public static final int abc_text_size_medium_material=0x7f0a004e; public static final int abc_text_size_menu_header_material=0x7f0a004f; public static final int abc_text_size_menu_material=0x7f0a0050; public static final int abc_text_size_small_material=0x7f0a0051; public static final int abc_text_size_subhead_material=0x7f0a0052; public static final int abc_text_size_subtitle_material_toolbar=0x7f0a000b; public static final int abc_text_size_title_material=0x7f0a0053; public static final int abc_text_size_title_material_toolbar=0x7f0a000c; public static final int browser_actions_context_menu_max_width=0x7f0a00c5; public static final int browser_actions_context_menu_min_padding=0x7f0a00c6; public static final int cardview_compat_inset_shadow=0x7f0a0006; public static final int cardview_default_elevation=0x7f0a0007; public static final int cardview_default_radius=0x7f0a0008; public static final int compat_button_inset_horizontal_material=0x7f0a00cb; public static final int compat_button_inset_vertical_material=0x7f0a00cc; public static final int compat_button_padding_horizontal_material=0x7f0a00cd; public static final int compat_button_padding_vertical_material=0x7f0a00ce; public static final int compat_control_corner_material=0x7f0a00cf; public static final int compat_notification_large_icon_max_height=0x7f0a00d0; public static final int compat_notification_large_icon_max_width=0x7f0a00d1; public static final int design_appbar_elevation=0x7f0a0071; public static final int design_bottom_navigation_active_item_max_width=0x7f0a0072; public static final int design_bottom_navigation_active_item_min_width=0x7f0a0073; public static final int design_bottom_navigation_active_text_size=0x7f0a0074; public static final int design_bottom_navigation_elevation=0x7f0a0075; public static final int design_bottom_navigation_height=0x7f0a0076; public static final int design_bottom_navigation_icon_size=0x7f0a0077; public static final int design_bottom_navigation_item_max_width=0x7f0a0078; public static final int design_bottom_navigation_item_min_width=0x7f0a0079; public static final int design_bottom_navigation_margin=0x7f0a007a; public static final int design_bottom_navigation_shadow_height=0x7f0a007b; public static final int design_bottom_navigation_text_size=0x7f0a007c; public static final int design_bottom_sheet_modal_elevation=0x7f0a007d; public static final int design_bottom_sheet_peek_height_min=0x7f0a007e; public static final int design_fab_border_width=0x7f0a007f; public static final int design_fab_elevation=0x7f0a0080; public static final int design_fab_image_size=0x7f0a0081; public static final int design_fab_size_mini=0x7f0a0082; public static final int design_fab_size_normal=0x7f0a0083; public static final int design_fab_translation_z_hovered_focused=0x7f0a0084; public static final int design_fab_translation_z_pressed=0x7f0a0085; public static final int design_navigation_elevation=0x7f0a0086; public static final int design_navigation_icon_padding=0x7f0a0087; public static final int design_navigation_icon_size=0x7f0a0088; public static final int design_navigation_item_horizontal_padding=0x7f0a0089; public static final int design_navigation_item_icon_padding=0x7f0a008a; public static final int design_navigation_max_width=0x7f0a0069; public static final int design_navigation_padding_bottom=0x7f0a008b; public static final int design_navigation_separator_vertical_padding=0x7f0a008c; public static final int design_snackbar_action_inline_max_width=0x7f0a006a; public static final int design_snackbar_background_corner_radius=0x7f0a006b; public static final int design_snackbar_elevation=0x7f0a008d; public static final int design_snackbar_extra_spacing_horizontal=0x7f0a006c; public static final int design_snackbar_max_width=0x7f0a006d; public static final int design_snackbar_min_width=0x7f0a006e; public static final int design_snackbar_padding_horizontal=0x7f0a008e; public static final int design_snackbar_padding_vertical=0x7f0a008f; public static final int design_snackbar_padding_vertical_2lines=0x7f0a006f; public static final int design_snackbar_text_size=0x7f0a0090; public static final int design_tab_max_width=0x7f0a0091; public static final int design_tab_scrollable_min_width=0x7f0a0070; public static final int design_tab_text_size=0x7f0a0092; public static final int design_tab_text_size_2line=0x7f0a0093; public static final int design_textinput_caption_translate_y=0x7f0a0094; public static final int disabled_alpha_material_dark=0x7f0a0054; public static final int disabled_alpha_material_light=0x7f0a0055; public static final int fastscroll_default_thickness=0x7f0a0000; public static final int fastscroll_margin=0x7f0a0001; public static final int fastscroll_minimum_range=0x7f0a0002; public static final int highlight_alpha_material_colored=0x7f0a0056; public static final int highlight_alpha_material_dark=0x7f0a0057; public static final int highlight_alpha_material_light=0x7f0a0058; public static final int hint_alpha_material_dark=0x7f0a0059; public static final int hint_alpha_material_light=0x7f0a005a; public static final int hint_pressed_alpha_material_dark=0x7f0a005b; public static final int hint_pressed_alpha_material_light=0x7f0a005c; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f0a0003; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f0a0004; public static final int item_touch_helper_swipe_escape_velocity=0x7f0a0005; public static final int mtrl_bottomappbar_fabOffsetEndMode=0x7f0a0095; public static final int mtrl_bottomappbar_fab_cradle_margin=0x7f0a0096; public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius=0x7f0a0097; public static final int mtrl_bottomappbar_fab_cradle_vertical_offset=0x7f0a0098; public static final int mtrl_bottomappbar_height=0x7f0a0099; public static final int mtrl_btn_corner_radius=0x7f0a009a; public static final int mtrl_btn_dialog_btn_min_width=0x7f0a009b; public static final int mtrl_btn_disabled_elevation=0x7f0a009c; public static final int mtrl_btn_disabled_z=0x7f0a009d; public static final int mtrl_btn_elevation=0x7f0a009e; public static final int mtrl_btn_focused_z=0x7f0a009f; public static final int mtrl_btn_hovered_z=0x7f0a00a0; public static final int mtrl_btn_icon_btn_padding_left=0x7f0a00a1; public static final int mtrl_btn_icon_padding=0x7f0a00a2; public static final int mtrl_btn_inset=0x7f0a00a3; public static final int mtrl_btn_letter_spacing=0x7f0a00a4; public static final int mtrl_btn_padding_bottom=0x7f0a00a5; public static final int mtrl_btn_padding_left=0x7f0a00a6; public static final int mtrl_btn_padding_right=0x7f0a00a7; public static final int mtrl_btn_padding_top=0x7f0a00a8; public static final int mtrl_btn_pressed_z=0x7f0a00a9; public static final int mtrl_btn_stroke_size=0x7f0a00aa; public static final int mtrl_btn_text_btn_icon_padding=0x7f0a00ab; public static final int mtrl_btn_text_btn_padding_left=0x7f0a00ac; public static final int mtrl_btn_text_btn_padding_right=0x7f0a00ad; public static final int mtrl_btn_text_size=0x7f0a00ae; public static final int mtrl_btn_z=0x7f0a00af; public static final int mtrl_card_elevation=0x7f0a00b0; public static final int mtrl_card_spacing=0x7f0a00b1; public static final int mtrl_chip_pressed_translation_z=0x7f0a00b2; public static final int mtrl_chip_text_size=0x7f0a00b3; public static final int mtrl_fab_elevation=0x7f0a00b4; public static final int mtrl_fab_translation_z_hovered_focused=0x7f0a00b5; public static final int mtrl_fab_translation_z_pressed=0x7f0a00b6; public static final int mtrl_navigation_elevation=0x7f0a00b7; public static final int mtrl_navigation_item_horizontal_padding=0x7f0a00b8; public static final int mtrl_navigation_item_icon_padding=0x7f0a00b9; public static final int mtrl_snackbar_background_corner_radius=0x7f0a00ba; public static final int mtrl_snackbar_margin=0x7f0a00bb; public static final int mtrl_textinput_box_bottom_offset=0x7f0a00bc; public static final int mtrl_textinput_box_corner_radius_medium=0x7f0a00bd; public static final int mtrl_textinput_box_corner_radius_small=0x7f0a00be; public static final int mtrl_textinput_box_label_cutout_padding=0x7f0a00bf; public static final int mtrl_textinput_box_padding_end=0x7f0a00c0; public static final int mtrl_textinput_box_stroke_width_default=0x7f0a00c1; public static final int mtrl_textinput_box_stroke_width_focused=0x7f0a00c2; public static final int mtrl_textinput_outline_box_expanded_padding=0x7f0a00c3; public static final int mtrl_toolbar_default_height=0x7f0a00c4; public static final int notification_action_icon_size=0x7f0a00d2; public static final int notification_action_text_size=0x7f0a00d3; public static final int notification_big_circle_margin=0x7f0a00d4; public static final int notification_content_margin_start=0x7f0a00c8; public static final int notification_large_icon_height=0x7f0a00d5; public static final int notification_large_icon_width=0x7f0a00d6; public static final int notification_main_column_padding_top=0x7f0a00c9; public static final int notification_media_narrow_margin=0x7f0a00ca; public static final int notification_right_icon_size=0x7f0a00d7; public static final int notification_right_side_padding_top=0x7f0a00c7; public static final int notification_small_icon_background_padding=0x7f0a00d8; public static final int notification_small_icon_size_as_large=0x7f0a00d9; public static final int notification_subtext_size=0x7f0a00da; public static final int notification_top_pad=0x7f0a00db; public static final int notification_top_pad_large_text=0x7f0a00dc; public static final int subtitle_corner_radius=0x7f0a0065; public static final int subtitle_outline_width=0x7f0a0066; public static final int subtitle_shadow_offset=0x7f0a0067; public static final int subtitle_shadow_radius=0x7f0a0068; public static final int tooltip_corner_radius=0x7f0a005d; public static final int tooltip_horizontal_padding=0x7f0a005e; public static final int tooltip_margin=0x7f0a005f; public static final int tooltip_precise_anchor_extra_offset=0x7f0a0060; public static final int tooltip_precise_anchor_threshold=0x7f0a0061; public static final int tooltip_vertical_padding=0x7f0a0062; public static final int tooltip_y_offset_non_touch=0x7f0a0063; public static final int tooltip_y_offset_touch=0x7f0a0064; } 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_material=0x7f020028; public static final int abc_list_divider_mtrl_alpha=0x7f020029; public static final int abc_list_focused_holo=0x7f02002a; public static final int abc_list_longpressed_holo=0x7f02002b; public static final int abc_list_pressed_holo_dark=0x7f02002c; public static final int abc_list_pressed_holo_light=0x7f02002d; public static final int abc_list_selector_background_transition_holo_dark=0x7f02002e; public static final int abc_list_selector_background_transition_holo_light=0x7f02002f; public static final int abc_list_selector_disabled_holo_dark=0x7f020030; public static final int abc_list_selector_disabled_holo_light=0x7f020031; public static final int abc_list_selector_holo_dark=0x7f020032; public static final int abc_list_selector_holo_light=0x7f020033; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020034; public static final int abc_popup_background_mtrl_mult=0x7f020035; public static final int abc_ratingbar_indicator_material=0x7f020036; public static final int abc_ratingbar_material=0x7f020037; public static final int abc_ratingbar_small_material=0x7f020038; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020039; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f02003a; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003b; public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003c; public static final int abc_scrubber_track_mtrl_alpha=0x7f02003d; public static final int abc_seekbar_thumb_material=0x7f02003e; public static final int abc_seekbar_tick_mark_material=0x7f02003f; public static final int abc_seekbar_track_material=0x7f020040; public static final int abc_spinner_mtrl_am_alpha=0x7f020041; public static final int abc_spinner_textfield_background_material=0x7f020042; public static final int abc_switch_thumb_material=0x7f020043; public static final int abc_switch_track_mtrl_alpha=0x7f020044; public static final int abc_tab_indicator_material=0x7f020045; public static final int abc_tab_indicator_mtrl_alpha=0x7f020046; public static final int abc_text_cursor_material=0x7f020047; public static final int abc_text_select_handle_left_mtrl_dark=0x7f020048; public static final int abc_text_select_handle_left_mtrl_light=0x7f020049; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f02004a; public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004b; public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004c; public static final int abc_text_select_handle_right_mtrl_light=0x7f02004d; public static final int abc_textfield_activated_mtrl_alpha=0x7f02004e; public static final int abc_textfield_default_mtrl_alpha=0x7f02004f; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020050; public static final int abc_textfield_search_default_mtrl_alpha=0x7f020051; public static final int abc_textfield_search_material=0x7f020052; public static final int abc_vector_test=0x7f020053; public static final int avd_hide_password=0x7f020054; public static final int avd_hide_password_1=0x7f020070; public static final int avd_hide_password_2=0x7f020071; public static final int avd_hide_password_3=0x7f020072; public static final int avd_show_password=0x7f020055; public static final int avd_show_password_1=0x7f020073; public static final int avd_show_password_2=0x7f020074; public static final int avd_show_password_3=0x7f020075; public static final int design_bottom_navigation_item_background=0x7f020056; public static final int design_fab_background=0x7f020057; public static final int design_ic_visibility=0x7f020058; public static final int design_ic_visibility_off=0x7f020059; public static final int design_password_eye=0x7f02005a; public static final int design_snackbar_background=0x7f02005b; public static final int ic_mtrl_chip_checked_black=0x7f02005c; public static final int ic_mtrl_chip_checked_circle=0x7f02005d; public static final int ic_mtrl_chip_close_circle=0x7f02005e; public static final int mtrl_snackbar_background=0x7f02005f; public static final int mtrl_tabs_default_indicator=0x7f020060; public static final int navigation_empty_icon=0x7f020061; public static final int notification_action_background=0x7f020062; public static final int notification_bg=0x7f020063; public static final int notification_bg_low=0x7f020064; public static final int notification_bg_low_normal=0x7f020065; public static final int notification_bg_low_pressed=0x7f020066; public static final int notification_bg_normal=0x7f020067; public static final int notification_bg_normal_pressed=0x7f020068; public static final int notification_icon_background=0x7f020069; public static final int notification_template_icon_bg=0x7f02006e; public static final int notification_template_icon_low_bg=0x7f02006f; public static final int notification_tile_bg=0x7f02006a; public static final int notify_panel_notification_icon_bg=0x7f02006b; public static final int tooltip_frame_dark=0x7f02006c; public static final int tooltip_frame_light=0x7f02006d; } public static final class id { public static final int ALT=0x7f0b0039; public static final int CTRL=0x7f0b003a; public static final int FUNCTION=0x7f0b003b; public static final int META=0x7f0b003c; public static final int SHIFT=0x7f0b003d; public static final int SYM=0x7f0b003e; public static final int action0=0x7f0b00b5; public static final int action_bar=0x7f0b008d; public static final int action_bar_activity_content=0x7f0b0001; public static final int action_bar_container=0x7f0b008c; public static final int action_bar_root=0x7f0b0088; public static final int action_bar_spinner=0x7f0b0002; public static final int action_bar_subtitle=0x7f0b006a; public static final int action_bar_title=0x7f0b0069; public static final int action_container=0x7f0b00b2; public static final int action_context_bar=0x7f0b008e; public static final int action_divider=0x7f0b00b9; public static final int action_image=0x7f0b00b3; public static final int action_menu_divider=0x7f0b0003; public static final int action_menu_presenter=0x7f0b0004; public static final int action_mode_bar=0x7f0b008a; public static final int action_mode_bar_stub=0x7f0b0089; public static final int action_mode_close_button=0x7f0b006b; public static final int action_text=0x7f0b00b4; public static final int actions=0x7f0b00c2; public static final int activity_chooser_view_content=0x7f0b006c; public static final int add=0x7f0b002e; public static final int alertTitle=0x7f0b007f; public static final int all=0x7f0b0064; public static final int always=0x7f0b003f; public static final int async=0x7f0b0065; public static final int auto=0x7f0b004d; public static final int beginning=0x7f0b0036; public static final int blocking=0x7f0b0066; public static final int bottom=0x7f0b0044; public static final int bottomtab_navarea=0x7f0b009d; public static final int bottomtab_tabbar=0x7f0b009e; public static final int browser_actions_header_text=0x7f0b00a0; public static final int browser_actions_menu_item_icon=0x7f0b00a2; public static final int browser_actions_menu_item_text=0x7f0b00a3; public static final int browser_actions_menu_items=0x7f0b00a1; public static final int browser_actions_menu_view=0x7f0b009f; public static final int buttonPanel=0x7f0b0072; public static final int cancel_action=0x7f0b00b6; public static final int center=0x7f0b004c; public static final int center_horizontal=0x7f0b0051; public static final int center_vertical=0x7f0b0052; public static final int checkbox=0x7f0b0086; public static final int chronometer=0x7f0b00be; public static final int clip_horizontal=0x7f0b0061; public static final int clip_vertical=0x7f0b0062; public static final int collapseActionView=0x7f0b0040; public static final int container=0x7f0b00a6; public static final int content=0x7f0b0082; public static final int contentPanel=0x7f0b0075; public static final int coordinator=0x7f0b00a7; public static final int custom=0x7f0b007c; public static final int customPanel=0x7f0b007b; public static final int decor_content_parent=0x7f0b008b; public static final int default_activity_button=0x7f0b006f; public static final int design_bottom_sheet=0x7f0b00a9; public static final int design_menu_item_action_area=0x7f0b00ae; public static final int design_menu_item_action_area_stub=0x7f0b00ad; public static final int design_menu_item_text=0x7f0b00ac; public static final int design_navigation_view=0x7f0b00ab; public static final int disableHome=0x7f0b0027; public static final int edit_query=0x7f0b008f; public static final int end=0x7f0b0037; public static final int end_padder=0x7f0b00c4; public static final int enterAlways=0x7f0b0046; public static final int enterAlwaysCollapsed=0x7f0b0047; public static final int exitUntilCollapsed=0x7f0b0048; public static final int expand_activities_button=0x7f0b006d; public static final int expanded_menu=0x7f0b0085; public static final int fill=0x7f0b005e; public static final int fill_horizontal=0x7f0b0063; public static final int fill_vertical=0x7f0b0053; public static final int filled=0x7f0b005f; public static final int fixed=0x7f0b005c; public static final int flyoutcontent_appbar=0x7f0b00b0; public static final int flyoutcontent_recycler=0x7f0b00b1; public static final int forever=0x7f0b0067; public static final int ghost_view=0x7f0b000a; public static final int group_divider=0x7f0b0081; public static final int home=0x7f0b0005; public static final int homeAsUp=0x7f0b0028; public static final int icon=0x7f0b0071; public static final int icon_group=0x7f0b00c3; public static final int ifRoom=0x7f0b0041; public static final int image=0x7f0b006e; public static final int info=0x7f0b00bf; public static final int italic=0x7f0b0068; public static final int item_touch_helper_previous_elevation=0x7f0b0000; public static final int labeled=0x7f0b004e; public static final int largeLabel=0x7f0b00a5; public static final int left=0x7f0b0054; public static final int line1=0x7f0b001c; public static final int line3=0x7f0b001d; public static final int listMode=0x7f0b0024; public static final int list_item=0x7f0b0070; public static final int main_appbar=0x7f0b00c5; public static final int main_tablayout=0x7f0b00c7; public static final int main_toolbar=0x7f0b00c6; public static final int main_viewpager=0x7f0b00c8; public static final int masked=0x7f0b00ce; public static final int media_actions=0x7f0b00b8; public static final int message=0x7f0b009c; public static final int middle=0x7f0b0038; public static final int mini=0x7f0b0059; public static final int mtrl_child_content_container=0x7f0b0014; public static final int mtrl_internal_children_alpha_tag=0x7f0b0015; public static final int multiply=0x7f0b002f; public static final int navigation_header_container=0x7f0b00aa; public static final int never=0x7f0b0042; public static final int none=0x7f0b0029; public static final int normal=0x7f0b0025; public static final int notification_background=0x7f0b00c1; public static final int notification_main_column=0x7f0b00bb; public static final int notification_main_column_container=0x7f0b00ba; public static final int outline=0x7f0b0060; public static final int parallax=0x7f0b0057; public static final int parentPanel=0x7f0b0074; public static final int parent_matrix=0x7f0b000b; public static final int pin=0x7f0b0058; public static final int progress_circular=0x7f0b0006; public static final int progress_horizontal=0x7f0b0007; public static final int radio=0x7f0b0087; public static final int right=0x7f0b0055; public static final int right_icon=0x7f0b00c0; public static final int right_side=0x7f0b00bc; public static final int save_image_matrix=0x7f0b000c; public static final int save_non_transition_alpha=0x7f0b000d; public static final int save_scale_type=0x7f0b000e; public static final int screen=0x7f0b0030; public static final int scroll=0x7f0b0049; public static final int scrollIndicatorDown=0x7f0b007a; public static final int scrollIndicatorUp=0x7f0b0076; public static final int scrollView=0x7f0b0077; public static final int scrollable=0x7f0b005d; public static final int search_badge=0x7f0b0091; public static final int search_bar=0x7f0b0090; public static final int search_button=0x7f0b0092; public static final int search_close_btn=0x7f0b0097; public static final int search_edit_frame=0x7f0b0093; public static final int search_go_btn=0x7f0b0099; public static final int search_mag_icon=0x7f0b0094; public static final int search_plate=0x7f0b0095; public static final int search_src_text=0x7f0b0096; public static final int search_voice_btn=0x7f0b009a; public static final int select_dialog_listview=0x7f0b009b; public static final int selected=0x7f0b004f; public static final int shellcontent_appbar=0x7f0b00c9; public static final int shellcontent_toolbar=0x7f0b00ca; public static final int shortcut=0x7f0b0083; public static final int showCustom=0x7f0b002a; public static final int showHome=0x7f0b002b; public static final int showTitle=0x7f0b002c; public static final int sliding_tabs=0x7f0b00cb; public static final int smallLabel=0x7f0b00a4; public static final int snackbar_action=0x7f0b0016; public static final int snackbar_text=0x7f0b0017; public static final int snap=0x7f0b004a; public static final int snapMargins=0x7f0b004b; public static final int spacer=0x7f0b0073; public static final int split_action_bar=0x7f0b0008; public static final int src_atop=0x7f0b0031; public static final int src_in=0x7f0b0032; public static final int src_over=0x7f0b0033; public static final int start=0x7f0b0056; public static final int status_bar_latest_event_content=0x7f0b00b7; public static final int stretch=0x7f0b005b; public static final int submenuarrow=0x7f0b0084; public static final int submit_area=0x7f0b0098; public static final int tabMode=0x7f0b0026; public static final int tag_transition_group=0x7f0b001e; public static final int tag_unhandled_key_event_manager=0x7f0b001f; public static final int tag_unhandled_key_listeners=0x7f0b0020; public static final int text=0x7f0b0021; public static final int text2=0x7f0b0022; public static final int textSpacerNoButtons=0x7f0b0079; public static final int textSpacerNoTitle=0x7f0b0078; public static final int textStart=0x7f0b005a; public static final int text_input_password_toggle=0x7f0b00af; public static final int textinput_counter=0x7f0b0018; public static final int textinput_error=0x7f0b0019; public static final int textinput_helper_text=0x7f0b001a; public static final int time=0x7f0b00bd; public static final int title=0x7f0b0023; public static final int titleDividerNoCustom=0x7f0b0080; public static final int title_template=0x7f0b007e; public static final int toolbar=0x7f0b00cc; public static final int top=0x7f0b0045; public static final int topPanel=0x7f0b007d; public static final int touch_outside=0x7f0b00a8; public static final int transition_current_scene=0x7f0b000f; public static final int transition_layout_save=0x7f0b0010; public static final int transition_position=0x7f0b0011; public static final int transition_scene_layoutid_cache=0x7f0b0012; public static final int transition_transform=0x7f0b0013; public static final int uniform=0x7f0b0034; public static final int unlabeled=0x7f0b0050; public static final int up=0x7f0b0009; public static final int useLogo=0x7f0b002d; public static final int view_offset_helper=0x7f0b001b; public static final int visible=0x7f0b00cd; public static final int withText=0x7f0b0043; public static final int wrap_content=0x7f0b0035; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0f0000; public static final int abc_config_activityShortDur=0x7f0f0001; public static final int app_bar_elevation_anim_duration=0x7f0f0005; public static final int bottom_sheet_slide_duration=0x7f0f0006; public static final int cancel_button_image_alpha=0x7f0f0002; public static final int config_tooltipAnimTime=0x7f0f0003; public static final int design_snackbar_text_max_lines=0x7f0f0004; public static final int design_tab_indicator_anim_duration_ms=0x7f0f0007; public static final int hide_password_duration=0x7f0f0008; public static final int mtrl_btn_anim_delay_ms=0x7f0f0009; public static final int mtrl_btn_anim_duration_ms=0x7f0f000a; public static final int mtrl_chip_anim_duration=0x7f0f000b; public static final int mtrl_tab_indicator_anim_duration_ms=0x7f0f000c; public static final int show_password_duration=0x7f0f000d; public static final int status_bar_notification_info_maxnum=0x7f0f000e; } public static final class interpolator { public static final int mtrl_fast_out_linear_in=0x7f070000; public static final int mtrl_fast_out_slow_in=0x7f070001; public static final int mtrl_linear=0x7f070002; public static final int mtrl_linear_out_slow_in=0x7f070003; } 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_menu_item_layout=0x7f040002; public static final int abc_action_menu_layout=0x7f040003; public static final int abc_action_mode_bar=0x7f040004; public static final int abc_action_mode_close_item_material=0x7f040005; public static final int abc_activity_chooser_view=0x7f040006; public static final int abc_activity_chooser_view_list_item=0x7f040007; public static final int abc_alert_dialog_button_bar_material=0x7f040008; public static final int abc_alert_dialog_material=0x7f040009; public static final int abc_alert_dialog_title_material=0x7f04000a; public static final int abc_cascading_menu_item_layout=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 abc_tooltip=0x7f04001b; public static final int bottomtablayout=0x7f04001c; public static final int browser_actions_context_menu_page=0x7f04001d; public static final int browser_actions_context_menu_row=0x7f04001e; public static final int design_bottom_navigation_item=0x7f04001f; public static final int design_bottom_sheet_dialog=0x7f040020; public static final int design_layout_snackbar=0x7f040021; public static final int design_layout_snackbar_include=0x7f040022; public static final int design_layout_tab_icon=0x7f040023; public static final int design_layout_tab_text=0x7f040024; public static final int design_menu_item_action_area=0x7f040025; public static final int design_navigation_item=0x7f040026; public static final int design_navigation_item_header=0x7f040027; public static final int design_navigation_item_separator=0x7f040028; public static final int design_navigation_item_subheader=0x7f040029; public static final int design_navigation_menu=0x7f04002a; public static final int design_navigation_menu_item=0x7f04002b; public static final int design_text_input_password_icon=0x7f04002c; public static final int flyoutcontent=0x7f04002d; public static final int mtrl_layout_snackbar=0x7f04002e; public static final int mtrl_layout_snackbar_include=0x7f04002f; public static final int notification_action=0x7f040030; public static final int notification_action_tombstone=0x7f040031; public static final int notification_media_action=0x7f040032; public static final int notification_media_cancel_action=0x7f040033; public static final int notification_template_big_media=0x7f040034; public static final int notification_template_big_media_custom=0x7f040035; public static final int notification_template_big_media_narrow=0x7f040036; public static final int notification_template_big_media_narrow_custom=0x7f040037; public static final int notification_template_custom_big=0x7f040038; public static final int notification_template_icon_group=0x7f040039; public static final int notification_template_lines_media=0x7f04003a; public static final int notification_template_media=0x7f04003b; public static final int notification_template_media_custom=0x7f04003c; public static final int notification_template_part_chronometer=0x7f04003d; public static final int notification_template_part_time=0x7f04003e; public static final int rootlayout=0x7f04003f; public static final int select_dialog_item_material=0x7f040040; public static final int select_dialog_multichoice_material=0x7f040041; public static final int select_dialog_singlechoice_material=0x7f040042; public static final int shellcontent=0x7f040043; public static final int support_simple_spinner_dropdown_item=0x7f040044; public static final int tabbar=0x7f040045; public static final int toolbar=0x7f040046; } public static final class mipmap { public static final int icon=0x7f030000; public static final int icon_round=0x7f030001; public static final int launcher_foreground=0x7f030002; } public static final class string { public static final int abc_action_bar_home_description=0x7f0d0000; public static final int abc_action_bar_up_description=0x7f0d0001; public static final int abc_action_menu_overflow_description=0x7f0d0002; public static final int abc_action_mode_done=0x7f0d0003; public static final int abc_activity_chooser_view_see_all=0x7f0d0004; public static final int abc_activitychooserview_choose_application=0x7f0d0005; public static final int abc_capital_off=0x7f0d0006; public static final int abc_capital_on=0x7f0d0007; public static final int abc_font_family_body_1_material=0x7f0d001c; public static final int abc_font_family_body_2_material=0x7f0d001d; public static final int abc_font_family_button_material=0x7f0d001e; public static final int abc_font_family_caption_material=0x7f0d001f; public static final int abc_font_family_display_1_material=0x7f0d0020; public static final int abc_font_family_display_2_material=0x7f0d0021; public static final int abc_font_family_display_3_material=0x7f0d0022; public static final int abc_font_family_display_4_material=0x7f0d0023; public static final int abc_font_family_headline_material=0x7f0d0024; public static final int abc_font_family_menu_material=0x7f0d0025; public static final int abc_font_family_subhead_material=0x7f0d0026; public static final int abc_font_family_title_material=0x7f0d0027; public static final int abc_menu_alt_shortcut_label=0x7f0d0008; public static final int abc_menu_ctrl_shortcut_label=0x7f0d0009; public static final int abc_menu_delete_shortcut_label=0x7f0d000a; public static final int abc_menu_enter_shortcut_label=0x7f0d000b; public static final int abc_menu_function_shortcut_label=0x7f0d000c; public static final int abc_menu_meta_shortcut_label=0x7f0d000d; public static final int abc_menu_shift_shortcut_label=0x7f0d000e; public static final int abc_menu_space_shortcut_label=0x7f0d000f; public static final int abc_menu_sym_shortcut_label=0x7f0d0010; public static final int abc_prepend_shortcut_label=0x7f0d0011; public static final int abc_search_hint=0x7f0d0012; public static final int abc_searchview_description_clear=0x7f0d0013; public static final int abc_searchview_description_query=0x7f0d0014; public static final int abc_searchview_description_search=0x7f0d0015; public static final int abc_searchview_description_submit=0x7f0d0016; public static final int abc_searchview_description_voice=0x7f0d0017; public static final int abc_shareactionprovider_share_with=0x7f0d0018; public static final int abc_shareactionprovider_share_with_application=0x7f0d0019; public static final int abc_toolbar_collapse_description=0x7f0d001a; public static final int appbar_scrolling_view_behavior=0x7f0d0028; public static final int bottom_sheet_behavior=0x7f0d0029; public static final int character_counter_content_description=0x7f0d002a; public static final int character_counter_pattern=0x7f0d002b; public static final int fab_transformation_scrim_behavior=0x7f0d002c; public static final int fab_transformation_sheet_behavior=0x7f0d002d; public static final int hide_bottom_view_on_scroll_behavior=0x7f0d002e; public static final int mtrl_chip_close_icon_content_description=0x7f0d002f; public static final int password_toggle_content_description=0x7f0d0030; public static final int path_password_eye=0x7f0d0031; public static final int path_password_eye_mask_strike_through=0x7f0d0032; public static final int path_password_eye_mask_visible=0x7f0d0033; public static final int path_password_strike_through=0x7f0d0034; public static final int search_menu_title=0x7f0d001b; public static final int status_bar_notification_info_overflow=0x7f0d0035; } public static final class style { public static final int AlertDialog_AppCompat=0x7f090091; public static final int AlertDialog_AppCompat_Light=0x7f090092; public static final int Animation_AppCompat_Dialog=0x7f090093; public static final int Animation_AppCompat_DropDownUp=0x7f090094; public static final int Animation_AppCompat_Tooltip=0x7f090095; public static final int Animation_Design_BottomSheetDialog=0x7f090166; public static final int AppCompatDialogStyle=0x7f090003; public static final int Base_AlertDialog_AppCompat=0x7f090096; public static final int Base_AlertDialog_AppCompat_Light=0x7f090097; public static final int Base_Animation_AppCompat_Dialog=0x7f090098; public static final int Base_Animation_AppCompat_DropDownUp=0x7f090099; public static final int Base_Animation_AppCompat_Tooltip=0x7f09009a; public static final int Base_CardView=0x7f090005; public static final int Base_DialogWindowTitle_AppCompat=0x7f09009b; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f09009c; public static final int Base_TextAppearance_AppCompat=0x7f090025; public static final int Base_TextAppearance_AppCompat_Body1=0x7f090026; public static final int Base_TextAppearance_AppCompat_Body2=0x7f090027; public static final int Base_TextAppearance_AppCompat_Button=0x7f090028; public static final int Base_TextAppearance_AppCompat_Caption=0x7f090029; public static final int Base_TextAppearance_AppCompat_Display1=0x7f09002a; public static final int Base_TextAppearance_AppCompat_Display2=0x7f09002b; public static final int Base_TextAppearance_AppCompat_Display3=0x7f09002c; public static final int Base_TextAppearance_AppCompat_Display4=0x7f09002d; public static final int Base_TextAppearance_AppCompat_Headline=0x7f09002e; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f09002f; public static final int Base_TextAppearance_AppCompat_Large=0x7f090030; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090031; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f090032; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f090033; public static final int Base_TextAppearance_AppCompat_Medium=0x7f090034; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090035; public static final int Base_TextAppearance_AppCompat_Menu=0x7f090036; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f09009d; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f090037; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f090038; public static final int Base_TextAppearance_AppCompat_Small=0x7f090039; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f09003a; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f09003b; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f09009e; public static final int Base_TextAppearance_AppCompat_Title=0x7f09003c; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f09009f; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0900a0; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090080; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f09003d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f09003e; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f09003f; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090040; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090041; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090042; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090043; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f090087; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f090088; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090081; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900a1; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f090044; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090045; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090046; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f090047; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f090048; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900a2; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090049; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f09004a; public static final int Base_Theme_AppCompat=0x7f09004b; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0900a3; public static final int Base_Theme_AppCompat_Dialog=0x7f09004c; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0900a4; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0900a5; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0900a6; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090009; public static final int Base_Theme_AppCompat_Light=0x7f09004d; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0900a7; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f09004e; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0900a8; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0900a9; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900aa; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f09000a; public static final int Base_Theme_MaterialComponents=0x7f090167; public static final int Base_Theme_MaterialComponents_Bridge=0x7f090168; public static final int Base_Theme_MaterialComponents_CompactMenu=0x7f090169; public static final int Base_Theme_MaterialComponents_Dialog=0x7f09016a; public static final int Base_Theme_MaterialComponents_Dialog_Alert=0x7f09016b; public static final int Base_Theme_MaterialComponents_Dialog_FixedSize=0x7f09016c; public static final int Base_Theme_MaterialComponents_Dialog_MinWidth=0x7f09016d; public static final int Base_Theme_MaterialComponents_DialogWhenLarge=0x7f090160; public static final int Base_Theme_MaterialComponents_Light=0x7f09016e; public static final int Base_Theme_MaterialComponents_Light_Bridge=0x7f09016f; public static final int Base_Theme_MaterialComponents_Light_DarkActionBar=0x7f090170; public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f090171; public static final int Base_Theme_MaterialComponents_Light_Dialog=0x7f090172; public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert=0x7f090173; public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize=0x7f090174; public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f090175; public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge=0x7f090161; public static final int Base_ThemeOverlay_AppCompat=0x7f0900ab; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0900ac; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0900ad; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900ae; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f09004f; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0900af; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0900b0; public static final int Base_ThemeOverlay_MaterialComponents_Dialog=0x7f090176; public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f090177; public static final int Base_V14_Theme_MaterialComponents=0x7f090178; public static final int Base_V14_Theme_MaterialComponents_Bridge=0x7f090179; public static final int Base_V14_Theme_MaterialComponents_Dialog=0x7f09017a; public static final int Base_V14_Theme_MaterialComponents_Light=0x7f09017b; public static final int Base_V14_Theme_MaterialComponents_Light_Bridge=0x7f09017c; public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f09017d; public static final int Base_V14_Theme_MaterialComponents_Light_Dialog=0x7f09017e; public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog=0x7f09017f; public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f090180; public static final int Base_V21_Theme_AppCompat=0x7f090050; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090051; public static final int Base_V21_Theme_AppCompat_Light=0x7f090052; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090053; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f090054; public static final int Base_V22_Theme_AppCompat=0x7f09007e; public static final int Base_V22_Theme_AppCompat_Light=0x7f09007f; public static final int Base_V23_Theme_AppCompat=0x7f090082; public static final int Base_V23_Theme_AppCompat_Light=0x7f090083; public static final int Base_V26_Theme_AppCompat=0x7f09008b; public static final int Base_V26_Theme_AppCompat_Light=0x7f09008c; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f09008d; public static final int Base_V28_Theme_AppCompat=0x7f09008f; public static final int Base_V28_Theme_AppCompat_Light=0x7f090090; public static final int Base_V7_Theme_AppCompat=0x7f0900b1; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0900b2; public static final int Base_V7_Theme_AppCompat_Light=0x7f0900b3; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0900b4; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0900b5; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0900b6; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0900b7; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0900b8; public static final int Base_Widget_AppCompat_ActionBar=0x7f0900b9; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900ba; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900bb; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090055; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090056; public static final int Base_Widget_AppCompat_ActionButton=0x7f090057; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f090058; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f090059; public static final int Base_Widget_AppCompat_ActionMode=0x7f0900bc; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900bd; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f09005a; public static final int Base_Widget_AppCompat_Button=0x7f09005b; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09005c; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09005d; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900be; public static final int Base_Widget_AppCompat_Button_Colored=0x7f090084; public static final int Base_Widget_AppCompat_Button_Small=0x7f09005e; public static final int Base_Widget_AppCompat_ButtonBar=0x7f09005f; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900bf; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f090060; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f090061; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900c0; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090008; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900c1; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090062; public static final int Base_Widget_AppCompat_EditText=0x7f090063; public static final int Base_Widget_AppCompat_ImageButton=0x7f090064; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900c2; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900c3; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900c4; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090065; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090066; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090067; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090068; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090069; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0900c5; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f09006a; public static final int Base_Widget_AppCompat_ListView=0x7f09006b; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f09006c; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f09006d; public static final int Base_Widget_AppCompat_PopupMenu=0x7f09006e; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f09006f; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900c6; public static final int Base_Widget_AppCompat_ProgressBar=0x7f090070; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f090071; public static final int Base_Widget_AppCompat_RatingBar=0x7f090072; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f090085; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f090086; public static final int Base_Widget_AppCompat_SearchView=0x7f0900c7; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900c8; public static final int Base_Widget_AppCompat_SeekBar=0x7f090073; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0900c9; public static final int Base_Widget_AppCompat_Spinner=0x7f090074; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f09000b; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f090075; public static final int Base_Widget_AppCompat_Toolbar=0x7f09008e; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090076; public static final int Base_Widget_Design_TabLayout=0x7f090181; public static final int Base_Widget_MaterialComponents_Chip=0x7f090182; public static final int Base_Widget_MaterialComponents_TextInputEditText=0x7f090183; public static final int Base_Widget_MaterialComponents_TextInputLayout=0x7f090184; public static final int CardView=0x7f090004; public static final int CardView_Dark=0x7f090006; public static final int CardView_Light=0x7f090007; /** As of Xamarin.Forms 4.6 the theme has moved into the Forms binary If you want to override anything you can do that here. Underneath are a couple of entries to get you started. Set theme colors from https://aka.ms/material-colors colorPrimary is used for the default action bar background <item name="colorPrimary">#2196F3</item> colorPrimaryDark is used for the status bar <item name="colorPrimaryDark">#1976D2</item> colorAccent is used as the default value for colorControlActivated which is used to tint widgets <item name="colorAccent">#FF4081</item> */ public static final int MainTheme=0x7f090001; /** Base theme applied no matter what API */ public static final int MainTheme_Base=0x7f090002; public static final int Platform_AppCompat=0x7f090077; public static final int Platform_AppCompat_Light=0x7f090078; public static final int Platform_MaterialComponents=0x7f090185; public static final int Platform_MaterialComponents_Dialog=0x7f090186; public static final int Platform_MaterialComponents_Light=0x7f090187; public static final int Platform_MaterialComponents_Light_Dialog=0x7f090188; public static final int Platform_ThemeOverlay_AppCompat=0x7f090079; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f09007a; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f09007b; public static final int Platform_V21_AppCompat=0x7f09007c; public static final int Platform_V21_AppCompat_Light=0x7f09007d; public static final int Platform_V25_AppCompat=0x7f090089; public static final int Platform_V25_AppCompat_Light=0x7f09008a; public static final int Platform_Widget_AppCompat_Spinner=0x7f0900ca; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090014; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090015; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090016; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090017; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090018; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f090019; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f09001a; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f09001b; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f09001c; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f09001d; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f09001e; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f09001f; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f090020; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f090021; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f090022; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f090023; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f090024; public static final int TextAppearance_AppCompat=0x7f0900cb; public static final int TextAppearance_AppCompat_Body1=0x7f0900cc; public static final int TextAppearance_AppCompat_Body2=0x7f0900cd; public static final int TextAppearance_AppCompat_Button=0x7f0900ce; public static final int TextAppearance_AppCompat_Caption=0x7f0900cf; public static final int TextAppearance_AppCompat_Display1=0x7f0900d0; public static final int TextAppearance_AppCompat_Display2=0x7f0900d1; public static final int TextAppearance_AppCompat_Display3=0x7f0900d2; public static final int TextAppearance_AppCompat_Display4=0x7f0900d3; public static final int TextAppearance_AppCompat_Headline=0x7f0900d4; public static final int TextAppearance_AppCompat_Inverse=0x7f0900d5; public static final int TextAppearance_AppCompat_Large=0x7f0900d6; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900d7; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900d8; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900d9; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900da; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900db; public static final int TextAppearance_AppCompat_Medium=0x7f0900dc; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900dd; public static final int TextAppearance_AppCompat_Menu=0x7f0900de; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900df; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900e0; public static final int TextAppearance_AppCompat_Small=0x7f0900e1; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900e2; public static final int TextAppearance_AppCompat_Subhead=0x7f0900e3; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900e4; public static final int TextAppearance_AppCompat_Title=0x7f0900e5; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900e6; public static final int TextAppearance_AppCompat_Tooltip=0x7f090013; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900e7; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900e8; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900e9; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900ea; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900eb; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900ec; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900ed; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900ee; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900ef; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900f0; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0900f1; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0900f2; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900f3; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900f4; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0900f5; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0900f6; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0900f7; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0900f8; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0900f9; public static final int TextAppearance_Compat_Notification=0x7f0901f1; public static final int TextAppearance_Compat_Notification_Info=0x7f0901f2; public static final int TextAppearance_Compat_Notification_Info_Media=0x7f09015a; public static final int TextAppearance_Compat_Notification_Line2=0x7f0901f7; public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f09015e; public static final int TextAppearance_Compat_Notification_Media=0x7f09015b; public static final int TextAppearance_Compat_Notification_Time=0x7f0901f3; public static final int TextAppearance_Compat_Notification_Time_Media=0x7f09015c; public static final int TextAppearance_Compat_Notification_Title=0x7f0901f4; public static final int TextAppearance_Compat_Notification_Title_Media=0x7f09015d; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f090189; public static final int TextAppearance_Design_Counter=0x7f09018a; public static final int TextAppearance_Design_Counter_Overflow=0x7f09018b; public static final int TextAppearance_Design_Error=0x7f09018c; public static final int TextAppearance_Design_HelperText=0x7f09018d; public static final int TextAppearance_Design_Hint=0x7f09018e; public static final int TextAppearance_Design_Snackbar_Message=0x7f09018f; public static final int TextAppearance_Design_Tab=0x7f090190; public static final int TextAppearance_MaterialComponents_Body1=0x7f090191; public static final int TextAppearance_MaterialComponents_Body2=0x7f090192; public static final int TextAppearance_MaterialComponents_Button=0x7f090162; public static final int TextAppearance_MaterialComponents_Caption=0x7f090193; public static final int TextAppearance_MaterialComponents_Chip=0x7f090194; public static final int TextAppearance_MaterialComponents_Headline1=0x7f090195; public static final int TextAppearance_MaterialComponents_Headline2=0x7f090196; public static final int TextAppearance_MaterialComponents_Headline3=0x7f090197; public static final int TextAppearance_MaterialComponents_Headline4=0x7f090198; public static final int TextAppearance_MaterialComponents_Headline5=0x7f090199; public static final int TextAppearance_MaterialComponents_Headline6=0x7f090163; public static final int TextAppearance_MaterialComponents_Overline=0x7f090164; public static final int TextAppearance_MaterialComponents_Subtitle1=0x7f09019a; public static final int TextAppearance_MaterialComponents_Subtitle2=0x7f090165; public static final int TextAppearance_MaterialComponents_Tab=0x7f09019b; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900fa; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0900fb; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0900fc; public static final int Theme_AppCompat=0x7f0900fd; public static final int Theme_AppCompat_CompactMenu=0x7f0900fe; public static final int Theme_AppCompat_DayNight=0x7f09000c; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f09000d; public static final int Theme_AppCompat_DayNight_Dialog=0x7f09000e; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f09000f; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f090010; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f090011; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f090012; public static final int Theme_AppCompat_Dialog=0x7f0900ff; public static final int Theme_AppCompat_Dialog_Alert=0x7f090100; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f090101; public static final int Theme_AppCompat_DialogWhenLarge=0x7f090102; public static final int Theme_AppCompat_Light=0x7f090103; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f090104; public static final int Theme_AppCompat_Light_Dialog=0x7f090105; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f090106; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f090107; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f090108; public static final int Theme_AppCompat_Light_NoActionBar=0x7f090109; public static final int Theme_AppCompat_NoActionBar=0x7f09010a; public static final int Theme_Design=0x7f09019c; public static final int Theme_Design_BottomSheetDialog=0x7f09019d; public static final int Theme_Design_Light=0x7f09019e; public static final int Theme_Design_Light_BottomSheetDialog=0x7f09019f; public static final int Theme_Design_Light_NoActionBar=0x7f0901a0; public static final int Theme_Design_NoActionBar=0x7f0901a1; public static final int Theme_MaterialComponents=0x7f0901a2; public static final int Theme_MaterialComponents_BottomSheetDialog=0x7f0901a3; public static final int Theme_MaterialComponents_Bridge=0x7f0901a4; public static final int Theme_MaterialComponents_CompactMenu=0x7f0901a5; public static final int Theme_MaterialComponents_Dialog=0x7f0901a6; public static final int Theme_MaterialComponents_Dialog_Alert=0x7f0901a7; public static final int Theme_MaterialComponents_Dialog_MinWidth=0x7f0901a8; public static final int Theme_MaterialComponents_DialogWhenLarge=0x7f0901a9; public static final int Theme_MaterialComponents_Light=0x7f0901aa; public static final int Theme_MaterialComponents_Light_BottomSheetDialog=0x7f0901ab; public static final int Theme_MaterialComponents_Light_Bridge=0x7f0901ac; public static final int Theme_MaterialComponents_Light_DarkActionBar=0x7f0901ad; public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0901ae; public static final int Theme_MaterialComponents_Light_Dialog=0x7f0901af; public static final int Theme_MaterialComponents_Light_Dialog_Alert=0x7f0901b0; public static final int Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0901b1; public static final int Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0901b2; public static final int Theme_MaterialComponents_Light_NoActionBar=0x7f0901b3; public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge=0x7f0901b4; public static final int Theme_MaterialComponents_NoActionBar=0x7f0901b5; public static final int Theme_MaterialComponents_NoActionBar_Bridge=0x7f0901b6; public static final int ThemeOverlay_AppCompat=0x7f09010b; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f09010c; public static final int ThemeOverlay_AppCompat_Dark=0x7f09010d; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f09010e; public static final int ThemeOverlay_AppCompat_Dialog=0x7f09010f; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f090110; public static final int ThemeOverlay_AppCompat_Light=0x7f090111; public static final int ThemeOverlay_MaterialComponents=0x7f0901b7; public static final int ThemeOverlay_MaterialComponents_ActionBar=0x7f0901b8; public static final int ThemeOverlay_MaterialComponents_Dark=0x7f0901b9; public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar=0x7f0901ba; public static final int ThemeOverlay_MaterialComponents_Dialog=0x7f0901bb; public static final int ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0901bc; public static final int ThemeOverlay_MaterialComponents_Light=0x7f0901bd; public static final int ThemeOverlay_MaterialComponents_TextInputEditText=0x7f0901be; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox=0x7f0901bf; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0901c0; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0901c1; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0901c2; public static final int Widget_AppCompat_ActionBar=0x7f090112; public static final int Widget_AppCompat_ActionBar_Solid=0x7f090113; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f090114; public static final int Widget_AppCompat_ActionBar_TabText=0x7f090115; public static final int Widget_AppCompat_ActionBar_TabView=0x7f090116; public static final int Widget_AppCompat_ActionButton=0x7f090117; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090118; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090119; public static final int Widget_AppCompat_ActionMode=0x7f09011a; public static final int Widget_AppCompat_ActivityChooserView=0x7f09011b; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f09011c; public static final int Widget_AppCompat_Button=0x7f09011d; public static final int Widget_AppCompat_Button_Borderless=0x7f09011e; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f09011f; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f090120; public static final int Widget_AppCompat_Button_Colored=0x7f090121; public static final int Widget_AppCompat_Button_Small=0x7f090122; public static final int Widget_AppCompat_ButtonBar=0x7f090123; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f090124; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f090125; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f090126; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f090127; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090128; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090129; public static final int Widget_AppCompat_EditText=0x7f09012a; public static final int Widget_AppCompat_ImageButton=0x7f09012b; public static final int Widget_AppCompat_Light_ActionBar=0x7f09012c; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f09012d; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f09012e; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f09012f; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f090130; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f090131; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090132; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f090133; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f090134; public static final int Widget_AppCompat_Light_ActionButton=0x7f090135; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090136; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f090137; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090138; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090139; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f09013a; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f09013b; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f09013c; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f09013d; public static final int Widget_AppCompat_Light_PopupMenu=0x7f09013e; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09013f; public static final int Widget_AppCompat_Light_SearchView=0x7f090140; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f090141; public static final int Widget_AppCompat_ListMenuView=0x7f090142; public static final int Widget_AppCompat_ListPopupWindow=0x7f090143; public static final int Widget_AppCompat_ListView=0x7f090144; public static final int Widget_AppCompat_ListView_DropDown=0x7f090145; public static final int Widget_AppCompat_ListView_Menu=0x7f090146; public static final int Widget_AppCompat_PopupMenu=0x7f090147; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f090148; public static final int Widget_AppCompat_PopupWindow=0x7f090149; public static final int Widget_AppCompat_ProgressBar=0x7f09014a; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f09014b; public static final int Widget_AppCompat_RatingBar=0x7f09014c; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f09014d; public static final int Widget_AppCompat_RatingBar_Small=0x7f09014e; public static final int Widget_AppCompat_SearchView=0x7f09014f; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f090150; public static final int Widget_AppCompat_SeekBar=0x7f090151; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f090152; public static final int Widget_AppCompat_Spinner=0x7f090153; public static final int Widget_AppCompat_Spinner_DropDown=0x7f090154; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f090155; public static final int Widget_AppCompat_Spinner_Underlined=0x7f090156; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f090157; public static final int Widget_AppCompat_Toolbar=0x7f090158; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090159; public static final int Widget_Compat_NotificationActionContainer=0x7f0901f5; public static final int Widget_Compat_NotificationActionText=0x7f0901f6; public static final int Widget_Design_AppBarLayout=0x7f0901c3; public static final int Widget_Design_BottomNavigationView=0x7f0901c4; public static final int Widget_Design_BottomSheet_Modal=0x7f0901c5; public static final int Widget_Design_CollapsingToolbar=0x7f0901c6; public static final int Widget_Design_FloatingActionButton=0x7f0901c7; public static final int Widget_Design_NavigationView=0x7f0901c8; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0901c9; public static final int Widget_Design_Snackbar=0x7f0901ca; public static final int Widget_Design_TabLayout=0x7f09015f; public static final int Widget_Design_TextInputLayout=0x7f0901cb; public static final int Widget_MaterialComponents_BottomAppBar=0x7f0901cc; public static final int Widget_MaterialComponents_BottomAppBar_Colored=0x7f0901cd; public static final int Widget_MaterialComponents_BottomNavigationView=0x7f0901ce; public static final int Widget_MaterialComponents_BottomNavigationView_Colored=0x7f0901cf; public static final int Widget_MaterialComponents_BottomSheet_Modal=0x7f0901d0; public static final int Widget_MaterialComponents_Button=0x7f0901d1; public static final int Widget_MaterialComponents_Button_Icon=0x7f0901d2; public static final int Widget_MaterialComponents_Button_OutlinedButton=0x7f0901d3; public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon=0x7f0901d4; public static final int Widget_MaterialComponents_Button_TextButton=0x7f0901d5; public static final int Widget_MaterialComponents_Button_TextButton_Dialog=0x7f0901d6; /** Icon text button has the same padding as a regular text button */ public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon=0x7f0901d7; /** Icon text button has the same padding as a regular text button */ public static final int Widget_MaterialComponents_Button_TextButton_Icon=0x7f0901d8; public static final int Widget_MaterialComponents_Button_UnelevatedButton=0x7f0901d9; public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon=0x7f0901da; public static final int Widget_MaterialComponents_CardView=0x7f0901db; public static final int Widget_MaterialComponents_Chip_Action=0x7f0901dc; public static final int Widget_MaterialComponents_Chip_Choice=0x7f0901dd; public static final int Widget_MaterialComponents_Chip_Entry=0x7f0901de; public static final int Widget_MaterialComponents_Chip_Filter=0x7f0901df; public static final int Widget_MaterialComponents_ChipGroup=0x7f0901e0; public static final int Widget_MaterialComponents_FloatingActionButton=0x7f0901e1; public static final int Widget_MaterialComponents_NavigationView=0x7f0901e2; public static final int Widget_MaterialComponents_Snackbar=0x7f0901e3; public static final int Widget_MaterialComponents_Snackbar_FullWidth=0x7f0901e4; public static final int Widget_MaterialComponents_TabLayout=0x7f0901e5; public static final int Widget_MaterialComponents_TabLayout_Colored=0x7f0901e6; public static final int Widget_MaterialComponents_TextInputEditText_FilledBox=0x7f0901e7; public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0901e8; public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0901e9; public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0901ea; public static final int Widget_MaterialComponents_TextInputLayout_FilledBox=0x7f0901eb; public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense=0x7f0901ec; public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox=0x7f0901ed; public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense=0x7f0901ee; public static final int Widget_MaterialComponents_Toolbar=0x7f0901ef; public static final int Widget_Support_CoordinatorLayout=0x7f0901f0; public static final int collectionViewStyle=0x7f090000; } public static final class xml { public static final int xamarin_essentials_fileprovider_file_paths=0x7f080000; } 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.companyname.perfectpitchpoc:background}</code></td><td> Specifies a background drawable for the action bar.</td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.companyname.perfectpitchpoc:backgroundSplit}</code></td><td> Specifies a background drawable for the bottom component of a split action bar.</td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.companyname.perfectpitchpoc:backgroundStacked}</code></td><td> Specifies a background drawable for a second stacked row of the action bar.</td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.companyname.perfectpitchpoc:contentInsetEnd}</code></td><td> Minimum inset for content views within a bar.</td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.companyname.perfectpitchpoc:contentInsetEndWithActions}</code></td><td> Minimum inset for content views within a bar when actions from a menu are present.</td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.companyname.perfectpitchpoc:contentInsetLeft}</code></td><td> Minimum inset for content views within a bar.</td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.companyname.perfectpitchpoc:contentInsetRight}</code></td><td> Minimum inset for content views within a bar.</td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.companyname.perfectpitchpoc:contentInsetStart}</code></td><td> Minimum inset for content views within a bar.</td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.companyname.perfectpitchpoc:contentInsetStartWithNavigation}</code></td><td> Minimum inset for content views within a bar when a navigation button is present, such as the Up button.</td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.companyname.perfectpitchpoc:customNavigationLayout}</code></td><td> Specifies a layout for custom navigation.</td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.companyname.perfectpitchpoc:displayOptions}</code></td><td> Options affecting how the action bar is displayed.</td></tr> <tr><td><code>{@link #ActionBar_divider com.companyname.perfectpitchpoc:divider}</code></td><td> Specifies the drawable used for item dividers.</td></tr> <tr><td><code>{@link #ActionBar_elevation com.companyname.perfectpitchpoc:elevation}</code></td><td> Elevation for the action bar itself </td></tr> <tr><td><code>{@link #ActionBar_height com.companyname.perfectpitchpoc:height}</code></td><td> Specifies a fixed height.</td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.companyname.perfectpitchpoc:hideOnContentScroll}</code></td><td> Set true to hide the action bar on a vertical nested scroll of content.</td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.companyname.perfectpitchpoc:homeAsUpIndicator}</code></td><td> Up navigation glyph </td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.companyname.perfectpitchpoc:homeLayout}</code></td><td> Specifies a layout to use for the "home" section of the action bar.</td></tr> <tr><td><code>{@link #ActionBar_icon com.companyname.perfectpitchpoc:icon}</code></td><td> Specifies the drawable used for the application icon.</td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.companyname.perfectpitchpoc:indeterminateProgressStyle}</code></td><td> Specifies a style resource to use for an indeterminate progress spinner.</td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.companyname.perfectpitchpoc:itemPadding}</code></td><td> Specifies padding that should be applied to the left and right sides of system-provided items in the bar.</td></tr> <tr><td><code>{@link #ActionBar_logo com.companyname.perfectpitchpoc:logo}</code></td><td> Specifies the drawable used for the application logo.</td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.companyname.perfectpitchpoc:navigationMode}</code></td><td> The type of navigation to use.</td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.companyname.perfectpitchpoc:popupTheme}</code></td><td> Reference to a theme that should be used to inflate popups shown by widgets in the action bar.</td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.companyname.perfectpitchpoc:progressBarPadding}</code></td><td> Specifies the horizontal padding on either end for an embedded progress bar.</td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.companyname.perfectpitchpoc:progressBarStyle}</code></td><td> Specifies a style resource to use for an embedded progress bar.</td></tr> <tr><td><code>{@link #ActionBar_subtitle com.companyname.perfectpitchpoc:subtitle}</code></td><td> Specifies subtitle text used for navigationMode="normal" </td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.companyname.perfectpitchpoc:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr> <tr><td><code>{@link #ActionBar_title com.companyname.perfectpitchpoc:title}</code></td><td> Specifies title text used for navigationMode="normal" </td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.companyname.perfectpitchpoc:titleTextStyle}</code></td><td> Specifies a style to use for title text.</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 = { 0x7f010016, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f01007d }; /** <p> @attr description Specifies a background drawable for the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:background */ public static final int ActionBar_background = 10; /** <p> @attr description Specifies a background drawable for the bottom component of a split action bar. <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p> @attr description Specifies a background drawable for a second stacked row of the action bar. <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p> @attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p> @attr description Minimum inset for content views within a bar when actions from a menu are present. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions = 25; /** <p> @attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p> @attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p> @attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p> @attr description Minimum inset for content views within a bar when a navigation button is present, such as the Up button. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation = 24; /** <p> @attr description Specifies a layout for custom navigation. Overrides navigationMode. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p> @attr description Options affecting how the action bar is displayed. <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> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p> @attr description Specifies the drawable used for item dividers. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:divider */ public static final int ActionBar_divider = 9; /** <p> @attr description Elevation for the action bar itself <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:elevation */ public static final int ActionBar_elevation = 26; /** <p> @attr description Specifies a fixed height. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:height */ public static final int ActionBar_height = 0; /** <p> @attr description Set true to hide the action bar on a vertical nested scroll of content. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p> @attr description Up navigation glyph <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 28; /** <p> @attr description Specifies a layout to use for the "home" section of the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p> @attr description Specifies the drawable used for the application icon. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:icon */ public static final int ActionBar_icon = 7; /** <p> @attr description Specifies a style resource to use for an indeterminate progress spinner. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p> @attr description Specifies padding that should be applied to the left and right sides of system-provided items in the bar. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p> @attr description Specifies the drawable used for the application logo. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:logo */ public static final int ActionBar_logo = 8; /** <p> @attr description The type of navigation to use. <p>Must be one of the following constant values.</p> <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> Normal static title text </td></tr> <tr><td><code>listMode</code></td><td>1</td><td> The action bar will use a selection list for navigation. </td></tr> <tr><td><code>tabMode</code></td><td>2</td><td> The action bar will use a series of horizontal tabs for navigation. </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p> @attr description Reference to a theme that should be used to inflate popups shown by widgets in the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:popupTheme */ public static final int ActionBar_popupTheme = 27; /** <p> @attr description Specifies the horizontal padding on either end for an embedded progress bar. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p> @attr description Specifies a style resource to use for an embedded progress bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p> @attr description Specifies subtitle text used for navigationMode="normal" <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:subtitle */ public static final int ActionBar_subtitle = 4; /** <p> @attr description Specifies a style to use for subtitle text. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p> @attr description Specifies title text used for navigationMode="normal" <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:title */ public static final int ActionBar_title = 1; /** <p> @attr description Specifies a style to use for title text. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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; /** Size of padding on either end of a divider. */ 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.companyname.perfectpitchpoc:background}</code></td><td> Specifies a background for the action mode bar.</td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.companyname.perfectpitchpoc:backgroundSplit}</code></td><td> Specifies a background for the split action mode bar.</td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.companyname.perfectpitchpoc:closeItemLayout}</code></td><td> Specifies a layout to use for the "close" item at the starting edge.</td></tr> <tr><td><code>{@link #ActionMode_height com.companyname.perfectpitchpoc:height}</code></td><td> Specifies a fixed height for the action mode bar.</td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.companyname.perfectpitchpoc:subtitleTextStyle}</code></td><td> Specifies a style to use for subtitle text.</td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.companyname.perfectpitchpoc:titleTextStyle}</code></td><td> Specifies a style to use for title text.</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 = { 0x7f010016, 0x7f01001c, 0x7f01001d, 0x7f010021, 0x7f010023, 0x7f010033 }; /** <p> @attr description Specifies a background for the action mode bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:background */ public static final int ActionMode_background = 3; /** <p> @attr description Specifies a background for the split action mode bar. <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p> @attr description Specifies a layout to use for the "close" item at the starting edge. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p> @attr description Specifies a fixed height for the action mode bar. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:height */ public static final int ActionMode_height = 0; /** <p> @attr description Specifies a style to use for subtitle text. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p> @attr description Specifies a style to use for title text. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:expandActivityOverflowButtonDrawable}</code></td><td> The drawable to show in the button for expanding the activities overflow popup.</td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.companyname.perfectpitchpoc:initialActivityCount}</code></td><td> The maximal number of items initially shown in the activity list.</td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f010034, 0x7f010035 }; /** <p> @attr description The drawable to show in the button for expanding the activities overflow popup. <strong>Note:</strong> Clients would like to set this drawable as a clue about the action the chosen activity will perform. For example, if share activity is to be chosen the drawable should give a clue that sharing is to be performed. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p> @attr description The maximal number of items initially shown in the activity list. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a AlertDialog. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonIconDimen com.companyname.perfectpitchpoc:buttonIconDimen}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.companyname.perfectpitchpoc:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.companyname.perfectpitchpoc:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.companyname.perfectpitchpoc:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.companyname.perfectpitchpoc:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_showTitle com.companyname.perfectpitchpoc:showTitle}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.companyname.perfectpitchpoc:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonIconDimen @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_showTitle @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c }; /** <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.companyname.perfectpitchpoc.R.attr#buttonIconDimen} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:buttonIconDimen */ public static final int AlertDialog_buttonIconDimen = 7; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:showTitle */ public static final int AlertDialog_showTitle = 6; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Indicates if the drawable needs to be mirrored when its layout direction is RTL (right-to-left). <attr name="autoMirrored"/> <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}</code></td><td> If true, the drawable's reported internal size will remain constant as the state changes; the size is the maximum of all of the states.</td></tr> <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_dither android:dither}</code></td><td> Enables or disables dithering of the bitmap if the bitmap does not have the same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with an RGB 565 screen).</td></tr> <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}</code></td><td> Amount of time (in milliseconds) to fade in a new state drawable.</td></tr> <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}</code></td><td> Amount of time (in milliseconds) to fade out an old state drawable.</td></tr> <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}</code></td><td> If true, allows the drawable's padding to change based on the current state that is selected.</td></tr> <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_visible android:visible}</code></td><td> Indicates whether the drawable should be initially visible.</td></tr> </table> @see #AnimatedStateListDrawableCompat_android_constantSize @see #AnimatedStateListDrawableCompat_android_dither @see #AnimatedStateListDrawableCompat_android_enterFadeDuration @see #AnimatedStateListDrawableCompat_android_exitFadeDuration @see #AnimatedStateListDrawableCompat_android_variablePadding @see #AnimatedStateListDrawableCompat_android_visible */ public static final int[] AnimatedStateListDrawableCompat = { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** <p> @attr description If true, the drawable's reported internal size will remain constant as the state changes; the size is the maximum of all of the states. If false, the size will vary based on the current state. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#constantSize}. @attr name android:constantSize */ public static final int AnimatedStateListDrawableCompat_android_constantSize = 3; /** <p> @attr description Enables or disables dithering of the bitmap if the bitmap does not have the same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with an RGB 565 screen). <p>This corresponds to the global attribute resource symbol {@link android.R.attr#dither}. @attr name android:dither */ public static final int AnimatedStateListDrawableCompat_android_dither = 0; /** <p> @attr description Amount of time (in milliseconds) to fade in a new state drawable. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#enterFadeDuration}. @attr name android:enterFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration = 4; /** <p> @attr description Amount of time (in milliseconds) to fade out an old state drawable. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#exitFadeDuration}. @attr name android:exitFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration = 5; /** <p> @attr description If true, allows the drawable's padding to change based on the current state that is selected. If false, the padding will stay the same (based on the maximum padding of all the states). Enabling this feature requires that the owner of the drawable deal with performing layout when the state changes, which is often not supported. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#variablePadding}. @attr name android:variablePadding */ public static final int AnimatedStateListDrawableCompat_android_variablePadding = 2; /** <p> @attr description Indicates whether the drawable should be initially visible. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#visible}. @attr name android:visible */ public static final int AnimatedStateListDrawableCompat_android_visible = 1; /** Attributes that can be used with a AnimatedStateListDrawableItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}</code></td><td> Reference to a drawable resource to use for the frame.</td></tr> <tr><td><code>{@link #AnimatedStateListDrawableItem_android_id android:id}</code></td><td> Keyframe identifier for use in specifying transitions.</td></tr> </table> @see #AnimatedStateListDrawableItem_android_drawable @see #AnimatedStateListDrawableItem_android_id */ public static final int[] AnimatedStateListDrawableItem = { 0x010100d0, 0x01010199 }; /** <p> @attr description Reference to a drawable resource to use for the frame. If not given, the drawable must be defined by the first child tag. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#drawable}. @attr name android:drawable */ public static final int AnimatedStateListDrawableItem_android_drawable = 1; /** <p> @attr description Keyframe identifier for use in specifying transitions. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#id}. @attr name android:id */ public static final int AnimatedStateListDrawableItem_android_id = 0; /** Attributes that can be used with a AnimatedStateListDrawableTransition. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_drawable android:drawable}</code></td><td> Reference to a animation drawable resource to use for the frame.</td></tr> <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}</code></td><td> Keyframe identifier for the starting state.</td></tr> <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}</code></td><td> Whether this transition is reversible.</td></tr> <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_toId android:toId}</code></td><td> Keyframe identifier for the ending state.</td></tr> </table> @see #AnimatedStateListDrawableTransition_android_drawable @see #AnimatedStateListDrawableTransition_android_fromId @see #AnimatedStateListDrawableTransition_android_reversible @see #AnimatedStateListDrawableTransition_android_toId */ public static final int[] AnimatedStateListDrawableTransition = { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }; /** <p> @attr description Reference to a animation drawable resource to use for the frame. If not given, the animation drawable must be defined by the first child tag. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#drawable}. @attr name android:drawable */ public static final int AnimatedStateListDrawableTransition_android_drawable = 0; /** <p> @attr description Keyframe identifier for the starting state. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#fromId}. @attr name android:fromId */ public static final int AnimatedStateListDrawableTransition_android_fromId = 2; /** <p> @attr description Whether this transition is reversible. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#reversible}. @attr name android:reversible */ public static final int AnimatedStateListDrawableTransition_android_reversible = 3; /** <p> @attr description Keyframe identifier for the ending state. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#toId}. @attr name android:toId */ public static final int AnimatedStateListDrawableTransition_android_toId = 1; /** Attributes that can be used with a AppBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_elevation com.companyname.perfectpitchpoc:elevation}</code></td><td> Elevation for the action bar itself </td></tr> <tr><td><code>{@link #AppBarLayout_expanded com.companyname.perfectpitchpoc:expanded}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_liftOnScroll com.companyname.perfectpitchpoc:liftOnScroll}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_android_keyboardNavigationCluster @see #AppBarLayout_android_touchscreenBlocksFocus @see #AppBarLayout_elevation @see #AppBarLayout_expanded @see #AppBarLayout_liftOnScroll */ public static final int[] AppBarLayout = { 0x010100d4, 0x0101048f, 0x01010540, 0x7f010031, 0x7f010131, 0x7f010132 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:background */ public static final int AppBarLayout_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:keyboardNavigationCluster */ public static final int AppBarLayout_android_keyboardNavigationCluster = 2; /** <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:touchscreenBlocksFocus */ public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; /** <p> @attr description Elevation for the action bar itself <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:elevation */ public static final int AppBarLayout_elevation = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:expanded */ public static final int AppBarLayout_expanded = 4; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#liftOnScroll} 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.companyname.perfectpitchpoc:liftOnScroll */ public static final int AppBarLayout_liftOnScroll = 5; /** 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.companyname.perfectpitchpoc:state_collapsed}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.companyname.perfectpitchpoc:state_collapsible}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_liftable com.companyname.perfectpitchpoc:state_liftable}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_lifted com.companyname.perfectpitchpoc:state_lifted}</code></td><td></td></tr> </table> @see #AppBarLayoutStates_state_collapsed @see #AppBarLayoutStates_state_collapsible @see #AppBarLayoutStates_state_liftable @see #AppBarLayoutStates_state_lifted */ public static final int[] AppBarLayoutStates = { 0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:state_collapsible */ public static final int AppBarLayoutStates_state_collapsible = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#state_liftable} 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.companyname.perfectpitchpoc:state_liftable */ public static final int AppBarLayoutStates_state_liftable = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#state_lifted} 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.companyname.perfectpitchpoc:state_lifted */ public static final int AppBarLayoutStates_state_lifted = 2; /** 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.companyname.perfectpitchpoc:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.companyname.perfectpitchpoc:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_Layout_layout_scrollFlags @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout = { 0x7f010137, 0x7f010138 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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> <tr><td><code>snapMargins</code></td><td>0x20</td><td></td></tr> </table> @attr name com.companyname.perfectpitchpoc:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:srcCompat}</code></td><td> Sets a drawable as the content of this ImageView.</td></tr> <tr><td><code>{@link #AppCompatImageView_tint com.companyname.perfectpitchpoc:tint}</code></td><td> Tint to apply to the image source.</td></tr> <tr><td><code>{@link #AppCompatImageView_tintMode com.companyname.perfectpitchpoc:tintMode}</code></td><td> Blending mode used to apply the image source tint.</td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat @see #AppCompatImageView_tint @see #AppCompatImageView_tintMode */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f01003d, 0x7f01003e, 0x7f01003f }; /** <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> @attr description Sets a drawable as the content of this ImageView. Allows the use of vector drawable when running on older versions of the platform. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** <p> @attr description Tint to apply to the image source. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:tint */ public static final int AppCompatImageView_tint = 2; /** <p> @attr description Blending mode used to apply the image source tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:tintMode */ public static final int AppCompatImageView_tintMode = 3; /** Attributes that can be used with a AppCompatSeekBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMark com.companyname.perfectpitchpoc:tickMark}</code></td><td> Drawable displayed at each progress position on a seekbar.</td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.companyname.perfectpitchpoc:tickMarkTint}</code></td><td> Tint to apply to the tick mark drawable.</td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.companyname.perfectpitchpoc:tickMarkTintMode}</code></td><td> Blending mode used to apply the tick mark tint.</td></tr> </table> @see #AppCompatSeekBar_android_thumb @see #AppCompatSeekBar_tickMark @see #AppCompatSeekBar_tickMarkTint @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f010040, 0x7f010041, 0x7f010042 }; /** <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> @attr description Drawable displayed at each progress position on a seekbar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:tickMark */ public static final int AppCompatSeekBar_tickMark = 1; /** <p> @attr description Tint to apply to the tick mark drawable. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint = 2; /** <p> @attr description Blending mode used to apply the tick mark tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and drawable color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode = 3; /** Attributes that can be used with a AppCompatTextHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> </table> @see #AppCompatTextHelper_android_drawableBottom @see #AppCompatTextHelper_android_drawableEnd @see #AppCompatTextHelper_android_drawableLeft @see #AppCompatTextHelper_android_drawableRight @see #AppCompatTextHelper_android_drawableStart @see #AppCompatTextHelper_android_drawableTop @see #AppCompatTextHelper_android_textAppearance */ public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom = 2; /** <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd = 6; /** <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft = 3; /** <p>This symbol is the offset where the {@link android.R.attr#drawableRight} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#drawableStart} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart = 5; /** <p>This symbol is the offset where the {@link android.R.attr#drawableTop} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance = 0; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize com.companyname.perfectpitchpoc:autoSizeMaxTextSize}</code></td><td> The maximum text size constraint to be used when auto-sizing text.</td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.companyname.perfectpitchpoc:autoSizeMinTextSize}</code></td><td> The minimum text size constraint to be used when auto-sizing text.</td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.companyname.perfectpitchpoc:autoSizePresetSizes}</code></td><td> Resource array of dimensions to be used in conjunction with <code>autoSizeTextType</code> set to <code>uniform</code>.</td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.companyname.perfectpitchpoc:autoSizeStepGranularity}</code></td><td> Specify the auto-size step size if <code>autoSizeTextType</code> is set to <code>uniform</code>.</td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.companyname.perfectpitchpoc:autoSizeTextType}</code></td><td> Specify the type of auto-size.</td></tr> <tr><td><code>{@link #AppCompatTextView_firstBaselineToTopHeight com.companyname.perfectpitchpoc:firstBaselineToTopHeight}</code></td><td> Distance from the top of the TextView to the first text baseline.</td></tr> <tr><td><code>{@link #AppCompatTextView_fontFamily com.companyname.perfectpitchpoc:fontFamily}</code></td><td> The attribute for the font family.</td></tr> <tr><td><code>{@link #AppCompatTextView_lastBaselineToBottomHeight com.companyname.perfectpitchpoc:lastBaselineToBottomHeight}</code></td><td> Distance from the bottom of the TextView to the last text baseline.</td></tr> <tr><td><code>{@link #AppCompatTextView_lineHeight com.companyname.perfectpitchpoc:lineHeight}</code></td><td> Explicit height between lines of text.</td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps com.companyname.perfectpitchpoc:textAllCaps}</code></td><td> Present the text in ALL CAPS.</td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_autoSizeMaxTextSize @see #AppCompatTextView_autoSizeMinTextSize @see #AppCompatTextView_autoSizePresetSizes @see #AppCompatTextView_autoSizeStepGranularity @see #AppCompatTextView_autoSizeTextType @see #AppCompatTextView_firstBaselineToTopHeight @see #AppCompatTextView_fontFamily @see #AppCompatTextView_lastBaselineToBottomHeight @see #AppCompatTextView_lineHeight @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c }; /** <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> @attr description The maximum text size constraint to be used when auto-sizing text. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize = 6; /** <p> @attr description The minimum text size constraint to be used when auto-sizing text. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize = 5; /** <p> @attr description Resource array of dimensions to be used in conjunction with <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides <code>autoSizeStepGranularity</code> if set. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes = 4; /** <p> @attr description Specify the auto-size step size if <code>autoSizeTextType</code> is set to <code>uniform</code>. The default is 1px. Overwrites <code>autoSizePresetSizes</code> if set. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity = 3; /** <p> @attr description Specify the type of auto-size. Note that this feature is not supported by EditText, works only for TextView. <p>Must be one of the following constant values.</p> <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> No auto-sizing (default). </td></tr> <tr><td><code>uniform</code></td><td>1</td><td> Uniform horizontal and vertical text size scaling to fit within the container. </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType = 2; /** <p> @attr description Distance from the top of the TextView to the first text baseline. If set, this overrides the value set for paddingTop. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:firstBaselineToTopHeight */ public static final int AppCompatTextView_firstBaselineToTopHeight = 9; /** <p> @attr description The attribute for the font family. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontFamily */ public static final int AppCompatTextView_fontFamily = 7; /** <p> @attr description Distance from the bottom of the TextView to the last text baseline. If set, this overrides the value set for paddingBottom. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:lastBaselineToBottomHeight */ public static final int AppCompatTextView_lastBaselineToBottomHeight = 10; /** <p> @attr description Explicit height between lines of text. If set, this will override the values set for lineSpacingExtra and lineSpacingMultiplier. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:lineHeight */ public static final int AppCompatTextView_lineHeight = 8; /** <p> @attr description Present the text in ALL CAPS. This may use a small-caps form when available. <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:actionBarDivider}</code></td><td> Custom divider drawable to use for elements in the action bar.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.companyname.perfectpitchpoc:actionBarItemBackground}</code></td><td> Custom item state list drawable background for action bar items.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.companyname.perfectpitchpoc:actionBarPopupTheme}</code></td><td> Reference to a theme that should be used to inflate popups shown by widgets in the action bar.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize com.companyname.perfectpitchpoc:actionBarSize}</code></td><td> Size of the Action Bar, including the contextual bar used to present Action Modes.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.companyname.perfectpitchpoc:actionBarSplitStyle}</code></td><td> Reference to a style for the split Action Bar.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.companyname.perfectpitchpoc:actionBarStyle}</code></td><td> Reference to a style for the Action Bar </td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.perfectpitchpoc:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.companyname.perfectpitchpoc:actionBarTabStyle}</code></td><td> Default style for tabs within an action bar </td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.perfectpitchpoc:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.companyname.perfectpitchpoc:actionBarTheme}</code></td><td> Reference to a theme that should be used to inflate the action bar.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.perfectpitchpoc:actionBarWidgetTheme}</code></td><td> Reference to a theme that should be used to inflate widgets and layouts destined for the action bar.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.companyname.perfectpitchpoc:actionButtonStyle}</code></td><td> Default action button style.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.companyname.perfectpitchpoc:actionDropDownStyle}</code></td><td> Default ActionBar dropdown style.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.perfectpitchpoc:actionMenuTextAppearance}</code></td><td> TextAppearance style that will be applied to text that appears within action menu items.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.companyname.perfectpitchpoc:actionMenuTextColor}</code></td><td> Color for text that appears within action menu items.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.companyname.perfectpitchpoc:actionModeBackground}</code></td><td> Background drawable to use for action mode UI </td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.perfectpitchpoc:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.perfectpitchpoc:actionModeCloseDrawable}</code></td><td> Drawable to use for the close action mode button </td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.perfectpitchpoc:actionModeCopyDrawable}</code></td><td> Drawable to use for the Copy action button in Contextual Action Bar </td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.companyname.perfectpitchpoc:actionModeCutDrawable}</code></td><td> Drawable to use for the Cut action button in Contextual Action Bar </td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.companyname.perfectpitchpoc:actionModeFindDrawable}</code></td><td> Drawable to use for the Find action button in WebView selection action modes </td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.companyname.perfectpitchpoc:actionModePasteDrawable}</code></td><td> Drawable to use for the Paste action button in Contextual Action Bar </td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.perfectpitchpoc:actionModePopupWindowStyle}</code></td><td> PopupWindow style to use for action modes when showing as a window overlay.</td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.perfectpitchpoc:actionModeSelectAllDrawable}</code></td><td> Drawable to use for the Select all action button in Contextual Action Bar </td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.companyname.perfectpitchpoc:actionModeShareDrawable}</code></td><td> Drawable to use for the Share action button in WebView selection action modes </td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.companyname.perfectpitchpoc:actionModeSplitBackground}</code></td><td> Background drawable to use for action mode UI in the lower split bar </td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.companyname.perfectpitchpoc:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.perfectpitchpoc:actionModeWebSearchDrawable}</code></td><td> Drawable to use for the Web Search action button in WebView selection action modes </td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.perfectpitchpoc:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.perfectpitchpoc:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.companyname.perfectpitchpoc:activityChooserViewStyle}</code></td><td> Default ActivityChooserView style.</td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.perfectpitchpoc:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.perfectpitchpoc:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.companyname.perfectpitchpoc:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.companyname.perfectpitchpoc:alertDialogTheme}</code></td><td> Theme to use for alert dialogs spawned from this theme.</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.companyname.perfectpitchpoc:autoCompleteTextViewStyle}</code></td><td> Default AutoCompleteTextView style.</td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.companyname.perfectpitchpoc:borderlessButtonStyle}</code></td><td> Style for buttons without an explicit border, often used in groups.</td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.perfectpitchpoc:buttonBarButtonStyle}</code></td><td> Style for buttons within button bars </td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.perfectpitchpoc:buttonBarNegativeButtonStyle}</code></td><td> Style for the "negative" buttons within button bars </td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.perfectpitchpoc:buttonBarNeutralButtonStyle}</code></td><td> Style for the "neutral" buttons within button bars </td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.perfectpitchpoc:buttonBarPositiveButtonStyle}</code></td><td> Style for the "positive" buttons within button bars </td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.companyname.perfectpitchpoc:buttonBarStyle}</code></td><td> Style for button bars </td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle com.companyname.perfectpitchpoc:buttonStyle}</code></td><td> Normal Button style.</td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.companyname.perfectpitchpoc:buttonStyleSmall}</code></td><td> Small Button style.</td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.companyname.perfectpitchpoc:checkboxStyle}</code></td><td> Default Checkbox style.</td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.companyname.perfectpitchpoc:checkedTextViewStyle}</code></td><td> Default CheckedTextView style.</td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent com.companyname.perfectpitchpoc:colorAccent}</code></td><td> Bright complement to the primary branding color.</td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.companyname.perfectpitchpoc:colorBackgroundFloating}</code></td><td> Default color of background imagery for floating components, ex.</td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.companyname.perfectpitchpoc:colorButtonNormal}</code></td><td> The color applied to framework buttons in their normal state.</td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.companyname.perfectpitchpoc:colorControlActivated}</code></td><td> The color applied to framework controls in their activated (ex.</td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.companyname.perfectpitchpoc:colorControlHighlight}</code></td><td> The color applied to framework control highlights (ex.</td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.companyname.perfectpitchpoc:colorControlNormal}</code></td><td> The color applied to framework controls in their normal state.</td></tr> <tr><td><code>{@link #AppCompatTheme_colorError com.companyname.perfectpitchpoc:colorError}</code></td><td> Color used for error states and things that need to be drawn to the user's attention.</td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary com.companyname.perfectpitchpoc:colorPrimary}</code></td><td> The primary branding color for the app.</td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.companyname.perfectpitchpoc:colorPrimaryDark}</code></td><td> Dark variant of the primary branding color.</td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.perfectpitchpoc:colorSwitchThumbNormal}</code></td><td> The color applied to framework switch thumbs in their normal state.</td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground com.companyname.perfectpitchpoc:controlBackground}</code></td><td> The background used by framework controls.</td></tr> <tr><td><code>{@link #AppCompatTheme_dialogCornerRadius com.companyname.perfectpitchpoc:dialogCornerRadius}</code></td><td> Preferred corner radius of dialogs.</td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.companyname.perfectpitchpoc:dialogPreferredPadding}</code></td><td> Preferred padding for dialog content.</td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme com.companyname.perfectpitchpoc:dialogTheme}</code></td><td> Theme to use for dialogs spawned from this theme.</td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.companyname.perfectpitchpoc:dividerHorizontal}</code></td><td> A drawable that may be used as a horizontal divider between visual elements.</td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical com.companyname.perfectpitchpoc:dividerVertical}</code></td><td> A drawable that may be used as a vertical divider between visual elements.</td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.companyname.perfectpitchpoc:dropDownListViewStyle}</code></td><td> ListPopupWindow compatibility </td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.perfectpitchpoc:dropdownListPreferredItemHeight}</code></td><td> The preferred item height for dropdown lists.</td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground com.companyname.perfectpitchpoc:editTextBackground}</code></td><td> EditText background drawable.</td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor com.companyname.perfectpitchpoc:editTextColor}</code></td><td> EditText text foreground color.</td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle com.companyname.perfectpitchpoc:editTextStyle}</code></td><td> Default EditText style.</td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.companyname.perfectpitchpoc:homeAsUpIndicator}</code></td><td> Specifies a drawable to use for the 'home as up' indicator.</td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.companyname.perfectpitchpoc:imageButtonStyle}</code></td><td> ImageButton background drawable.</td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.perfectpitchpoc:listChoiceBackgroundIndicator}</code></td><td> Drawable used as a background for selected list items.</td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.companyname.perfectpitchpoc:listDividerAlertDialog}</code></td><td> The list divider used in alert dialogs.</td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.companyname.perfectpitchpoc:listMenuViewStyle}</code></td><td> Default menu-style ListView style.</td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.companyname.perfectpitchpoc:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.companyname.perfectpitchpoc:listPreferredItemHeight}</code></td><td> The preferred list item height.</td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.perfectpitchpoc:listPreferredItemHeightLarge}</code></td><td> A larger, more robust list item height.</td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.perfectpitchpoc:listPreferredItemHeightSmall}</code></td><td> A smaller, sleeker list item height.</td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.perfectpitchpoc:listPreferredItemPaddingLeft}</code></td><td> The preferred padding along the left edge of list items.</td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.perfectpitchpoc:listPreferredItemPaddingRight}</code></td><td> The preferred padding along the right edge of list items.</td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground com.companyname.perfectpitchpoc:panelBackground}</code></td><td> The background of a panel when it is inset from the left and right edges of the screen.</td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.companyname.perfectpitchpoc:panelMenuListTheme}</code></td><td> Default Panel Menu style.</td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.companyname.perfectpitchpoc:panelMenuListWidth}</code></td><td> Default Panel Menu width.</td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.companyname.perfectpitchpoc:popupMenuStyle}</code></td><td> Default PopupMenu style.</td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.companyname.perfectpitchpoc:popupWindowStyle}</code></td><td> Default PopupWindow style.</td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.companyname.perfectpitchpoc:radioButtonStyle}</code></td><td> Default RadioButton style.</td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.companyname.perfectpitchpoc:ratingBarStyle}</code></td><td> Default RatingBar style.</td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.perfectpitchpoc:ratingBarStyleIndicator}</code></td><td> Indicator RatingBar style.</td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.perfectpitchpoc:ratingBarStyleSmall}</code></td><td> Small indicator RatingBar style.</td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.companyname.perfectpitchpoc:searchViewStyle}</code></td><td> Style for the search query widget.</td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.companyname.perfectpitchpoc:seekBarStyle}</code></td><td> Default SeekBar style.</td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.companyname.perfectpitchpoc:selectableItemBackground}</code></td><td> A style that may be applied to buttons or other selectable items that should react to pressed and focus states, but that do not have a clear visual border along the edges.</td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.perfectpitchpoc:selectableItemBackgroundBorderless}</code></td><td> Background drawable for borderless standalone items that need focus/pressed states.</td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.perfectpitchpoc:spinnerDropDownItemStyle}</code></td><td> Default Spinner style.</td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.companyname.perfectpitchpoc:spinnerStyle}</code></td><td> Default Spinner style.</td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle com.companyname.perfectpitchpoc:switchStyle}</code></td><td> Default style for the Switch widget.</td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.perfectpitchpoc:textAppearanceLargePopupMenu}</code></td><td> Text color, typeface, size, and style for the text inside of a popup menu.</td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.companyname.perfectpitchpoc:textAppearanceListItem}</code></td><td> The preferred TextAppearance for the primary text of list items.</td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.companyname.perfectpitchpoc:textAppearanceListItemSecondary}</code></td><td> The preferred TextAppearance for the secondary text of list items.</td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.perfectpitchpoc:textAppearanceListItemSmall}</code></td><td> The preferred TextAppearance for the primary text of small list items.</td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.companyname.perfectpitchpoc:textAppearancePopupMenuHeader}</code></td><td> Text color, typeface, size, and style for header text inside of a popup menu.</td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.perfectpitchpoc:textAppearanceSearchResultSubtitle}</code></td><td> Text color, typeface, size, and style for system search result subtitle.</td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.perfectpitchpoc:textAppearanceSearchResultTitle}</code></td><td> Text color, typeface, size, and style for system search result title.</td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.perfectpitchpoc:textAppearanceSmallPopupMenu}</code></td><td> Text color, typeface, size, and style for small text inside of a popup menu.</td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.perfectpitchpoc:textColorAlertDialogListItem}</code></td><td> Color of list item text in alert dialogs.</td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.companyname.perfectpitchpoc:textColorSearchUrl}</code></td><td> Text color for urls in search suggestions, used by things like global search </td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.perfectpitchpoc:toolbarNavigationButtonStyle}</code></td><td> Default Toolar NavigationButtonStyle </td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.companyname.perfectpitchpoc:toolbarStyle}</code></td><td> Default Toolbar style.</td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.companyname.perfectpitchpoc:tooltipForegroundColor}</code></td><td> Foreground color to use for tooltips </td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.companyname.perfectpitchpoc:tooltipFrameBackground}</code></td><td> Background to use for tooltips </td></tr> <tr><td><code>{@link #AppCompatTheme_viewInflaterClass com.companyname.perfectpitchpoc:viewInflaterClass}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar com.companyname.perfectpitchpoc:windowActionBar}</code></td><td> Flag indicating whether this window should have an Action Bar in place of the usual title bar.</td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.companyname.perfectpitchpoc:windowActionBarOverlay}</code></td><td> Flag indicating whether this window's Action Bar should overlay application content.</td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.companyname.perfectpitchpoc:windowActionModeOverlay}</code></td><td> Flag indicating whether action modes should overlay window content when there is not reserved space for their UI (such as an Action Bar).</td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.perfectpitchpoc:windowFixedHeightMajor}</code></td><td> A fixed height for the window along the major axis of the screen, that is, when in portrait.</td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.perfectpitchpoc:windowFixedHeightMinor}</code></td><td> A fixed height for the window along the minor axis of the screen, that is, when in landscape.</td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.perfectpitchpoc:windowFixedWidthMajor}</code></td><td> A fixed width for the window along the major axis of the screen, that is, when in landscape.</td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.perfectpitchpoc:windowFixedWidthMinor}</code></td><td> A fixed width for the window along the minor axis of the screen, that is, when in portrait.</td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.companyname.perfectpitchpoc:windowMinWidthMajor}</code></td><td> The minimum width the window is allowed to be, along the major axis of the screen.</td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.companyname.perfectpitchpoc:windowMinWidthMinor}</code></td><td> The minimum width the window is allowed to be, along the minor axis of the screen.</td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.companyname.perfectpitchpoc:windowNoTitle}</code></td><td> Flag indicating whether there should be no title on this window.</td></tr> </table> @see #AppCompatTheme_actionBarDivider @see #AppCompatTheme_actionBarItemBackground @see #AppCompatTheme_actionBarPopupTheme @see #AppCompatTheme_actionBarSize @see #AppCompatTheme_actionBarSplitStyle @see #AppCompatTheme_actionBarStyle @see #AppCompatTheme_actionBarTabBarStyle @see #AppCompatTheme_actionBarTabStyle @see #AppCompatTheme_actionBarTabTextStyle @see #AppCompatTheme_actionBarTheme @see #AppCompatTheme_actionBarWidgetTheme @see #AppCompatTheme_actionButtonStyle @see #AppCompatTheme_actionDropDownStyle @see #AppCompatTheme_actionMenuTextAppearance @see #AppCompatTheme_actionMenuTextColor @see #AppCompatTheme_actionModeBackground @see #AppCompatTheme_actionModeCloseButtonStyle @see #AppCompatTheme_actionModeCloseDrawable @see #AppCompatTheme_actionModeCopyDrawable @see #AppCompatTheme_actionModeCutDrawable @see #AppCompatTheme_actionModeFindDrawable @see #AppCompatTheme_actionModePasteDrawable @see #AppCompatTheme_actionModePopupWindowStyle @see #AppCompatTheme_actionModeSelectAllDrawable @see #AppCompatTheme_actionModeShareDrawable @see #AppCompatTheme_actionModeSplitBackground @see #AppCompatTheme_actionModeStyle @see #AppCompatTheme_actionModeWebSearchDrawable @see #AppCompatTheme_actionOverflowButtonStyle @see #AppCompatTheme_actionOverflowMenuStyle @see #AppCompatTheme_activityChooserViewStyle @see #AppCompatTheme_alertDialogButtonGroupStyle @see #AppCompatTheme_alertDialogCenterButtons @see #AppCompatTheme_alertDialogStyle @see #AppCompatTheme_alertDialogTheme @see #AppCompatTheme_android_windowAnimationStyle @see #AppCompatTheme_android_windowIsFloating @see #AppCompatTheme_autoCompleteTextViewStyle @see #AppCompatTheme_borderlessButtonStyle @see #AppCompatTheme_buttonBarButtonStyle @see #AppCompatTheme_buttonBarNegativeButtonStyle @see #AppCompatTheme_buttonBarNeutralButtonStyle @see #AppCompatTheme_buttonBarPositiveButtonStyle @see #AppCompatTheme_buttonBarStyle @see #AppCompatTheme_buttonStyle @see #AppCompatTheme_buttonStyleSmall @see #AppCompatTheme_checkboxStyle @see #AppCompatTheme_checkedTextViewStyle @see #AppCompatTheme_colorAccent @see #AppCompatTheme_colorBackgroundFloating @see #AppCompatTheme_colorButtonNormal @see #AppCompatTheme_colorControlActivated @see #AppCompatTheme_colorControlHighlight @see #AppCompatTheme_colorControlNormal @see #AppCompatTheme_colorError @see #AppCompatTheme_colorPrimary @see #AppCompatTheme_colorPrimaryDark @see #AppCompatTheme_colorSwitchThumbNormal @see #AppCompatTheme_controlBackground @see #AppCompatTheme_dialogCornerRadius @see #AppCompatTheme_dialogPreferredPadding @see #AppCompatTheme_dialogTheme @see #AppCompatTheme_dividerHorizontal @see #AppCompatTheme_dividerVertical @see #AppCompatTheme_dropDownListViewStyle @see #AppCompatTheme_dropdownListPreferredItemHeight @see #AppCompatTheme_editTextBackground @see #AppCompatTheme_editTextColor @see #AppCompatTheme_editTextStyle @see #AppCompatTheme_homeAsUpIndicator @see #AppCompatTheme_imageButtonStyle @see #AppCompatTheme_listChoiceBackgroundIndicator @see #AppCompatTheme_listDividerAlertDialog @see #AppCompatTheme_listMenuViewStyle @see #AppCompatTheme_listPopupWindowStyle @see #AppCompatTheme_listPreferredItemHeight @see #AppCompatTheme_listPreferredItemHeightLarge @see #AppCompatTheme_listPreferredItemHeightSmall @see #AppCompatTheme_listPreferredItemPaddingLeft @see #AppCompatTheme_listPreferredItemPaddingRight @see #AppCompatTheme_panelBackground @see #AppCompatTheme_panelMenuListTheme @see #AppCompatTheme_panelMenuListWidth @see #AppCompatTheme_popupMenuStyle @see #AppCompatTheme_popupWindowStyle @see #AppCompatTheme_radioButtonStyle @see #AppCompatTheme_ratingBarStyle @see #AppCompatTheme_ratingBarStyleIndicator @see #AppCompatTheme_ratingBarStyleSmall @see #AppCompatTheme_searchViewStyle @see #AppCompatTheme_seekBarStyle @see #AppCompatTheme_selectableItemBackground @see #AppCompatTheme_selectableItemBackgroundBorderless @see #AppCompatTheme_spinnerDropDownItemStyle @see #AppCompatTheme_spinnerStyle @see #AppCompatTheme_switchStyle @see #AppCompatTheme_textAppearanceLargePopupMenu @see #AppCompatTheme_textAppearanceListItem @see #AppCompatTheme_textAppearanceListItemSecondary @see #AppCompatTheme_textAppearanceListItemSmall @see #AppCompatTheme_textAppearancePopupMenuHeader @see #AppCompatTheme_textAppearanceSearchResultSubtitle @see #AppCompatTheme_textAppearanceSearchResultTitle @see #AppCompatTheme_textAppearanceSmallPopupMenu @see #AppCompatTheme_textColorAlertDialogListItem @see #AppCompatTheme_textColorSearchUrl @see #AppCompatTheme_toolbarNavigationButtonStyle @see #AppCompatTheme_toolbarStyle @see #AppCompatTheme_tooltipForegroundColor @see #AppCompatTheme_tooltipFrameBackground @see #AppCompatTheme_viewInflaterClass @see #AppCompatTheme_windowActionBar @see #AppCompatTheme_windowActionBarOverlay @see #AppCompatTheme_windowActionModeOverlay @see #AppCompatTheme_windowFixedHeightMajor @see #AppCompatTheme_windowFixedHeightMinor @see #AppCompatTheme_windowFixedWidthMajor @see #AppCompatTheme_windowFixedWidthMinor @see #AppCompatTheme_windowMinWidthMajor @see #AppCompatTheme_windowMinWidthMinor @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3 }; /** <p> @attr description Custom divider drawable to use for elements in the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p> @attr description Custom item state list drawable background for action bar items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p> @attr description Reference to a theme that should be used to inflate popups shown by widgets in the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p> @attr description Size of the Action Bar, including the contextual bar used to present Action Modes. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p> @attr description Reference to a style for the split Action Bar. This style controls the split component that holds the menu/action buttons. actionBarStyle is still used for the primary bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p> @attr description Reference to a style for the Action Bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p> @attr description Default style for tabs within an action bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p> @attr description Reference to a theme that should be used to inflate the action bar. This will be inherited by any widget inflated into the action bar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p> @attr description Reference to a theme that should be used to inflate widgets and layouts destined for the action bar. Most of the time this will be a reference to the current theme, but when the action bar has a significantly different contrast profile than the rest of the activity the difference can become important. If this is set to @null the current theme will be used. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p> @attr description Default action button style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 51; /** <p> @attr description Default ActionBar dropdown style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 47; /** <p> @attr description TextAppearance style that will be applied to text that appears within action menu items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p> @attr description Color for text that appears within action menu items. Color for text that appears within action menu items. <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p> @attr description Background drawable to use for action mode UI <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p> @attr description Drawable to use for the close action mode button <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p> @attr description Drawable to use for the Copy action button in Contextual Action Bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p> @attr description Drawable to use for the Cut action button in Contextual Action Bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p> @attr description Drawable to use for the Find action button in WebView selection action modes <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p> @attr description Drawable to use for the Paste action button in Contextual Action Bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p> @attr description PopupWindow style to use for action modes when showing as a window overlay. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p> @attr description Drawable to use for the Select all action button in Contextual Action Bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p> @attr description Drawable to use for the Share action button in WebView selection action modes <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p> @attr description Background drawable to use for action mode UI in the lower split bar <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p> @attr description Drawable to use for the Web Search action button in WebView selection action modes <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p> @attr description Default ActivityChooserView style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 59; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 96; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 97; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 95; /** <p> @attr description Theme to use for alert dialogs spawned from this theme. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme = 98; /** <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> @attr description Default AutoCompleteTextView style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 103; /** <p> @attr description Style for buttons without an explicit border, often used in groups. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 56; /** <p> @attr description Style for buttons within button bars <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 53; /** <p> @attr description Style for the "negative" buttons within button bars <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 101; /** <p> @attr description Style for the "neutral" buttons within button bars <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 102; /** <p> @attr description Style for the "positive" buttons within button bars <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 100; /** <p> @attr description Style for button bars <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 52; /** <p> @attr description Normal Button style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 104; /** <p> @attr description Small Button style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 105; /** <p> @attr description Default Checkbox style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 106; /** <p> @attr description Default CheckedTextView style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 107; /** <p> @attr description Bright complement to the primary branding color. By default, this is the color applied to framework controls (via colorControlActivated). <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorAccent */ public static final int AppCompatTheme_colorAccent = 87; /** <p> @attr description Default color of background imagery for floating components, ex. dialogs, popups, and cards. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating = 94; /** <p> @attr description The color applied to framework buttons in their normal state. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 91; /** <p> @attr description The color applied to framework controls in their activated (ex. checked) state. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 89; /** <p> @attr description The color applied to framework control highlights (ex. ripples, list selectors). <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 90; /** <p> @attr description The color applied to framework controls in their normal state. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 88; /** <p> @attr description Color used for error states and things that need to be drawn to the user's attention. <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorError */ public static final int AppCompatTheme_colorError = 119; /** <p> @attr description The primary branding color for the app. By default, this is the color applied to the action bar background. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 85; /** <p> @attr description Dark variant of the primary branding color. By default, this is the color applied to the status bar (via statusBarColor) and navigation bar (via navigationBarColor). <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 86; /** <p> @attr description The color applied to framework switch thumbs in their normal state. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 92; /** <p> @attr description The background used by framework controls. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:controlBackground */ public static final int AppCompatTheme_controlBackground = 93; /** <p> @attr description Preferred corner radius of dialogs. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:dialogCornerRadius */ public static final int AppCompatTheme_dialogCornerRadius = 46; /** <p> @attr description Preferred padding for dialog content. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 44; /** <p> @attr description Theme to use for dialogs spawned from this theme. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 43; /** <p> @attr description A drawable that may be used as a horizontal divider between visual elements. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 58; /** <p> @attr description A drawable that may be used as a vertical divider between visual elements. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 57; /** <p> @attr description ListPopupWindow compatibility <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 76; /** <p> @attr description The preferred item height for dropdown lists. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 48; /** <p> @attr description EditText background drawable. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 65; /** <p> @attr description EditText text foreground color. <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:editTextColor */ public static final int AppCompatTheme_editTextColor = 64; /** <p> @attr description Default EditText style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 108; /** <p> @attr description Specifies a drawable to use for the 'home as up' indicator. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 50; /** <p> @attr description ImageButton background drawable. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 66; /** <p> @attr description Drawable used as a background for selected list items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 84; /** <p> @attr description The list divider used in alert dialogs. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 45; /** <p> @attr description Default menu-style ListView style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle = 116; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 77; /** <p> @attr description The preferred list item height. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 71; /** <p> @attr description A larger, more robust list item height. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 73; /** <p> @attr description A smaller, sleeker list item height. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 72; /** <p> @attr description The preferred padding along the left edge of list items. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 74; /** <p> @attr description The preferred padding along the right edge of list items. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 75; /** <p> @attr description The background of a panel when it is inset from the left and right edges of the screen. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:panelBackground */ public static final int AppCompatTheme_panelBackground = 81; /** <p> @attr description Default Panel Menu style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 83; /** <p> @attr description Default Panel Menu width. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 82; /** <p> @attr description Default PopupMenu style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 62; /** <p> @attr description Default PopupWindow style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 63; /** <p> @attr description Default RadioButton style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 109; /** <p> @attr description Default RatingBar style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 110; /** <p> @attr description Indicator RatingBar style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 111; /** <p> @attr description Small indicator RatingBar style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 112; /** <p> @attr description Style for the search query widget. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 70; /** <p> @attr description Default SeekBar style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 113; /** <p> @attr description A style that may be applied to buttons or other selectable items that should react to pressed and focus states, but that do not have a clear visual border along the edges. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 54; /** <p> @attr description Background drawable for borderless standalone items that need focus/pressed states. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 55; /** <p> @attr description Default Spinner style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 49; /** <p> @attr description Default Spinner style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 114; /** <p> @attr description Default style for the Switch widget. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:switchStyle */ public static final int AppCompatTheme_switchStyle = 115; /** <p> @attr description Text color, typeface, size, and style for the text inside of a popup menu. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p> @attr description The preferred TextAppearance for the primary text of list items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 78; /** <p> @attr description The preferred TextAppearance for the secondary text of list items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary = 79; /** <p> @attr description The preferred TextAppearance for the primary text of small list items. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 80; /** <p> @attr description Text color, typeface, size, and style for header text inside of a popup menu. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p> @attr description Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 68; /** <p> @attr description Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 67; /** <p> @attr description Text color, typeface, size, and style for small text inside of a popup menu. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p> @attr description Color of list item text in alert dialogs. <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 99; /** <p> @attr description Text color for urls in search suggestions, used by things like global search <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 69; /** <p> @attr description Default Toolar NavigationButtonStyle <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 61; /** <p> @attr description Default Toolbar style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 60; /** <p> @attr description Foreground color to use for tooltips <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor = 118; /** <p> @attr description Background to use for tooltips <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground = 117; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#viewInflaterClass} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:viewInflaterClass */ public static final int AppCompatTheme_viewInflaterClass = 120; /** <p> @attr description Flag indicating whether this window should have an Action Bar in place of the usual title bar. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p> @attr description Flag indicating whether this window's Action Bar should overlay application content. Does nothing if the window would not have an Action Bar. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p> @attr description Flag indicating whether action modes should overlay window content when there is not reserved space for their UI (such as an Action Bar). <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p> @attr description A fixed height for the window along the major axis of the screen, that is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p> @attr description A fixed height for the window along the minor axis of the screen, that is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p> @attr description A fixed width for the window along the major axis of the screen, that is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p> @attr description A fixed width for the window along the minor axis of the screen, that is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p> @attr description The minimum width the window is allowed to be, along the major axis of the screen. That is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p> @attr description The minimum width the window is allowed to be, along the minor axis of the screen. That is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p> @attr description Flag indicating whether there should be no title on this window. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle = 3; /** Attributes that can be used with a BottomAppBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomAppBar_backgroundTint com.companyname.perfectpitchpoc:backgroundTint}</code></td><td> Tint to apply to the background.</td></tr> <tr><td><code>{@link #BottomAppBar_fabAlignmentMode com.companyname.perfectpitchpoc:fabAlignmentMode}</code></td><td></td></tr> <tr><td><code>{@link #BottomAppBar_fabCradleMargin com.companyname.perfectpitchpoc:fabCradleMargin}</code></td><td></td></tr> <tr><td><code>{@link #BottomAppBar_fabCradleRoundedCornerRadius com.companyname.perfectpitchpoc:fabCradleRoundedCornerRadius}</code></td><td></td></tr> <tr><td><code>{@link #BottomAppBar_fabCradleVerticalOffset com.companyname.perfectpitchpoc:fabCradleVerticalOffset}</code></td><td></td></tr> <tr><td><code>{@link #BottomAppBar_hideOnScroll com.companyname.perfectpitchpoc:hideOnScroll}</code></td><td></td></tr> </table> @see #BottomAppBar_backgroundTint @see #BottomAppBar_fabAlignmentMode @see #BottomAppBar_fabCradleMargin @see #BottomAppBar_fabCradleRoundedCornerRadius @see #BottomAppBar_fabCradleVerticalOffset @see #BottomAppBar_hideOnScroll */ public static final int[] BottomAppBar = { 0x7f01010e, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d }; /** <p> @attr description Tint to apply to the background. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:backgroundTint */ public static final int BottomAppBar_backgroundTint = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#fabAlignmentMode} attribute's value can be found in the {@link #BottomAppBar} 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>center</code></td><td>0</td><td></td></tr> <tr><td><code>end</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.perfectpitchpoc:fabAlignmentMode */ public static final int BottomAppBar_fabAlignmentMode = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#fabCradleMargin} attribute's value can be found in the {@link #BottomAppBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:fabCradleMargin */ public static final int BottomAppBar_fabCradleMargin = 2; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#fabCradleRoundedCornerRadius} attribute's value can be found in the {@link #BottomAppBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:fabCradleRoundedCornerRadius */ public static final int BottomAppBar_fabCradleRoundedCornerRadius = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#fabCradleVerticalOffset} attribute's value can be found in the {@link #BottomAppBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:fabCradleVerticalOffset */ public static final int BottomAppBar_fabCradleVerticalOffset = 4; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#hideOnScroll} attribute's value can be found in the {@link #BottomAppBar} 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.companyname.perfectpitchpoc:hideOnScroll */ public static final int BottomAppBar_hideOnScroll = 5; /** 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.companyname.perfectpitchpoc:elevation}</code></td><td> Elevation for the action bar itself </td></tr> <tr><td><code>{@link #BottomNavigationView_itemBackground com.companyname.perfectpitchpoc:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemHorizontalTranslationEnabled com.companyname.perfectpitchpoc:itemHorizontalTranslationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconSize com.companyname.perfectpitchpoc:itemIconSize}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconTint com.companyname.perfectpitchpoc:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextAppearanceActive com.companyname.perfectpitchpoc:itemTextAppearanceActive}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextAppearanceInactive com.companyname.perfectpitchpoc:itemTextAppearanceInactive}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextColor com.companyname.perfectpitchpoc:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_labelVisibilityMode com.companyname.perfectpitchpoc:labelVisibilityMode}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_menu com.companyname.perfectpitchpoc:menu}</code></td><td></td></tr> </table> @see #BottomNavigationView_elevation @see #BottomNavigationView_itemBackground @see #BottomNavigationView_itemHorizontalTranslationEnabled @see #BottomNavigationView_itemIconSize @see #BottomNavigationView_itemIconTint @see #BottomNavigationView_itemTextAppearanceActive @see #BottomNavigationView_itemTextAppearanceInactive @see #BottomNavigationView_itemTextColor @see #BottomNavigationView_labelVisibilityMode @see #BottomNavigationView_menu */ public static final int[] BottomNavigationView = { 0x7f010031, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, 0x7f010186, 0x7f010187, 0x7f010188, 0x7f010189 }; /** <p> @attr description Elevation for the action bar itself <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:elevation */ public static final int BottomNavigationView_elevation = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:itemBackground */ public static final int BottomNavigationView_itemBackground = 9; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#itemHorizontalTranslationEnabled} attribute's value can be found in the {@link #BottomNavigationView} 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.companyname.perfectpitchpoc:itemHorizontalTranslationEnabled */ public static final int BottomNavigationView_itemHorizontalTranslationEnabled = 5; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#itemIconSize} 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.companyname.perfectpitchpoc:itemIconSize */ public static final int BottomNavigationView_itemIconSize = 2; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:itemIconTint */ public static final int BottomNavigationView_itemIconTint = 7; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#itemTextAppearanceActive} 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.companyname.perfectpitchpoc:itemTextAppearanceActive */ public static final int BottomNavigationView_itemTextAppearanceActive = 4; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#itemTextAppearanceInactive} 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.companyname.perfectpitchpoc:itemTextAppearanceInactive */ public static final int BottomNavigationView_itemTextAppearanceInactive = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:itemTextColor */ public static final int BottomNavigationView_itemTextColor = 8; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#labelVisibilityMode} attribute's value can be found in the {@link #BottomNavigationView} 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>selected</code></td><td>0</td><td></td></tr> <tr><td><code>labeled</code></td><td>1</td><td></td></tr> <tr><td><code>unlabeled</code></td><td>2</td><td></td></tr> </table> @attr name com.companyname.perfectpitchpoc:labelVisibilityMode */ public static final int BottomNavigationView_labelVisibilityMode = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:menu */ public static final int BottomNavigationView_menu = 6; /** 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_fitToContents com.companyname.perfectpitchpoc:behavior_fitToContents}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.companyname.perfectpitchpoc:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.companyname.perfectpitchpoc:behavior_peekHeight}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.companyname.perfectpitchpoc:behavior_skipCollapsed}</code></td><td></td></tr> </table> @see #BottomSheetBehavior_Layout_behavior_fitToContents @see #BottomSheetBehavior_Layout_behavior_hideable @see #BottomSheetBehavior_Layout_behavior_peekHeight @see #BottomSheetBehavior_Layout_behavior_skipCollapsed */ public static final int[] BottomSheetBehavior_Layout = { 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#behavior_fitToContents} 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.companyname.perfectpitchpoc:behavior_fitToContents */ public static final int BottomSheetBehavior_Layout_behavior_fitToContents = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:allowStacking}</code></td><td> Whether to automatically stack the buttons when there is not enough space to lay them out side-by-side.</td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f0100c4 }; /** <p> @attr description Whether to automatically stack the buttons when there is not enough space to lay them out side-by-side. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a CardView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td> Workaround to read user defined minimum height </td></tr> <tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td> Workaround to read user defined minimum width </td></tr> <tr><td><code>{@link #CardView_cardBackgroundColor com.companyname.perfectpitchpoc:cardBackgroundColor}</code></td><td> Background color for CardView.</td></tr> <tr><td><code>{@link #CardView_cardCornerRadius com.companyname.perfectpitchpoc:cardCornerRadius}</code></td><td> Corner radius for CardView.</td></tr> <tr><td><code>{@link #CardView_cardElevation com.companyname.perfectpitchpoc:cardElevation}</code></td><td> Elevation for CardView.</td></tr> <tr><td><code>{@link #CardView_cardMaxElevation com.companyname.perfectpitchpoc:cardMaxElevation}</code></td><td> Maximum Elevation for CardView.</td></tr> <tr><td><code>{@link #CardView_cardPreventCornerOverlap com.companyname.perfectpitchpoc:cardPreventCornerOverlap}</code></td><td> Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners.</td></tr> <tr><td><code>{@link #CardView_cardUseCompatPadding com.companyname.perfectpitchpoc:cardUseCompatPadding}</code></td><td> Add padding in API v21+ as well to have the same measurements with previous versions.</td></tr> <tr><td><code>{@link #CardView_contentPadding com.companyname.perfectpitchpoc:contentPadding}</code></td><td> Inner padding between the edges of the Card and children of the CardView.</td></tr> <tr><td><code>{@link #CardView_contentPaddingBottom com.companyname.perfectpitchpoc:contentPaddingBottom}</code></td><td> Inner padding between the bottom edge of the Card and children of the CardView.</td></tr> <tr><td><code>{@link #CardView_contentPaddingLeft com.companyname.perfectpitchpoc:contentPaddingLeft}</code></td><td> Inner padding between the left edge of the Card and children of the CardView.</td></tr> <tr><td><code>{@link #CardView_contentPaddingRight com.companyname.perfectpitchpoc:contentPaddingRight}</code></td><td> Inner padding between the right edge of the Card and children of the CardView.</td></tr> <tr><td><code>{@link #CardView_contentPaddingTop com.companyname.perfectpitchpoc:contentPaddingTop}</code></td><td> Inner padding between the top edge of the Card and children of the CardView.</td></tr> </table> @see #CardView_android_minHeight @see #CardView_android_minWidth @see #CardView_cardBackgroundColor @see #CardView_cardCornerRadius @see #CardView_cardElevation @see #CardView_cardMaxElevation @see #CardView_cardPreventCornerOverlap @see #CardView_cardUseCompatPadding @see #CardView_contentPadding @see #CardView_contentPaddingBottom @see #CardView_contentPaddingLeft @see #CardView_contentPaddingRight @see #CardView_contentPaddingTop */ public static final int[] CardView = { 0x0101013f, 0x01010140, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014 }; /** <p> @attr description Workaround to read user defined minimum height <p>This corresponds to the global attribute resource symbol {@link android.R.attr#minHeight}. @attr name android:minHeight */ public static final int CardView_android_minHeight = 1; /** <p> @attr description Workaround to read user defined minimum width <p>This corresponds to the global attribute resource symbol {@link android.R.attr#minWidth}. @attr name android:minWidth */ public static final int CardView_android_minWidth = 0; /** <p> @attr description Background color for CardView. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:cardBackgroundColor */ public static final int CardView_cardBackgroundColor = 2; /** <p> @attr description Corner radius for CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:cardCornerRadius */ public static final int CardView_cardCornerRadius = 3; /** <p> @attr description Elevation for CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:cardElevation */ public static final int CardView_cardElevation = 4; /** <p> @attr description Maximum Elevation for CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:cardMaxElevation */ public static final int CardView_cardMaxElevation = 5; /** <p> @attr description Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:cardPreventCornerOverlap */ public static final int CardView_cardPreventCornerOverlap = 7; /** <p> @attr description Add padding in API v21+ as well to have the same measurements with previous versions. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:cardUseCompatPadding */ public static final int CardView_cardUseCompatPadding = 6; /** <p> @attr description Inner padding between the edges of the Card and children of the CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentPadding */ public static final int CardView_contentPadding = 8; /** <p> @attr description Inner padding between the bottom edge of the Card and children of the CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentPaddingBottom */ public static final int CardView_contentPaddingBottom = 12; /** <p> @attr description Inner padding between the left edge of the Card and children of the CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentPaddingLeft */ public static final int CardView_contentPaddingLeft = 9; /** <p> @attr description Inner padding between the right edge of the Card and children of the CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentPaddingRight */ public static final int CardView_contentPaddingRight = 10; /** <p> @attr description Inner padding between the top edge of the Card and children of the CardView. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentPaddingTop */ public static final int CardView_contentPaddingTop = 11; /** Attributes that can be used with a Chip. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Chip_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #Chip_android_ellipsize android:ellipsize}</code></td><td></td></tr> <tr><td><code>{@link #Chip_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #Chip_android_text android:text}</code></td><td></td></tr> <tr><td><code>{@link #Chip_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Chip_checkedIcon com.companyname.perfectpitchpoc:checkedIcon}</code></td><td></td></tr> <tr><td><code>{@link #Chip_checkedIconEnabled com.companyname.perfectpitchpoc:checkedIconEnabled}</code></td><td></td></tr> <tr><td><code>{@link #Chip_checkedIconVisible com.companyname.perfectpitchpoc:checkedIconVisible}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipBackgroundColor com.companyname.perfectpitchpoc:chipBackgroundColor}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipCornerRadius com.companyname.perfectpitchpoc:chipCornerRadius}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipEndPadding com.companyname.perfectpitchpoc:chipEndPadding}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipIcon com.companyname.perfectpitchpoc:chipIcon}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipIconEnabled com.companyname.perfectpitchpoc:chipIconEnabled}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipIconSize com.companyname.perfectpitchpoc:chipIconSize}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipIconTint com.companyname.perfectpitchpoc:chipIconTint}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipIconVisible com.companyname.perfectpitchpoc:chipIconVisible}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipMinHeight com.companyname.perfectpitchpoc:chipMinHeight}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipStartPadding com.companyname.perfectpitchpoc:chipStartPadding}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipStrokeColor com.companyname.perfectpitchpoc:chipStrokeColor}</code></td><td></td></tr> <tr><td><code>{@link #Chip_chipStrokeWidth com.companyname.perfectpitchpoc:chipStrokeWidth}</code></td><td></td></tr> <tr><td><code>{@link #Chip_closeIcon com.companyname.perfectpitchpoc:closeIcon}</code></td><td> Close button icon </td></tr> <tr><td><code>{@link #Chip_closeIconEnabled com.companyname.perfectpitchpoc:closeIconEnabled}</code></td><td></td></tr> <tr><td><code>{@link #Chip_closeIconEndPadding com.companyname.perfectpitchpoc:closeIconEndPadding}</code></td><td></td></tr> <tr><td><code>{@link #Chip_closeIconSize com.companyname.perfectpitchpoc:closeIconSize}</code></td><td></td></tr> <tr><td><code>{@link #Chip_closeIconStartPadding com.companyname.perfectpitchpoc:closeIconStartPadding}</code></td><td></td></tr> <tr><td><code>{@link #Chip_closeIconTint com.companyname.perfectpitchpoc:closeIconTint}</code></td><td></td></tr> <tr><td><code>{@link #Chip_closeIconVisible com.companyname.perfectpitchpoc:closeIconVisible}</code></td><td></td></tr> <tr><td><code>{@link #Chip_hideMotionSpec com.companyname.perfectpitchpoc:hideMotionSpec}</code></td><td></td></tr> <tr><td><code>{@link #Chip_iconEndPadding com.companyname.perfectpitchpoc:iconEndPadding}</code></td><td></td></tr> <tr><td><code>{@link #Chip_iconStartPadding com.companyname.perfectpitchpoc:iconStartPadding}</code></td><td></td></tr> <tr><td><code>{@link #Chip_rippleColor com.companyname.perfectpitchpoc:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #Chip_showMotionSpec com.companyname.perfectpitchpoc:showMotionSpec}</code></td><td></td></tr> <tr><td><code>{@link #Chip_textEndPadding com.companyname.perfectpitchpoc:textEndPadding}</code></td><td></td></tr> <tr><td><code>{@link #Chip_textStartPadding com.companyname.perfectpitchpoc:textStartPadding}</code></td><td></td></tr> </table> @see #Chip_android_checkable @see #Chip_android_ellipsize @see #Chip_android_maxWidth @see #Chip_android_text @see #Chip_android_textAppearance @see #Chip_checkedIcon @see #Chip_checkedIconEnabled @see #Chip_checkedIconVisible @see #Chip_chipBackgroundColor @see #Chip_chipCornerRadius @see #Chip_chipEndPadding @see #Chip_chipIcon @see #Chip_chipIconEnabled @see #Chip_chipIconSize @see #Chip_chipIconTint @see #Chip_chipIconVisible @see #Chip_chipMinHeight @see #Chip_chipStartPadding @see #Chip_chipStrokeColor @see #Chip_chipStrokeWidth @see #Chip_closeIcon @see #Chip_closeIconEnabled @see #Chip_closeIconEndPadding @see #Chip_closeIconSize @see #Chip_closeIconStartPadding @see #Chip_closeIconTint @see #Chip_closeIconVisible @see #Chip_hideMotionSpec @see #Chip_iconEndPadding @see #Chip_iconStartPadding @see #Chip_rippleColor @see #Chip_showMotionSpec @see #Chip_textEndPadding @see #Chip_textStartPadding */ public static final int[] Chip = { 0x01010034, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f0100e6, 0x7f010119, 0x7f01011d, 0x7f01011f, 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157, 0x7f010158, 0x7f010159, 0x7f01015a, 0x7f01015b, 0x7f01015c, 0x7f01015d, 0x7f01015e, 0x7f01015f }; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #Chip} array. @attr name android:checkable */ public static final int Chip_android_checkable = 4; /** <p>This symbol is the offset where the {@link android.R.attr#ellipsize} attribute's value can be found in the {@link #Chip} array. @attr name android:ellipsize */ public static final int Chip_android_ellipsize = 1; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #Chip} array. @attr name android:maxWidth */ public static final int Chip_android_maxWidth = 2; /** <p>This symbol is the offset where the {@link android.R.attr#text} attribute's value can be found in the {@link #Chip} array. @attr name android:text */ public static final int Chip_android_text = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #Chip} array. @attr name android:textAppearance */ public static final int Chip_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#checkedIcon} attribute's value can be found in the {@link #Chip} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:checkedIcon */ public static final int Chip_checkedIcon = 25; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#checkedIconEnabled} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:checkedIconEnabled */ public static final int Chip_checkedIconEnabled = 24; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#checkedIconVisible} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:checkedIconVisible */ public static final int Chip_checkedIconVisible = 23; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipBackgroundColor} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:chipBackgroundColor */ public static final int Chip_chipBackgroundColor = 9; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipCornerRadius} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:chipCornerRadius */ public static final int Chip_chipCornerRadius = 11; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipEndPadding} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:chipEndPadding */ public static final int Chip_chipEndPadding = 33; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipIcon} attribute's value can be found in the {@link #Chip} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:chipIcon */ public static final int Chip_chipIcon = 16; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipIconEnabled} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:chipIconEnabled */ public static final int Chip_chipIconEnabled = 15; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipIconSize} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:chipIconSize */ public static final int Chip_chipIconSize = 18; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipIconTint} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:chipIconTint */ public static final int Chip_chipIconTint = 17; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipIconVisible} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:chipIconVisible */ public static final int Chip_chipIconVisible = 14; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipMinHeight} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:chipMinHeight */ public static final int Chip_chipMinHeight = 10; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipStartPadding} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:chipStartPadding */ public static final int Chip_chipStartPadding = 26; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipStrokeColor} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:chipStrokeColor */ public static final int Chip_chipStrokeColor = 12; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipStrokeWidth} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:chipStrokeWidth */ public static final int Chip_chipStrokeWidth = 13; /** <p> @attr description Close button icon <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:closeIcon */ public static final int Chip_closeIcon = 5; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#closeIconEnabled} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:closeIconEnabled */ public static final int Chip_closeIconEnabled = 20; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#closeIconEndPadding} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:closeIconEndPadding */ public static final int Chip_closeIconEndPadding = 32; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#closeIconSize} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:closeIconSize */ public static final int Chip_closeIconSize = 22; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#closeIconStartPadding} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:closeIconStartPadding */ public static final int Chip_closeIconStartPadding = 31; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#closeIconTint} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:closeIconTint */ public static final int Chip_closeIconTint = 21; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#closeIconVisible} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:closeIconVisible */ public static final int Chip_closeIconVisible = 19; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#hideMotionSpec} attribute's value can be found in the {@link #Chip} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:hideMotionSpec */ public static final int Chip_hideMotionSpec = 6; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#iconEndPadding} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:iconEndPadding */ public static final int Chip_iconEndPadding = 28; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#iconStartPadding} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:iconStartPadding */ public static final int Chip_iconStartPadding = 27; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#rippleColor} attribute's value can be found in the {@link #Chip} 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.companyname.perfectpitchpoc:rippleColor */ public static final int Chip_rippleColor = 7; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#showMotionSpec} attribute's value can be found in the {@link #Chip} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:showMotionSpec */ public static final int Chip_showMotionSpec = 8; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textEndPadding} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:textEndPadding */ public static final int Chip_textEndPadding = 30; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textStartPadding} attribute's value can be found in the {@link #Chip} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:textStartPadding */ public static final int Chip_textStartPadding = 29; /** Attributes that can be used with a ChipGroup. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ChipGroup_checkedChip com.companyname.perfectpitchpoc:checkedChip}</code></td><td></td></tr> <tr><td><code>{@link #ChipGroup_chipSpacing com.companyname.perfectpitchpoc:chipSpacing}</code></td><td></td></tr> <tr><td><code>{@link #ChipGroup_chipSpacingHorizontal com.companyname.perfectpitchpoc:chipSpacingHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #ChipGroup_chipSpacingVertical com.companyname.perfectpitchpoc:chipSpacingVertical}</code></td><td></td></tr> <tr><td><code>{@link #ChipGroup_singleLine com.companyname.perfectpitchpoc:singleLine}</code></td><td></td></tr> <tr><td><code>{@link #ChipGroup_singleSelection com.companyname.perfectpitchpoc:singleSelection}</code></td><td></td></tr> </table> @see #ChipGroup_checkedChip @see #ChipGroup_chipSpacing @see #ChipGroup_chipSpacingHorizontal @see #ChipGroup_chipSpacingVertical @see #ChipGroup_singleLine @see #ChipGroup_singleSelection */ public static final int[] ChipGroup = { 0x7f010160, 0x7f010161, 0x7f010162, 0x7f010163, 0x7f010164, 0x7f010165 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#checkedChip} attribute's value can be found in the {@link #ChipGroup} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:checkedChip */ public static final int ChipGroup_checkedChip = 5; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipSpacing} attribute's value can be found in the {@link #ChipGroup} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:chipSpacing */ public static final int ChipGroup_chipSpacing = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipSpacingHorizontal} attribute's value can be found in the {@link #ChipGroup} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:chipSpacingHorizontal */ public static final int ChipGroup_chipSpacingHorizontal = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipSpacingVertical} attribute's value can be found in the {@link #ChipGroup} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:chipSpacingVertical */ public static final int ChipGroup_chipSpacingVertical = 2; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#singleLine} attribute's value can be found in the {@link #ChipGroup} 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.companyname.perfectpitchpoc:singleLine */ public static final int ChipGroup_singleLine = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#singleSelection} attribute's value can be found in the {@link #ChipGroup} 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.companyname.perfectpitchpoc:singleSelection */ public static final int ChipGroup_singleSelection = 4; /** 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.companyname.perfectpitchpoc:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.perfectpitchpoc:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.companyname.perfectpitchpoc:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.perfectpitchpoc:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.perfectpitchpoc:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.perfectpitchpoc:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.perfectpitchpoc:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.perfectpitchpoc:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.perfectpitchpoc:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.perfectpitchpoc:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.companyname.perfectpitchpoc:scrimAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.companyname.perfectpitchpoc:scrimVisibleHeightTrigger}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.perfectpitchpoc:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title com.companyname.perfectpitchpoc:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.companyname.perfectpitchpoc:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.companyname.perfectpitchpoc: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 = { 0x7f010018, 0x7f010166, 0x7f010167, 0x7f010168, 0x7f010169, 0x7f01016a, 0x7f01016b, 0x7f01016c, 0x7f01016d, 0x7f01016e, 0x7f01016f, 0x7f010170, 0x7f010171, 0x7f010172, 0x7f010173, 0x7f010174 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity = 14; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:title */ public static final int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled = 15; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.companyname.perfectpitchpoc:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_Layout_layout_collapseMode @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout = { 0x7f010175, 0x7f010176 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:alpha}</code></td><td> Alpha multiplier applied to the base color.</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> Base color for this state.</td></tr> </table> @see #ColorStateListItem_alpha @see #ColorStateListItem_android_alpha @see #ColorStateListItem_android_color */ public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f0101d1 }; /** <p> @attr description Alpha multiplier applied to the base color. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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> @attr description Base color for this state. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#color}. @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.companyname.perfectpitchpoc:buttonTint}</code></td><td> Tint to apply to the button drawable.</td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.companyname.perfectpitchpoc:buttonTintMode}</code></td><td> Blending mode used to apply the button tint.</td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100c5, 0x7f0100c6 }; /** <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> @attr description Tint to apply to the button drawable. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p> @attr description Blending mode used to apply the button tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a CoordinatorLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_keylines com.companyname.perfectpitchpoc:keylines}</code></td><td> A reference to an array of integers representing the locations of horizontal keylines in dp from the starting edge.</td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.companyname.perfectpitchpoc:statusBarBackground}</code></td><td> Drawable to display behind the status bar when the view is set to draw behind it.</td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f0101c9, 0x7f0101ca }; /** <p> @attr description A reference to an array of integers representing the locations of horizontal keylines in dp from the starting edge. Child views can refer to these keylines for alignment using layout_keyline="index" where index is a 0-based index into this array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:keylines */ public static final int CoordinatorLayout_keylines = 0; /** <p> @attr description Drawable to display behind the status bar when the view is set to draw behind it. <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:layout_anchor}</code></td><td> The id of an anchor view that this view should position relative to.</td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.companyname.perfectpitchpoc:layout_anchorGravity}</code></td><td> Specifies how an object should position relative to an anchor, on both the X and Y axes, within its parent's bounds.</td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.companyname.perfectpitchpoc:layout_behavior}</code></td><td> The class name of a Behavior class defining special runtime behavior for this child view.</td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.companyname.perfectpitchpoc:layout_dodgeInsetEdges}</code></td><td> Specifies how this view dodges the inset edges of the CoordinatorLayout.</td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.companyname.perfectpitchpoc:layout_insetEdge}</code></td><td> Specifies how this view insets the CoordinatorLayout and make some other views dodge it.</td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.companyname.perfectpitchpoc:layout_keyline}</code></td><td> The index of a keyline this view should position relative to.</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, 0x7f0101cb, 0x7f0101cc, 0x7f0101cd, 0x7f0101ce, 0x7f0101cf, 0x7f0101d0 }; /** <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> @attr description The id of an anchor view that this view should position relative to. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor = 2; /** <p> @attr description Specifies how an object should position relative to an anchor, on both the X and Y axes, within its parent's bounds. <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> Push object to the top of its container, not changing its size. </td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td> Push object to the bottom of its container, not changing its size. </td></tr> <tr><td><code>left</code></td><td>0x03</td><td> Push object to the left of its container, not changing its size. </td></tr> <tr><td><code>right</code></td><td>0x05</td><td> Push object to the right of its container, not changing its size. </td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td> Place object in the vertical center of its container, not changing its size. </td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td> Grow the vertical size of the object if needed so it completely fills its container. </td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td> Place object in the horizontal center of its container, not changing its size. </td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td> Grow the horizontal size of the object if needed so it completely fills its container. </td></tr> <tr><td><code>center</code></td><td>0x11</td><td> Place the object in the center of its container in both the vertical and horizontal axis, not changing its size. </td></tr> <tr><td><code>fill</code></td><td>0x77</td><td> Grow the horizontal and vertical size of the object if needed so it completely fills its container. </td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td> Additional option that can be set to have the top and/or bottom edges of the child clipped to its container's bounds. The clip will be based on the vertical gravity: a top gravity will clip the bottom edge, a bottom gravity will clip the top edge, and neither will clip both edges. </td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td> Additional option that can be set to have the left and/or right edges of the child clipped to its container's bounds. The clip will be based on the horizontal gravity: a left gravity will clip the right edge, a right gravity will clip the left edge, and neither will clip both edges. </td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td> Push object to the beginning of its container, not changing its size. </td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td> Push object to the end of its container, not changing its size. </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; /** <p> @attr description The class name of a Behavior class defining special runtime behavior for this child view. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior = 1; /** <p> @attr description Specifies how this view dodges the inset edges of the CoordinatorLayout. <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> Don't dodge any edges </td></tr> <tr><td><code>top</code></td><td>0x30</td><td> Dodge the top inset edge. </td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td> Dodge the bottom inset edge. </td></tr> <tr><td><code>left</code></td><td>0x03</td><td> Dodge the left inset edge. </td></tr> <tr><td><code>right</code></td><td>0x05</td><td> Dodge the right inset edge. </td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td> Dodge the start inset edge. </td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td> Dodge the end inset edge. </td></tr> <tr><td><code>all</code></td><td>0x77</td><td> Dodge all the inset edges. </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; /** <p> @attr description Specifies how this view insets the CoordinatorLayout and make some other views dodge it. <p>Must be one of the following constant values.</p> <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> Don't inset. </td></tr> <tr><td><code>top</code></td><td>0x30</td><td> Inset the top edge. </td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td> Inset the bottom edge. </td></tr> <tr><td><code>left</code></td><td>0x03</td><td> Inset the left edge. </td></tr> <tr><td><code>right</code></td><td>0x05</td><td> Inset the right edge. </td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td> Inset the start edge. </td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td> Inset the end edge. </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; /** <p> @attr description The index of a keyline this view should position relative to. android:layout_gravity will affect how the view aligns to the specified keyline. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle com.companyname.perfectpitchpoc:bottomSheetStyle}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle */ public static final int[] DesignTheme = { 0x7f010112, 0x7f010113 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle = 1; /** 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.companyname.perfectpitchpoc:arrowHeadLength}</code></td><td> The length of the arrow head when formed to make an arrow </td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.companyname.perfectpitchpoc:arrowShaftLength}</code></td><td> The length of the shaft when formed to make an arrow </td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.companyname.perfectpitchpoc:barLength}</code></td><td> The length of the bars when they are parallel to each other </td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.companyname.perfectpitchpoc:color}</code></td><td> The drawing color for the bars </td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.companyname.perfectpitchpoc:drawableSize}</code></td><td> The total size of the drawable </td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.companyname.perfectpitchpoc:gapBetweenBars}</code></td><td> The max gap between the bars when they are parallel to each other </td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.companyname.perfectpitchpoc:spinBars}</code></td><td> Whether bars should rotate or not during transition </td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.companyname.perfectpitchpoc:thickness}</code></td><td> The thickness (stroke size) for the bar paint </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 = { 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce }; /** <p> @attr description The length of the arrow head when formed to make an arrow <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p> @attr description The length of the shaft when formed to make an arrow <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p> @attr description The length of the bars when they are parallel to each other <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p> @attr description The drawing color for the bars <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:color */ public static final int DrawerArrowToggle_color = 0; /** <p> @attr description The total size of the drawable <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p> @attr description The max gap between the bars when they are parallel to each other <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p> @attr description Whether bars should rotate or not during transition <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p> @attr description The thickness (stroke size) for the bar paint <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:backgroundTint}</code></td><td> Tint to apply to the background.</td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.companyname.perfectpitchpoc:backgroundTintMode}</code></td><td> Blending mode used to apply the background tint.</td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth com.companyname.perfectpitchpoc:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation com.companyname.perfectpitchpoc:elevation}</code></td><td> Elevation for the action bar itself </td></tr> <tr><td><code>{@link #FloatingActionButton_fabCustomSize com.companyname.perfectpitchpoc:fabCustomSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize com.companyname.perfectpitchpoc:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_hideMotionSpec com.companyname.perfectpitchpoc:hideMotionSpec}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_hoveredFocusedTranslationZ com.companyname.perfectpitchpoc:hoveredFocusedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_maxImageSize com.companyname.perfectpitchpoc:maxImageSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.companyname.perfectpitchpoc:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor com.companyname.perfectpitchpoc:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_showMotionSpec com.companyname.perfectpitchpoc:showMotionSpec}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding com.companyname.perfectpitchpoc:useCompatPadding}</code></td><td></td></tr> </table> @see #FloatingActionButton_backgroundTint @see #FloatingActionButton_backgroundTintMode @see #FloatingActionButton_borderWidth @see #FloatingActionButton_elevation @see #FloatingActionButton_fabCustomSize @see #FloatingActionButton_fabSize @see #FloatingActionButton_hideMotionSpec @see #FloatingActionButton_hoveredFocusedTranslationZ @see #FloatingActionButton_maxImageSize @see #FloatingActionButton_pressedTranslationZ @see #FloatingActionButton_rippleColor @see #FloatingActionButton_showMotionSpec @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton = { 0x7f010031, 0x7f01010e, 0x7f01010f, 0x7f010119, 0x7f01011d, 0x7f01011f, 0x7f010177, 0x7f010178, 0x7f010179, 0x7f01017a, 0x7f01017b, 0x7f01017c, 0x7f01017d }; /** <p> @attr description Tint to apply to the background. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:backgroundTint */ public static final int FloatingActionButton_backgroundTint = 1; /** <p> @attr description Blending mode used to apply the background tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode = 2; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:borderWidth */ public static final int FloatingActionButton_borderWidth = 10; /** <p> @attr description Elevation for the action bar itself <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:elevation */ public static final int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#fabCustomSize} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:fabCustomSize */ public static final int FloatingActionButton_fabCustomSize = 7; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:fabSize */ public static final int FloatingActionButton_fabSize = 6; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#hideMotionSpec} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:hideMotionSpec */ public static final int FloatingActionButton_hideMotionSpec = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#hoveredFocusedTranslationZ} 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.companyname.perfectpitchpoc:hoveredFocusedTranslationZ */ public static final int FloatingActionButton_hoveredFocusedTranslationZ = 8; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#maxImageSize} 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.companyname.perfectpitchpoc:maxImageSize */ public static final int FloatingActionButton_maxImageSize = 12; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ = 9; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:rippleColor */ public static final int FloatingActionButton_rippleColor = 4; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#showMotionSpec} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:showMotionSpec */ public static final int FloatingActionButton_showMotionSpec = 5; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding = 11; /** 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.companyname.perfectpitchpoc:behavior_autoHide}</code></td><td></td></tr> </table> @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f01017e }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; /** Attributes that can be used with a FlowLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FlowLayout_itemSpacing com.companyname.perfectpitchpoc:itemSpacing}</code></td><td></td></tr> <tr><td><code>{@link #FlowLayout_lineSpacing com.companyname.perfectpitchpoc:lineSpacing}</code></td><td></td></tr> </table> @see #FlowLayout_itemSpacing @see #FlowLayout_lineSpacing */ public static final int[] FlowLayout = { 0x7f01017f, 0x7f010180 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#itemSpacing} attribute's value can be found in the {@link #FlowLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:itemSpacing */ public static final int FlowLayout_itemSpacing = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#lineSpacing} attribute's value can be found in the {@link #FlowLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:lineSpacing */ public static final int FlowLayout_lineSpacing = 1; /** Attributes that can be used with a FontFamily. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FontFamily_fontProviderAuthority com.companyname.perfectpitchpoc:fontProviderAuthority}</code></td><td> The authority of the Font Provider to be used for the request.</td></tr> <tr><td><code>{@link #FontFamily_fontProviderCerts com.companyname.perfectpitchpoc:fontProviderCerts}</code></td><td> The sets of hashes for the certificates the provider should be signed with.</td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.companyname.perfectpitchpoc:fontProviderFetchStrategy}</code></td><td> The strategy to be used when fetching font data from a font provider in XML layouts.</td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.companyname.perfectpitchpoc:fontProviderFetchTimeout}</code></td><td> The length of the timeout during fetching.</td></tr> <tr><td><code>{@link #FontFamily_fontProviderPackage com.companyname.perfectpitchpoc:fontProviderPackage}</code></td><td> The package for the Font Provider to be used for the request.</td></tr> <tr><td><code>{@link #FontFamily_fontProviderQuery com.companyname.perfectpitchpoc:fontProviderQuery}</code></td><td> The query to be sent over to the provider.</td></tr> </table> @see #FontFamily_fontProviderAuthority @see #FontFamily_fontProviderCerts @see #FontFamily_fontProviderFetchStrategy @see #FontFamily_fontProviderFetchTimeout @see #FontFamily_fontProviderPackage @see #FontFamily_fontProviderQuery */ public static final int[] FontFamily = { 0x7f0101d2, 0x7f0101d3, 0x7f0101d4, 0x7f0101d5, 0x7f0101d6, 0x7f0101d7 }; /** <p> @attr description The authority of the Font Provider to be used for the request. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority = 0; /** <p> @attr description The sets of hashes for the certificates the provider should be signed with. This is used to verify the identity of the provider, and is only required if the provider is not part of the system image. This value may point to one list or a list of lists, where each individual list represents one collection of signature hashes. Refer to your font provider's documentation for these values. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontProviderCerts */ public static final int FontFamily_fontProviderCerts = 3; /** <p> @attr description The strategy to be used when fetching font data from a font provider in XML layouts. This attribute is ignored when the resource is loaded from code, as it is equivalent to the choice of API between {@link androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and {@link androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} (async). <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>blocking</code></td><td>0</td><td> The blocking font fetch works as follows. First, check the local cache, then if the requested font is not cached, request the font from the provider and wait until it is finished. You can change the length of the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the default typeface will be used instead. </td></tr> <tr><td><code>async</code></td><td>1</td><td> The async font fetch works as follows. First, check the local cache, then if the requeted font is not cached, trigger a request the font and continue with layout inflation. Once the font fetch succeeds, the target text view will be refreshed with the downloaded font data. The fontProviderFetchTimeout will be ignored if async loading is specified. </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy = 4; /** <p> @attr description The length of the timeout during fetching. <p>May be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>forever</code></td><td>-1</td><td> A special value for the timeout. In this case, the blocking font fetching will not timeout and wait until a reply is received from the font provider. </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout = 5; /** <p> @attr description The package for the Font Provider to be used for the request. This is used to verify the identity of the provider. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontProviderPackage */ public static final int FontFamily_fontProviderPackage = 1; /** <p> @attr description The query to be sent over to the provider. Refer to your font provider's documentation on the format of this string. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontProviderQuery */ public static final int FontFamily_fontProviderQuery = 2; /** Attributes that can be used with a FontFamilyFont. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td> References to the framework attrs </td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_font com.companyname.perfectpitchpoc:font}</code></td><td> The reference to the font file to be used.</td></tr> <tr><td><code>{@link #FontFamilyFont_fontStyle com.companyname.perfectpitchpoc:fontStyle}</code></td><td> The style of the given font file.</td></tr> <tr><td><code>{@link #FontFamilyFont_fontVariationSettings com.companyname.perfectpitchpoc:fontVariationSettings}</code></td><td> The variation settings to be applied to the font.</td></tr> <tr><td><code>{@link #FontFamilyFont_fontWeight com.companyname.perfectpitchpoc:fontWeight}</code></td><td> The weight of the given font file.</td></tr> <tr><td><code>{@link #FontFamilyFont_ttcIndex com.companyname.perfectpitchpoc:ttcIndex}</code></td><td> The index of the font in the tcc font file.</td></tr> </table> @see #FontFamilyFont_android_font @see #FontFamilyFont_android_fontStyle @see #FontFamilyFont_android_fontVariationSettings @see #FontFamilyFont_android_fontWeight @see #FontFamilyFont_android_ttcIndex @see #FontFamilyFont_font @see #FontFamilyFont_fontStyle @see #FontFamilyFont_fontVariationSettings @see #FontFamilyFont_fontWeight @see #FontFamilyFont_ttcIndex */ public static final int[] FontFamilyFont = { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f0101d8, 0x7f0101d9, 0x7f0101da, 0x7f0101db, 0x7f0101dc }; /** <p>This symbol is the offset where the {@link android.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:font */ public static final int FontFamilyFont_android_font = 0; /** <p> @attr description References to the framework attrs <p>This corresponds to the global attribute resource symbol {@link android.R.attr#fontStyle}. @attr name android:fontStyle */ public static final int FontFamilyFont_android_fontStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#fontVariationSettings} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontVariationSettings */ public static final int FontFamilyFont_android_fontVariationSettings = 4; /** <p>This symbol is the offset where the {@link android.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontWeight */ public static final int FontFamilyFont_android_fontWeight = 1; /** <p>This symbol is the offset where the {@link android.R.attr#ttcIndex} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:ttcIndex */ public static final int FontFamilyFont_android_ttcIndex = 3; /** <p> @attr description The reference to the font file to be used. This should be a file in the res/font folder and should therefore have an R reference value. E.g. @font/myfont <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:font */ public static final int FontFamilyFont_font = 6; /** <p> @attr description The style of the given font file. This will be used when the font is being loaded into the font stack and will override any style information in the font's header tables. If unspecified, the value in the font's header tables will be used. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>italic</code></td><td>1</td><td></td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontStyle */ public static final int FontFamilyFont_fontStyle = 5; /** <p> @attr description The variation settings to be applied to the font. The string should be in the following format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be used, or the font used does not support variation settings, this attribute needs not be specified. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontVariationSettings */ public static final int FontFamilyFont_fontVariationSettings = 8; /** <p> @attr description The weight of the given font file. This will be used when the font is being loaded into the font stack and will override any weight information in the font's header tables. Must be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most common values are 400 for regular weight and 700 for bold weight. If unspecified, the value in the font's header tables will be used. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontWeight */ public static final int FontFamilyFont_fontWeight = 7; /** <p> @attr description The index of the font in the tcc font file. If the font file referenced is not in the tcc format, this attribute needs not be specified. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:ttcIndex */ public static final int FontFamilyFont_ttcIndex = 9; /** 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.companyname.perfectpitchpoc: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, 0x7f010181 }; /** <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.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; /** Attributes that can be used with a GradientColor. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #GradientColor_android_centerColor android:centerColor}</code></td><td> Optional center color.</td></tr> <tr><td><code>{@link #GradientColor_android_centerX android:centerX}</code></td><td> Only applied to SweepGradient / RadialGradient X coordinate of the center of the gradient within the path.</td></tr> <tr><td><code>{@link #GradientColor_android_centerY android:centerY}</code></td><td> Y coordinate of the center of the gradient within the path.</td></tr> <tr><td><code>{@link #GradientColor_android_endColor android:endColor}</code></td><td> End color of the gradient.</td></tr> <tr><td><code>{@link #GradientColor_android_endX android:endX}</code></td><td> X coordinate of the end point origin of the gradient.</td></tr> <tr><td><code>{@link #GradientColor_android_endY android:endY}</code></td><td> Y coordinate of the end point of the gradient within the shape.</td></tr> <tr><td><code>{@link #GradientColor_android_gradientRadius android:gradientRadius}</code></td><td> Only applied to RadialGradient Radius of the gradient, used only with radial gradient.</td></tr> <tr><td><code>{@link #GradientColor_android_startColor android:startColor}</code></td><td> Start color of the gradient.</td></tr> <tr><td><code>{@link #GradientColor_android_startX android:startX}</code></td><td> LinearGradient specific X coordinate of the start point origin of the gradient.</td></tr> <tr><td><code>{@link #GradientColor_android_startY android:startY}</code></td><td> Y coordinate of the start point of the gradient within the shape.</td></tr> <tr><td><code>{@link #GradientColor_android_tileMode android:tileMode}</code></td><td> Defines the tile mode of the gradient.</td></tr> <tr><td><code>{@link #GradientColor_android_type android:type}</code></td><td> Type of gradient.</td></tr> </table> @see #GradientColor_android_centerColor @see #GradientColor_android_centerX @see #GradientColor_android_centerY @see #GradientColor_android_endColor @see #GradientColor_android_endX @see #GradientColor_android_endY @see #GradientColor_android_gradientRadius @see #GradientColor_android_startColor @see #GradientColor_android_startX @see #GradientColor_android_startY @see #GradientColor_android_tileMode @see #GradientColor_android_type */ public static final int[] GradientColor = { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; /** <p> @attr description Optional center color. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#centerColor}. @attr name android:centerColor */ public static final int GradientColor_android_centerColor = 7; /** <p> @attr description Only applied to SweepGradient / RadialGradient X coordinate of the center of the gradient within the path. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#centerX}. @attr name android:centerX */ public static final int GradientColor_android_centerX = 3; /** <p> @attr description Y coordinate of the center of the gradient within the path. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#centerY}. @attr name android:centerY */ public static final int GradientColor_android_centerY = 4; /** <p> @attr description End color of the gradient. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#endColor}. @attr name android:endColor */ public static final int GradientColor_android_endColor = 1; /** <p> @attr description X coordinate of the end point origin of the gradient. Defined in same coordinates as the path itself <p>This corresponds to the global attribute resource symbol {@link android.R.attr#endX}. @attr name android:endX */ public static final int GradientColor_android_endX = 10; /** <p> @attr description Y coordinate of the end point of the gradient within the shape. Defined in same coordinates as the path itself <p>This corresponds to the global attribute resource symbol {@link android.R.attr#endY}. @attr name android:endY */ public static final int GradientColor_android_endY = 11; /** <p> @attr description Only applied to RadialGradient Radius of the gradient, used only with radial gradient. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#gradientRadius}. @attr name android:gradientRadius */ public static final int GradientColor_android_gradientRadius = 5; /** <p> @attr description Start color of the gradient. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#startColor}. @attr name android:startColor */ public static final int GradientColor_android_startColor = 0; /** <p> @attr description LinearGradient specific X coordinate of the start point origin of the gradient. Defined in same coordinates as the path itself <p>This corresponds to the global attribute resource symbol {@link android.R.attr#startX}. @attr name android:startX */ public static final int GradientColor_android_startX = 8; /** <p> @attr description Y coordinate of the start point of the gradient within the shape. Defined in same coordinates as the path itself <p>This corresponds to the global attribute resource symbol {@link android.R.attr#startY}. @attr name android:startY */ public static final int GradientColor_android_startY = 9; /** <p> @attr description Defines the tile mode of the gradient. SweepGradient doesn't support tiling. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#tileMode}. @attr name android:tileMode */ public static final int GradientColor_android_tileMode = 6; /** <p> @attr description Type of gradient. The default type is linear. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#type}. @attr name android:type */ public static final int GradientColor_android_type = 2; /** Attributes that can be used with a GradientColorItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #GradientColorItem_android_color android:color}</code></td><td> The current color for the offset inside the gradient.</td></tr> <tr><td><code>{@link #GradientColorItem_android_offset android:offset}</code></td><td> The offset (or ratio) of this current color item inside the gradient.</td></tr> </table> @see #GradientColorItem_android_color @see #GradientColorItem_android_offset */ public static final int[] GradientColorItem = { 0x010101a5, 0x01010514 }; /** <p> @attr description The current color for the offset inside the gradient. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#color}. @attr name android:color */ public static final int GradientColorItem_android_color = 0; /** <p> @attr description The offset (or ratio) of this current color item inside the gradient. The value is only meaningful when it is between 0 and 1. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#offset}. @attr name android:offset */ public static final int GradientColorItem_android_offset = 1; /** 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> When set to false, prevents the layout from aligning its children's baselines.</td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td> When a linear layout is part of another layout that is baseline aligned, it can specify which of its children to baseline align to (that is, which child TextView).</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> Should the layout be a column or a row? Use "horizontal" for a row, "vertical" for a column.</td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td> Defines the maximum weight sum.</td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider com.companyname.perfectpitchpoc:divider}</code></td><td> Drawable to use as a vertical divider between buttons.</td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.companyname.perfectpitchpoc:dividerPadding}</code></td><td> Size of padding on either end of a divider.</td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.perfectpitchpoc:measureWithLargestChild}</code></td><td> When set to true, all children with a weight will be considered having the minimum size of the largest child.</td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.companyname.perfectpitchpoc:showDividers}</code></td><td> Setting for which dividers to show.</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, 0x7f010020, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1 }; /** <p> @attr description When set to false, prevents the layout from aligning its children's baselines. This attribute is particularly useful when the children use different values for gravity. The default value is true. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#baselineAligned}. @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned = 2; /** <p> @attr description When a linear layout is part of another layout that is baseline aligned, it can specify which of its children to baseline align to (that is, which child TextView). <p>This corresponds to the global attribute resource symbol {@link android.R.attr#baselineAlignedChildIndex}. @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> @attr description Should the layout be a column or a row? Use "horizontal" for a row, "vertical" for a column. The default is horizontal. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#orientation}. @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation = 1; /** <p> @attr description Defines the maximum weight sum. If unspecified, the sum is computed by adding the layout_weight of all of the children. This can be used for instance to give a single child 50% of the total available space by giving it a layout_weight of 0.5 and setting the weightSum to 1.0. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#weightSum}. @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum = 4; /** <p> @attr description Drawable to use as a vertical divider between buttons. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p> @attr description Size of padding on either end of a divider. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p> @attr description When set to true, all children with a weight will be considered having the minimum size of the largest child. If false, all children are measured normally. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p> @attr description Setting for which dividers to show. <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> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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> Amount of pixels by which the drop down should be offset horizontally.</td></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td> Amount of pixels by which the drop down should be offset vertically.</td></tr> </table> @see #ListPopupWindow_android_dropDownHorizontalOffset @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; /** <p> @attr description Amount of pixels by which the drop down should be offset horizontally. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownHorizontalOffset}. @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; /** <p> @attr description Amount of pixels by which the drop down should be offset vertically. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownVerticalOffset}. @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Attributes that can be used with a MaterialButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MaterialButton_android_insetBottom android:insetBottom}</code></td><td></td></tr> <tr><td><code>{@link #MaterialButton_android_insetLeft android:insetLeft}</code></td><td></td></tr> <tr><td><code>{@link #MaterialButton_android_insetRight android:insetRight}</code></td><td></td></tr> <tr><td><code>{@link #MaterialButton_android_insetTop android:insetTop}</code></td><td></td></tr> <tr><td><code>{@link #MaterialButton_backgroundTint com.companyname.perfectpitchpoc:backgroundTint}</code></td><td> Tint to apply to the background.</td></tr> <tr><td><code>{@link #MaterialButton_backgroundTintMode com.companyname.perfectpitchpoc:backgroundTintMode}</code></td><td> Blending mode used to apply the background tint.</td></tr> <tr><td><code>{@link #MaterialButton_cornerRadius com.companyname.perfectpitchpoc:cornerRadius}</code></td><td></td></tr> <tr><td><code>{@link #MaterialButton_icon com.companyname.perfectpitchpoc:icon}</code></td><td> Specifies the drawable used for the application icon.</td></tr> <tr><td><code>{@link #MaterialButton_iconGravity com.companyname.perfectpitchpoc:iconGravity}</code></td><td></td></tr> <tr><td><code>{@link #MaterialButton_iconPadding com.companyname.perfectpitchpoc:iconPadding}</code></td><td></td></tr> <tr><td><code>{@link #MaterialButton_iconSize com.companyname.perfectpitchpoc:iconSize}</code></td><td></td></tr> <tr><td><code>{@link #MaterialButton_iconTint com.companyname.perfectpitchpoc:iconTint}</code></td><td> Tint to apply to the icon.</td></tr> <tr><td><code>{@link #MaterialButton_iconTintMode com.companyname.perfectpitchpoc:iconTintMode}</code></td><td> Blending mode used to apply the icon tint.</td></tr> <tr><td><code>{@link #MaterialButton_rippleColor com.companyname.perfectpitchpoc:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #MaterialButton_strokeColor com.companyname.perfectpitchpoc:strokeColor}</code></td><td></td></tr> <tr><td><code>{@link #MaterialButton_strokeWidth com.companyname.perfectpitchpoc:strokeWidth}</code></td><td></td></tr> </table> @see #MaterialButton_android_insetBottom @see #MaterialButton_android_insetLeft @see #MaterialButton_android_insetRight @see #MaterialButton_android_insetTop @see #MaterialButton_backgroundTint @see #MaterialButton_backgroundTintMode @see #MaterialButton_cornerRadius @see #MaterialButton_icon @see #MaterialButton_iconGravity @see #MaterialButton_iconPadding @see #MaterialButton_iconSize @see #MaterialButton_iconTint @see #MaterialButton_iconTintMode @see #MaterialButton_rippleColor @see #MaterialButton_strokeColor @see #MaterialButton_strokeWidth */ public static final int[] MaterialButton = { 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f01001e, 0x7f0100da, 0x7f0100db, 0x7f01010e, 0x7f01010f, 0x7f01011d, 0x7f010120, 0x7f010121, 0x7f010182, 0x7f010183, 0x7f010184, 0x7f010185 }; /** <p>This symbol is the offset where the {@link android.R.attr#insetBottom} attribute's value can be found in the {@link #MaterialButton} array. @attr name android:insetBottom */ public static final int MaterialButton_android_insetBottom = 3; /** <p>This symbol is the offset where the {@link android.R.attr#insetLeft} attribute's value can be found in the {@link #MaterialButton} array. @attr name android:insetLeft */ public static final int MaterialButton_android_insetLeft = 0; /** <p>This symbol is the offset where the {@link android.R.attr#insetRight} attribute's value can be found in the {@link #MaterialButton} array. @attr name android:insetRight */ public static final int MaterialButton_android_insetRight = 1; /** <p>This symbol is the offset where the {@link android.R.attr#insetTop} attribute's value can be found in the {@link #MaterialButton} array. @attr name android:insetTop */ public static final int MaterialButton_android_insetTop = 2; /** <p> @attr description Tint to apply to the background. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:backgroundTint */ public static final int MaterialButton_backgroundTint = 7; /** <p> @attr description Blending mode used to apply the background tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:backgroundTintMode */ public static final int MaterialButton_backgroundTintMode = 8; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#cornerRadius} attribute's value can be found in the {@link #MaterialButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:cornerRadius */ public static final int MaterialButton_cornerRadius = 15; /** <p> @attr description Specifies the drawable used for the application icon. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:icon */ public static final int MaterialButton_icon = 4; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#iconGravity} attribute's value can be found in the {@link #MaterialButton} 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>start</code></td><td>0x1</td><td></td></tr> <tr><td><code>textStart</code></td><td>0x2</td><td></td></tr> </table> @attr name com.companyname.perfectpitchpoc:iconGravity */ public static final int MaterialButton_iconGravity = 14; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#iconPadding} attribute's value can be found in the {@link #MaterialButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:iconPadding */ public static final int MaterialButton_iconPadding = 13; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#iconSize} attribute's value can be found in the {@link #MaterialButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:iconSize */ public static final int MaterialButton_iconSize = 12; /** <p> @attr description Tint to apply to the icon. <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. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:iconTint */ public static final int MaterialButton_iconTint = 5; /** <p> @attr description Blending mode used to apply the icon tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the icon. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the icon. The icon’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the icon, but with the icon’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the icon with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:iconTintMode */ public static final int MaterialButton_iconTintMode = 6; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#rippleColor} attribute's value can be found in the {@link #MaterialButton} 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.companyname.perfectpitchpoc:rippleColor */ public static final int MaterialButton_rippleColor = 9; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#strokeColor} attribute's value can be found in the {@link #MaterialButton} 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.companyname.perfectpitchpoc:strokeColor */ public static final int MaterialButton_strokeColor = 10; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#strokeWidth} attribute's value can be found in the {@link #MaterialButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:strokeWidth */ public static final int MaterialButton_strokeWidth = 11; /** Attributes that can be used with a MaterialCardView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MaterialCardView_strokeColor com.companyname.perfectpitchpoc:strokeColor}</code></td><td></td></tr> <tr><td><code>{@link #MaterialCardView_strokeWidth com.companyname.perfectpitchpoc:strokeWidth}</code></td><td></td></tr> </table> @see #MaterialCardView_strokeColor @see #MaterialCardView_strokeWidth */ public static final int[] MaterialCardView = { 0x7f010120, 0x7f010121 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#strokeColor} attribute's value can be found in the {@link #MaterialCardView} 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.companyname.perfectpitchpoc:strokeColor */ public static final int MaterialCardView_strokeColor = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#strokeWidth} attribute's value can be found in the {@link #MaterialCardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:strokeWidth */ public static final int MaterialCardView_strokeWidth = 1; /** Attributes that can be used with a MaterialComponentsTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MaterialComponentsTheme_bottomSheetDialogTheme com.companyname.perfectpitchpoc:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_bottomSheetStyle com.companyname.perfectpitchpoc:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_chipGroupStyle com.companyname.perfectpitchpoc:chipGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_chipStandaloneStyle com.companyname.perfectpitchpoc:chipStandaloneStyle}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_chipStyle com.companyname.perfectpitchpoc:chipStyle}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_colorAccent com.companyname.perfectpitchpoc:colorAccent}</code></td><td> Bright complement to the primary branding color.</td></tr> <tr><td><code>{@link #MaterialComponentsTheme_colorBackgroundFloating com.companyname.perfectpitchpoc:colorBackgroundFloating}</code></td><td> Default color of background imagery for floating components, ex.</td></tr> <tr><td><code>{@link #MaterialComponentsTheme_colorPrimary com.companyname.perfectpitchpoc:colorPrimary}</code></td><td> The primary branding color for the app.</td></tr> <tr><td><code>{@link #MaterialComponentsTheme_colorPrimaryDark com.companyname.perfectpitchpoc:colorPrimaryDark}</code></td><td> Dark variant of the primary branding color.</td></tr> <tr><td><code>{@link #MaterialComponentsTheme_colorSecondary com.companyname.perfectpitchpoc:colorSecondary}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_editTextStyle com.companyname.perfectpitchpoc:editTextStyle}</code></td><td> Default EditText style.</td></tr> <tr><td><code>{@link #MaterialComponentsTheme_floatingActionButtonStyle com.companyname.perfectpitchpoc:floatingActionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_materialButtonStyle com.companyname.perfectpitchpoc:materialButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_materialCardViewStyle com.companyname.perfectpitchpoc:materialCardViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_navigationViewStyle com.companyname.perfectpitchpoc:navigationViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_scrimBackground com.companyname.perfectpitchpoc:scrimBackground}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_snackbarButtonStyle com.companyname.perfectpitchpoc:snackbarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_tabStyle com.companyname.perfectpitchpoc:tabStyle}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceBody1 com.companyname.perfectpitchpoc:textAppearanceBody1}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceBody2 com.companyname.perfectpitchpoc:textAppearanceBody2}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceButton com.companyname.perfectpitchpoc:textAppearanceButton}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceCaption com.companyname.perfectpitchpoc:textAppearanceCaption}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline1 com.companyname.perfectpitchpoc:textAppearanceHeadline1}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline2 com.companyname.perfectpitchpoc:textAppearanceHeadline2}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline3 com.companyname.perfectpitchpoc:textAppearanceHeadline3}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline4 com.companyname.perfectpitchpoc:textAppearanceHeadline4}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline5 com.companyname.perfectpitchpoc:textAppearanceHeadline5}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline6 com.companyname.perfectpitchpoc:textAppearanceHeadline6}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceOverline com.companyname.perfectpitchpoc:textAppearanceOverline}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceSubtitle1 com.companyname.perfectpitchpoc:textAppearanceSubtitle1}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceSubtitle2 com.companyname.perfectpitchpoc:textAppearanceSubtitle2}</code></td><td></td></tr> <tr><td><code>{@link #MaterialComponentsTheme_textInputStyle com.companyname.perfectpitchpoc:textInputStyle}</code></td><td></td></tr> </table> @see #MaterialComponentsTheme_bottomSheetDialogTheme @see #MaterialComponentsTheme_bottomSheetStyle @see #MaterialComponentsTheme_chipGroupStyle @see #MaterialComponentsTheme_chipStandaloneStyle @see #MaterialComponentsTheme_chipStyle @see #MaterialComponentsTheme_colorAccent @see #MaterialComponentsTheme_colorBackgroundFloating @see #MaterialComponentsTheme_colorPrimary @see #MaterialComponentsTheme_colorPrimaryDark @see #MaterialComponentsTheme_colorSecondary @see #MaterialComponentsTheme_editTextStyle @see #MaterialComponentsTheme_floatingActionButtonStyle @see #MaterialComponentsTheme_materialButtonStyle @see #MaterialComponentsTheme_materialCardViewStyle @see #MaterialComponentsTheme_navigationViewStyle @see #MaterialComponentsTheme_scrimBackground @see #MaterialComponentsTheme_snackbarButtonStyle @see #MaterialComponentsTheme_tabStyle @see #MaterialComponentsTheme_textAppearanceBody1 @see #MaterialComponentsTheme_textAppearanceBody2 @see #MaterialComponentsTheme_textAppearanceButton @see #MaterialComponentsTheme_textAppearanceCaption @see #MaterialComponentsTheme_textAppearanceHeadline1 @see #MaterialComponentsTheme_textAppearanceHeadline2 @see #MaterialComponentsTheme_textAppearanceHeadline3 @see #MaterialComponentsTheme_textAppearanceHeadline4 @see #MaterialComponentsTheme_textAppearanceHeadline5 @see #MaterialComponentsTheme_textAppearanceHeadline6 @see #MaterialComponentsTheme_textAppearanceOverline @see #MaterialComponentsTheme_textAppearanceSubtitle1 @see #MaterialComponentsTheme_textAppearanceSubtitle2 @see #MaterialComponentsTheme_textInputStyle */ public static final int[] MaterialComponentsTheme = { 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a9, 0x7f0100b7, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, 0x7f010118, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011e, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130, 0x7f010191 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#bottomSheetDialogTheme} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:bottomSheetDialogTheme */ public static final int MaterialComponentsTheme_bottomSheetDialogTheme = 5; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#bottomSheetStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:bottomSheetStyle */ public static final int MaterialComponentsTheme_bottomSheetStyle = 6; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipGroupStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:chipGroupStyle */ public static final int MaterialComponentsTheme_chipGroupStyle = 7; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipStandaloneStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:chipStandaloneStyle */ public static final int MaterialComponentsTheme_chipStandaloneStyle = 8; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#chipStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:chipStyle */ public static final int MaterialComponentsTheme_chipStyle = 9; /** <p> @attr description Bright complement to the primary branding color. By default, this is the color applied to framework controls (via colorControlActivated). <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorAccent */ public static final int MaterialComponentsTheme_colorAccent = 2; /** <p> @attr description Default color of background imagery for floating components, ex. dialogs, popups, and cards. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorBackgroundFloating */ public static final int MaterialComponentsTheme_colorBackgroundFloating = 3; /** <p> @attr description The primary branding color for the app. By default, this is the color applied to the action bar background. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorPrimary */ public static final int MaterialComponentsTheme_colorPrimary = 0; /** <p> @attr description Dark variant of the primary branding color. By default, this is the color applied to the status bar (via statusBarColor) and navigation bar (via navigationBarColor). <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:colorPrimaryDark */ public static final int MaterialComponentsTheme_colorPrimaryDark = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#colorSecondary} attribute's value can be found in the {@link #MaterialComponentsTheme} 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.companyname.perfectpitchpoc:colorSecondary */ public static final int MaterialComponentsTheme_colorSecondary = 10; /** <p> @attr description Default EditText style. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:editTextStyle */ public static final int MaterialComponentsTheme_editTextStyle = 4; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#floatingActionButtonStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>May be an integer value, such as "<code>100</code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</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>". <p>May be a floating point value, such as "<code>1.2</code>". <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. @attr name com.companyname.perfectpitchpoc:floatingActionButtonStyle */ public static final int MaterialComponentsTheme_floatingActionButtonStyle = 11; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#materialButtonStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:materialButtonStyle */ public static final int MaterialComponentsTheme_materialButtonStyle = 12; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#materialCardViewStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:materialCardViewStyle */ public static final int MaterialComponentsTheme_materialCardViewStyle = 13; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#navigationViewStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:navigationViewStyle */ public static final int MaterialComponentsTheme_navigationViewStyle = 14; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#scrimBackground} attribute's value can be found in the {@link #MaterialComponentsTheme} 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.companyname.perfectpitchpoc:scrimBackground */ public static final int MaterialComponentsTheme_scrimBackground = 15; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#snackbarButtonStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:snackbarButtonStyle */ public static final int MaterialComponentsTheme_snackbarButtonStyle = 31; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#tabStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:tabStyle */ public static final int MaterialComponentsTheme_tabStyle = 16; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceBody1} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceBody1 */ public static final int MaterialComponentsTheme_textAppearanceBody1 = 17; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceBody2} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceBody2 */ public static final int MaterialComponentsTheme_textAppearanceBody2 = 18; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceButton} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceButton */ public static final int MaterialComponentsTheme_textAppearanceButton = 19; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceCaption} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceCaption */ public static final int MaterialComponentsTheme_textAppearanceCaption = 20; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceHeadline1} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceHeadline1 */ public static final int MaterialComponentsTheme_textAppearanceHeadline1 = 21; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceHeadline2} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceHeadline2 */ public static final int MaterialComponentsTheme_textAppearanceHeadline2 = 22; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceHeadline3} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceHeadline3 */ public static final int MaterialComponentsTheme_textAppearanceHeadline3 = 23; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceHeadline4} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceHeadline4 */ public static final int MaterialComponentsTheme_textAppearanceHeadline4 = 24; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceHeadline5} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceHeadline5 */ public static final int MaterialComponentsTheme_textAppearanceHeadline5 = 25; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceHeadline6} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceHeadline6 */ public static final int MaterialComponentsTheme_textAppearanceHeadline6 = 26; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceOverline} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceOverline */ public static final int MaterialComponentsTheme_textAppearanceOverline = 27; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceSubtitle1} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceSubtitle1 */ public static final int MaterialComponentsTheme_textAppearanceSubtitle1 = 28; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textAppearanceSubtitle2} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textAppearanceSubtitle2 */ public static final int MaterialComponentsTheme_textAppearanceSubtitle2 = 29; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#textInputStyle} attribute's value can be found in the {@link #MaterialComponentsTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:textInputStyle */ public static final int MaterialComponentsTheme_textInputStyle = 30; /** 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> Whether the items are capable of displaying a check mark.</td></tr> <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td> Whether the items are enabled.</td></tr> <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td> The ID of the group.</td></tr> <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td> The category applied to all items within this group.</td></tr> <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to all items within this group.</td></tr> <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td> Whether the items are shown/visible.</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> @attr description Whether the items are capable of displaying a check mark. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#checkableBehavior}. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /** <p> @attr description Whether the items are enabled. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#enabled}. @attr name android:enabled */ public static final int MenuGroup_android_enabled = 0; /** <p> @attr description The ID of the group. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#id}. @attr name android:id */ public static final int MenuGroup_android_id = 1; /** <p> @attr description The category applied to all items within this group. (This will be or'ed with the orderInCategory attribute.) <p>This corresponds to the global attribute resource symbol {@link android.R.attr#menuCategory}. @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory = 3; /** <p> @attr description The order within the category applied to all items within this group. (This will be or'ed with the category attribute.) <p>This corresponds to the global attribute resource symbol {@link android.R.attr#orderInCategory}. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /** <p> @attr description Whether the items are shown/visible. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#visible}. @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.companyname.perfectpitchpoc:actionLayout}</code></td><td> An optional layout to be used as an action view.</td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.companyname.perfectpitchpoc:actionProviderClass}</code></td><td> The name of an optional ActionProvider class to instantiate an action view and perform operations such as default action for that menu item.</td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.companyname.perfectpitchpoc:actionViewClass}</code></td><td> The name of an optional View class to instantiate and use as an action view.</td></tr> <tr><td><code>{@link #MenuItem_alphabeticModifiers com.companyname.perfectpitchpoc:alphabeticModifiers}</code></td><td> The alphabetic modifier key.</td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td> The alphabetic shortcut key.</td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td> Whether the item is capable of displaying a check mark.</td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td> Whether the item is checked.</td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td> Whether the item is enabled.</td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td> The icon associated with this item.</td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td> The ID of the item.</td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td> The category applied to the item.</td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td> The numeric shortcut key.</td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td> Name of a method on the Context used to inflate the menu that will be called when the item is clicked.</td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td> The order within the category applied to the item.</td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td> The title associated with the item.</td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td> The condensed title associated with the item.</td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td> Whether the item is shown/visible.</td></tr> <tr><td><code>{@link #MenuItem_contentDescription com.companyname.perfectpitchpoc:contentDescription}</code></td><td> The content description associated with the item.</td></tr> <tr><td><code>{@link #MenuItem_iconTint com.companyname.perfectpitchpoc:iconTint}</code></td><td> Tint to apply to the icon.</td></tr> <tr><td><code>{@link #MenuItem_iconTintMode com.companyname.perfectpitchpoc:iconTintMode}</code></td><td> Blending mode used to apply the icon tint.</td></tr> <tr><td><code>{@link #MenuItem_numericModifiers com.companyname.perfectpitchpoc:numericModifiers}</code></td><td> The numeric modifier key.</td></tr> <tr><td><code>{@link #MenuItem_showAsAction com.companyname.perfectpitchpoc:showAsAction}</code></td><td> How this item should display in the Action Bar, if present.</td></tr> <tr><td><code>{@link #MenuItem_tooltipText com.companyname.perfectpitchpoc:tooltipText}</code></td><td> The tooltip text associated with the item.</td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_alphabeticModifiers @see #MenuItem_android_alphabeticShortcut @see #MenuItem_android_checkable @see #MenuItem_android_checked @see #MenuItem_android_enabled @see #MenuItem_android_icon @see #MenuItem_android_id @see #MenuItem_android_menuCategory @see #MenuItem_android_numericShortcut @see #MenuItem_android_onClick @see #MenuItem_android_orderInCategory @see #MenuItem_android_title @see #MenuItem_android_titleCondensed @see #MenuItem_android_visible @see #MenuItem_contentDescription @see #MenuItem_iconTint @see #MenuItem_iconTintMode @see #MenuItem_numericModifiers @see #MenuItem_showAsAction @see #MenuItem_tooltipText */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db }; /** <p> @attr description An optional layout to be used as an action view. See {@link android.view.MenuItem#setActionView(android.view.View)} for more info. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionLayout */ public static final int MenuItem_actionLayout = 16; /** <p> @attr description The name of an optional ActionProvider class to instantiate an action view and perform operations such as default action for that menu item. See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} for more info. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionProviderClass */ public static final int MenuItem_actionProviderClass = 18; /** <p> @attr description The name of an optional View class to instantiate and use as an action view. See {@link android.view.MenuItem#setActionView(android.view.View)} for more info. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:actionViewClass */ public static final int MenuItem_actionViewClass = 17; /** <p> @attr description The alphabetic modifier key. This is the modifier when using a keyboard with alphabetic keys. The values should be kept in sync with KeyEvent <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers = 13; /** <p> @attr description The alphabetic shortcut key. This is the shortcut when using a keyboard with alphabetic keys. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#alphabeticShortcut}. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /** <p> @attr description Whether the item is capable of displaying a check mark. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#checkable}. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /** <p> @attr description Whether the item is checked. Note that you must first have enabled checking with the checkable attribute or else the check mark will not appear. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#checked}. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /** <p> @attr description Whether the item is enabled. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#enabled}. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /** <p> @attr description The icon associated with this item. This icon will not always be shown, so the title should be sufficient in describing this item. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#icon}. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /** <p> @attr description The ID of the item. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#id}. @attr name android:id */ public static final int MenuItem_android_id = 2; /** <p> @attr description The category applied to the item. (This will be or'ed with the orderInCategory attribute.) <p>This corresponds to the global attribute resource symbol {@link android.R.attr#menuCategory}. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /** <p> @attr description The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) keyboard. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#numericShortcut}. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /** <p> @attr description Name of a method on the Context used to inflate the menu that will be called when the item is clicked. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#onClick}. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /** <p> @attr description The order within the category applied to the item. (This will be or'ed with the category attribute.) <p>This corresponds to the global attribute resource symbol {@link android.R.attr#orderInCategory}. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /** <p> @attr description The title associated with the item. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#title}. @attr name android:title */ public static final int MenuItem_android_title = 7; /** <p> @attr description The condensed title associated with the item. This is used in situations where the normal title may be too long to be displayed. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#titleCondensed}. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /** <p> @attr description Whether the item is shown/visible. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#visible}. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /** <p> @attr description The content description associated with the item. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentDescription */ public static final int MenuItem_contentDescription = 19; /** <p> @attr description Tint to apply to the icon. <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. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:iconTint */ public static final int MenuItem_iconTint = 21; /** <p> @attr description Blending mode used to apply the icon tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the icon. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the icon. The icon’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the icon, but with the icon’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the icon with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:iconTintMode */ public static final int MenuItem_iconTintMode = 22; /** <p> @attr description The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) keyboard. The values should be kept in sync with KeyEvent <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:numericModifiers */ public static final int MenuItem_numericModifiers = 14; /** <p> @attr description How this item should display in the Action Bar, if present. <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> Never show this item in an action bar, show it in the overflow menu instead. Mutually exclusive with "ifRoom" and "always". </td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td> Show this item in an action bar if there is room for it as determined by the system. Favor this option over "always" where possible. Mutually exclusive with "never" and "always". </td></tr> <tr><td><code>always</code></td><td>2</td><td> Always show this item in an actionbar, even if it would override the system's limits of how much stuff to put there. This may make your action bar look bad on some screens. In most cases you should use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". </td></tr> <tr><td><code>withText</code></td><td>4</td><td> When this item is shown as an action in the action bar, show a text label with it even if it has an icon representation. </td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td> This item's action view collapses to a normal menu item. When expanded, the action view takes over a larger segment of its container. </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:showAsAction */ public static final int MenuItem_showAsAction = 15; /** <p> @attr description The tooltip text associated with the item. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:tooltipText */ public static final int MenuItem_tooltipText = 20; /** Attributes that can be used with a MenuView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td> Default background for the menu header.</td></tr> <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td> Default horizontal divider between rows of menu items.</td></tr> <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td> Default background for each menu item.</td></tr> <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td> Default disabled icon alpha for each menu item that shows an icon.</td></tr> <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td> Default appearance of menu item text.</td></tr> <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td> Default vertical divider between menu items.</td></tr> <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td> Default animations for the menu.</td></tr> <tr><td><code>{@link #MenuView_preserveIconSpacing com.companyname.perfectpitchpoc:preserveIconSpacing}</code></td><td> Whether space should be reserved in layout when an icon is missing.</td></tr> <tr><td><code>{@link #MenuView_subMenuArrow com.companyname.perfectpitchpoc:subMenuArrow}</code></td><td> Drawable for the arrow icon indicating a particular item is a submenu.</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, 0x7f0100dc, 0x7f0100dd }; /** <p> @attr description Default background for the menu header. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#headerBackground}. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /** <p> @attr description Default horizontal divider between rows of menu items. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#horizontalDivider}. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /** <p> @attr description Default background for each menu item. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#itemBackground}. @attr name android:itemBackground */ public static final int MenuView_android_itemBackground = 5; /** <p> @attr description Default disabled icon alpha for each menu item that shows an icon. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#itemIconDisabledAlpha}. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /** <p> @attr description Default appearance of menu item text. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#itemTextAppearance}. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /** <p> @attr description Default vertical divider between menu items. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#verticalDivider}. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /** <p> @attr description Default animations for the menu. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#windowAnimationStyle}. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /** <p> @attr description Whether space should be reserved in layout when an icon is missing. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** <p> @attr description Drawable for the arrow icon indicating a particular item is a submenu. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:elevation}</code></td><td> Elevation for the action bar itself </td></tr> <tr><td><code>{@link #NavigationView_headerLayout com.companyname.perfectpitchpoc:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground com.companyname.perfectpitchpoc:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemHorizontalPadding com.companyname.perfectpitchpoc:itemHorizontalPadding}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconPadding com.companyname.perfectpitchpoc:itemIconPadding}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint com.companyname.perfectpitchpoc:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance com.companyname.perfectpitchpoc:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor com.companyname.perfectpitchpoc:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu com.companyname.perfectpitchpoc: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_itemHorizontalPadding @see #NavigationView_itemIconPadding @see #NavigationView_itemIconTint @see #NavigationView_itemTextAppearance @see #NavigationView_itemTextColor @see #NavigationView_menu */ public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010031, 0x7f010186, 0x7f010187, 0x7f010188, 0x7f010189, 0x7f01018a, 0x7f01018b, 0x7f01018c, 0x7f01018d }; /** <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> @attr description Elevation for the action bar itself <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:elevation */ public static final int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:headerLayout */ public static final int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:itemBackground */ public static final int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#itemHorizontalPadding} 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.companyname.perfectpitchpoc:itemHorizontalPadding */ public static final int NavigationView_itemHorizontalPadding = 10; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#itemIconPadding} 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.companyname.perfectpitchpoc:itemIconPadding */ public static final int NavigationView_itemIconPadding = 11; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:itemIconTint */ public static final int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:itemTextAppearance */ public static final int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:itemTextColor */ public static final int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:overlapAnchor}</code></td><td> Whether the popup window should overlap its anchor view.</td></tr> </table> @see #PopupWindow_android_popupAnimationStyle @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f0100de }; /** <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> @attr description Whether the popup window should overlap its anchor view. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:state_above_anchor}</code></td><td> State identifier indicating the popup will be above the anchor.</td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100df }; /** <p> @attr description State identifier indicating the popup will be above the anchor. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:paddingBottomNoButtons}</code></td><td> Bottom padding to use when no buttons are present.</td></tr> <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.companyname.perfectpitchpoc:paddingTopNoTitle}</code></td><td> Top padding to use when no title is present.</td></tr> </table> @see #RecycleListView_paddingBottomNoButtons @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView = { 0x7f0100e0, 0x7f0100e1 }; /** <p> @attr description Bottom padding to use when no buttons are present. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons = 0; /** <p> @attr description Top padding to use when no title is present. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:fastScrollEnabled}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.companyname.perfectpitchpoc:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.companyname.perfectpitchpoc:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.companyname.perfectpitchpoc:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.companyname.perfectpitchpoc:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager com.companyname.perfectpitchpoc:layoutManager}</code></td><td> Class name of the Layout Manager to be used.</td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout com.companyname.perfectpitchpoc:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount com.companyname.perfectpitchpoc:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd com.companyname.perfectpitchpoc:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_descendantFocusability @see #RecyclerView_android_orientation @see #RecyclerView_fastScrollEnabled @see #RecyclerView_fastScrollHorizontalThumbDrawable @see #RecyclerView_fastScrollHorizontalTrackDrawable @see #RecyclerView_fastScrollVerticalThumbDrawable @see #RecyclerView_fastScrollVerticalTrackDrawable @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 }; /** <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:descendantFocusability */ public static final int RecyclerView_android_descendantFocusability = 1; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:orientation */ public static final int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:fastScrollEnabled */ public static final int RecyclerView_fastScrollEnabled = 6; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:fastScrollHorizontalThumbDrawable */ public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:fastScrollHorizontalTrackDrawable */ public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:fastScrollVerticalThumbDrawable */ public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:fastScrollVerticalTrackDrawable */ public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; /** <p> @attr description Class name of the Layout Manager to be used. <p/> The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager and have either a default constructor or constructor with the signature (android.content.Context, android.util.AttributeSet, int, int). <p/> If the name starts with a '.', application package is prefixed. Else, if the name contains a '.', the classname is assumed to be a full class name. Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:layoutManager */ public static final int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:reverseLayout */ public static final int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:spanCount */ public static final int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f01018e }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout = { 0x7f01018f }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc: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> The IME options to set on the query text field.</td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td> The input type to set on the query text field.</td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td> An optional maximum width of the SearchView.</td></tr> <tr><td><code>{@link #SearchView_closeIcon com.companyname.perfectpitchpoc:closeIcon}</code></td><td> Close button icon </td></tr> <tr><td><code>{@link #SearchView_commitIcon com.companyname.perfectpitchpoc:commitIcon}</code></td><td> Commit icon shown in the query suggestion row </td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.companyname.perfectpitchpoc:defaultQueryHint}</code></td><td> Default query hint used when {@code queryHint} is undefined and the search view's {@code SearchableInfo} does not provide a hint.</td></tr> <tr><td><code>{@link #SearchView_goIcon com.companyname.perfectpitchpoc:goIcon}</code></td><td> Go button icon </td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.companyname.perfectpitchpoc:iconifiedByDefault}</code></td><td> The default state of the SearchView.</td></tr> <tr><td><code>{@link #SearchView_layout com.companyname.perfectpitchpoc:layout}</code></td><td> The layout to use for the search view.</td></tr> <tr><td><code>{@link #SearchView_queryBackground com.companyname.perfectpitchpoc:queryBackground}</code></td><td> Background for the section containing the search query </td></tr> <tr><td><code>{@link #SearchView_queryHint com.companyname.perfectpitchpoc:queryHint}</code></td><td> An optional user-defined query hint string to be displayed in the empty query field.</td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.companyname.perfectpitchpoc:searchHintIcon}</code></td><td> Search icon displayed as a text field hint </td></tr> <tr><td><code>{@link #SearchView_searchIcon com.companyname.perfectpitchpoc:searchIcon}</code></td><td> Search icon </td></tr> <tr><td><code>{@link #SearchView_submitBackground com.companyname.perfectpitchpoc:submitBackground}</code></td><td> Background for the section containing the action (e.</td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.companyname.perfectpitchpoc:suggestionRowLayout}</code></td><td> Layout for query suggestion rows </td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.companyname.perfectpitchpoc:voiceIcon}</code></td><td> Voice button icon </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, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee }; /** <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> @attr description The IME options to set on the query text field. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#imeOptions}. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 3; /** <p> @attr description The input type to set on the query text field. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#inputType}. @attr name android:inputType */ public static final int SearchView_android_inputType = 2; /** <p> @attr description An optional maximum width of the SearchView. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#maxWidth}. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 1; /** <p> @attr description Close button icon <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</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>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p> @attr description Commit icon shown in the query suggestion row <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p> @attr description Default query hint used when {@code queryHint} is undefined and the search view's {@code SearchableInfo} does not provide a hint. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p> @attr description Go button icon <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:goIcon */ public static final int SearchView_goIcon = 9; /** <p> @attr description The default state of the SearchView. If true, it will be iconified when not in use and expanded when clicked. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p> @attr description The layout to use for the search view. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:layout */ public static final int SearchView_layout = 4; /** <p> @attr description Background for the section containing the search query <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p> @attr description An optional user-defined query hint string to be displayed in the empty query field. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:queryHint */ public static final int SearchView_queryHint = 6; /** <p> @attr description Search icon displayed as a text field hint <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p> @attr description Search icon <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p> @attr description Background for the section containing the action (e.g. voice search) <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p> @attr description Layout for query suggestion rows <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p> @attr description Voice button icon <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a Snackbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Snackbar_snackbarButtonStyle com.companyname.perfectpitchpoc:snackbarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Snackbar_snackbarStyle com.companyname.perfectpitchpoc:snackbarStyle}</code></td><td></td></tr> </table> @see #Snackbar_snackbarButtonStyle @see #Snackbar_snackbarStyle */ public static final int[] Snackbar = { 0x7f010190, 0x7f010191 }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#snackbarButtonStyle} attribute's value can be found in the {@link #Snackbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:snackbarButtonStyle */ public static final int Snackbar_snackbarButtonStyle = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#snackbarStyle} attribute's value can be found in the {@link #Snackbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.perfectpitchpoc:snackbarStyle */ public static final int Snackbar_snackbarStyle = 0; /** 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.companyname.perfectpitchpoc:elevation}</code></td><td> Elevation for the action bar itself </td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.companyname.perfectpitchpoc:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f010031, 0x7f010192 }; /** <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> @attr description Elevation for the action bar itself <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:elevation */ public static final int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc: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> Width of the dropdown in spinnerMode="dropdown".</td></tr> <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td> Reference to an array resource that will populate the Spinner.</td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td> Background drawable to use for the dropdown in spinnerMode="dropdown".</td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td> The prompt to display when the spinner's dialog is shown.</td></tr> <tr><td><code>{@link #Spinner_popupTheme com.companyname.perfectpitchpoc:popupTheme}</code></td><td> Theme to use for the drop-down or dialog popup window.</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, 0x7f010032 }; /** <p> @attr description Width of the dropdown in spinnerMode="dropdown". <p>This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownWidth}. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 3; /** <p> @attr description Reference to an array resource that will populate the Spinner. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#entries}. @attr name android:entries */ public static final int Spinner_android_entries = 0; /** <p> @attr description Background drawable to use for the dropdown in spinnerMode="dropdown". <p>This corresponds to the global attribute resource symbol {@link android.R.attr#popupBackground}. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 1; /** <p> @attr description The prompt to display when the spinner's dialog is shown. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#prompt}. @attr name android:prompt */ public static final int Spinner_android_prompt = 2; /** <p> @attr description Theme to use for the drop-down or dialog popup window. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:popupTheme */ public static final int Spinner_popupTheme = 4; /** Indicates if the drawable needs to be mirrored when its layout direction is RTL (right-to-left). <attr name="autoMirrored"/> <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #StateListDrawable_android_constantSize android:constantSize}</code></td><td> If true, the drawable's reported internal size will remain constant as the state changes; the size is the maximum of all of the states.</td></tr> <tr><td><code>{@link #StateListDrawable_android_dither android:dither}</code></td><td> Enables or disables dithering of the bitmap if the bitmap does not have the same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with an RGB 565 screen).</td></tr> <tr><td><code>{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}</code></td><td> Amount of time (in milliseconds) to fade in a new state drawable.</td></tr> <tr><td><code>{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}</code></td><td> Amount of time (in milliseconds) to fade out an old state drawable.</td></tr> <tr><td><code>{@link #StateListDrawable_android_variablePadding android:variablePadding}</code></td><td> If true, allows the drawable's padding to change based on the current state that is selected.</td></tr> <tr><td><code>{@link #StateListDrawable_android_visible android:visible}</code></td><td> Indicates whether the drawable should be initially visible.</td></tr> </table> @see #StateListDrawable_android_constantSize @see #StateListDrawable_android_dither @see #StateListDrawable_android_enterFadeDuration @see #StateListDrawable_android_exitFadeDuration @see #StateListDrawable_android_variablePadding @see #StateListDrawable_android_visible */ public static final int[] StateListDrawable = { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** <p> @attr description If true, the drawable's reported internal size will remain constant as the state changes; the size is the maximum of all of the states. If false, the size will vary based on the current state. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#constantSize}. @attr name android:constantSize */ public static final int StateListDrawable_android_constantSize = 3; /** <p> @attr description Enables or disables dithering of the bitmap if the bitmap does not have the same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with an RGB 565 screen). <p>This corresponds to the global attribute resource symbol {@link android.R.attr#dither}. @attr name android:dither */ public static final int StateListDrawable_android_dither = 0; /** <p> @attr description Amount of time (in milliseconds) to fade in a new state drawable. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#enterFadeDuration}. @attr name android:enterFadeDuration */ public static final int StateListDrawable_android_enterFadeDuration = 4; /** <p> @attr description Amount of time (in milliseconds) to fade out an old state drawable. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#exitFadeDuration}. @attr name android:exitFadeDuration */ public static final int StateListDrawable_android_exitFadeDuration = 5; /** <p> @attr description If true, allows the drawable's padding to change based on the current state that is selected. If false, the padding will stay the same (based on the maximum padding of all the states). Enabling this feature requires that the owner of the drawable deal with performing layout when the state changes, which is often not supported. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#variablePadding}. @attr name android:variablePadding */ public static final int StateListDrawable_android_variablePadding = 2; /** <p> @attr description Indicates whether the drawable should be initially visible. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#visible}. @attr name android:visible */ public static final int StateListDrawable_android_visible = 1; /** Attributes that can be used with a StateListDrawableItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #StateListDrawableItem_android_drawable android:drawable}</code></td><td> Reference to a drawable resource to use for the state.</td></tr> </table> @see #StateListDrawableItem_android_drawable */ public static final int[] StateListDrawableItem = { 0x01010199 }; /** <p> @attr description Reference to a drawable resource to use for the state. If not given, the drawable must be defined by the first child tag. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#drawable}. @attr name android:drawable */ public static final int StateListDrawableItem_android_drawable = 0; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td> Text to use when the switch is in the unchecked/"off" state.</td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td> Text to use when the switch is in the checked/"on" state.</td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td> Drawable to use as the "thumb" that switches back and forth.</td></tr> <tr><td><code>{@link #SwitchCompat_showText com.companyname.perfectpitchpoc:showText}</code></td><td> Whether to draw on/off text.</td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.companyname.perfectpitchpoc:splitTrack}</code></td><td> Whether to split the track and leave a gap for the thumb drawable.</td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.companyname.perfectpitchpoc:switchMinWidth}</code></td><td> Minimum width for the switch component </td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.companyname.perfectpitchpoc:switchPadding}</code></td><td> Minimum space between the switch and caption text </td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.companyname.perfectpitchpoc:switchTextAppearance}</code></td><td> TextAppearance style for text displayed on the switch thumb.</td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.companyname.perfectpitchpoc:thumbTextPadding}</code></td><td> Amount of padding on either side of text within the switch thumb.</td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint com.companyname.perfectpitchpoc:thumbTint}</code></td><td> Tint to apply to the thumb drawable.</td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode com.companyname.perfectpitchpoc:thumbTintMode}</code></td><td> Blending mode used to apply the thumb tint.</td></tr> <tr><td><code>{@link #SwitchCompat_track com.companyname.perfectpitchpoc:track}</code></td><td> Drawable to use as the "track" that the switch thumb slides within.</td></tr> <tr><td><code>{@link #SwitchCompat_trackTint com.companyname.perfectpitchpoc:trackTint}</code></td><td> Tint to apply to the track.</td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode com.companyname.perfectpitchpoc:trackTintMode}</code></td><td> Blending mode used to apply the track tint.</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, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9 }; /** <p> @attr description Text to use when the switch is in the unchecked/"off" state. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#textOff}. @attr name android:textOff */ public static final int SwitchCompat_android_textOff = 1; /** <p> @attr description Text to use when the switch is in the checked/"on" state. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#textOn}. @attr name android:textOn */ public static final int SwitchCompat_android_textOn = 0; /** <p> @attr description Drawable to use as the "thumb" that switches back and forth. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#thumb}. @attr name android:thumb */ public static final int SwitchCompat_android_thumb = 2; /** <p> @attr description Whether to draw on/off text. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:showText */ public static final int SwitchCompat_showText = 13; /** <p> @attr description Whether to split the track and leave a gap for the thumb drawable. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:splitTrack */ public static final int SwitchCompat_splitTrack = 12; /** <p> @attr description Minimum width for the switch component <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 10; /** <p> @attr description Minimum space between the switch and caption text <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:switchPadding */ public static final int SwitchCompat_switchPadding = 11; /** <p> @attr description TextAppearance style for text displayed on the switch thumb. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 9; /** <p> @attr description Amount of padding on either side of text within the switch thumb. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 8; /** <p> @attr description Tint to apply to the thumb drawable. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:thumbTint */ public static final int SwitchCompat_thumbTint = 3; /** <p> @attr description Blending mode used to apply the thumb tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and drawable color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:thumbTintMode */ public static final int SwitchCompat_thumbTintMode = 4; /** <p> @attr description Drawable to use as the "track" that the switch thumb slides within. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:track */ public static final int SwitchCompat_track = 5; /** <p> @attr description Tint to apply to the track. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:trackTint */ public static final int SwitchCompat_trackTint = 6; /** <p> @attr description Blending mode used to apply the track tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and drawable color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart com.companyname.perfectpitchpoc:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity com.companyname.perfectpitchpoc:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIconTint com.companyname.perfectpitchpoc:tabIconTint}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIconTintMode com.companyname.perfectpitchpoc:tabIconTintMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicator com.companyname.perfectpitchpoc:tabIndicator}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorAnimationDuration com.companyname.perfectpitchpoc:tabIndicatorAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor com.companyname.perfectpitchpoc:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorFullWidth com.companyname.perfectpitchpoc:tabIndicatorFullWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorGravity com.companyname.perfectpitchpoc:tabIndicatorGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.companyname.perfectpitchpoc:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabInlineLabel com.companyname.perfectpitchpoc:tabInlineLabel}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth com.companyname.perfectpitchpoc:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth com.companyname.perfectpitchpoc:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode com.companyname.perfectpitchpoc:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding com.companyname.perfectpitchpoc:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom com.companyname.perfectpitchpoc:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd com.companyname.perfectpitchpoc:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart com.companyname.perfectpitchpoc:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop com.companyname.perfectpitchpoc:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabRippleColor com.companyname.perfectpitchpoc:tabRippleColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.companyname.perfectpitchpoc:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance com.companyname.perfectpitchpoc:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor com.companyname.perfectpitchpoc:tabTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabUnboundedRipple com.companyname.perfectpitchpoc:tabUnboundedRipple}</code></td><td></td></tr> </table> @see #TabLayout_tabBackground @see #TabLayout_tabContentStart @see #TabLayout_tabGravity @see #TabLayout_tabIconTint @see #TabLayout_tabIconTintMode @see #TabLayout_tabIndicator @see #TabLayout_tabIndicatorAnimationDuration @see #TabLayout_tabIndicatorColor @see #TabLayout_tabIndicatorFullWidth @see #TabLayout_tabIndicatorGravity @see #TabLayout_tabIndicatorHeight @see #TabLayout_tabInlineLabel @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_tabRippleColor @see #TabLayout_tabSelectedTextColor @see #TabLayout_tabTextAppearance @see #TabLayout_tabTextColor @see #TabLayout_tabUnboundedRipple */ public static final int[] TabLayout = { 0x7f010193, 0x7f010194, 0x7f010195, 0x7f010196, 0x7f010197, 0x7f010198, 0x7f010199, 0x7f01019a, 0x7f01019b, 0x7f01019c, 0x7f01019d, 0x7f01019e, 0x7f01019f, 0x7f0101a0, 0x7f0101a1, 0x7f0101a2, 0x7f0101a3, 0x7f0101a4, 0x7f0101a5, 0x7f0101a6, 0x7f0101a7, 0x7f0101a8, 0x7f0101a9, 0x7f0101aa, 0x7f0101ab }; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabBackground */ public static final int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabContentStart */ public static final int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabGravity */ public static final int TabLayout_tabGravity = 9; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#tabIconTint} 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.companyname.perfectpitchpoc:tabIconTint */ public static final int TabLayout_tabIconTint = 21; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#tabIconTintMode} 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>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.companyname.perfectpitchpoc:tabIconTintMode */ public static final int TabLayout_tabIconTintMode = 22; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#tabIndicator} 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.companyname.perfectpitchpoc:tabIndicator */ public static final int TabLayout_tabIndicator = 4; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#tabIndicatorAnimationDuration} attribute's value can be found in the {@link #TabLayout} 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.companyname.perfectpitchpoc:tabIndicatorAnimationDuration */ public static final int TabLayout_tabIndicatorAnimationDuration = 6; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#tabIndicatorFullWidth} attribute's value can be found in the {@link #TabLayout} 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.companyname.perfectpitchpoc:tabIndicatorFullWidth */ public static final int TabLayout_tabIndicatorFullWidth = 7; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#tabIndicatorGravity} 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>bottom</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> <tr><td><code>top</code></td><td>2</td><td></td></tr> <tr><td><code>stretch</code></td><td>3</td><td></td></tr> </table> @attr name com.companyname.perfectpitchpoc:tabIndicatorGravity */ public static final int TabLayout_tabIndicatorGravity = 5; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#tabInlineLabel} attribute's value can be found in the {@link #TabLayout} 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.companyname.perfectpitchpoc:tabInlineLabel */ public static final int TabLayout_tabInlineLabel = 10; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabMaxWidth */ public static final int TabLayout_tabMaxWidth = 12; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabMinWidth */ public static final int TabLayout_tabMinWidth = 11; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabMode */ public static final int TabLayout_tabMode = 8; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabPadding */ public static final int TabLayout_tabPadding = 20; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom = 19; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd = 18; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabPaddingStart */ public static final int TabLayout_tabPaddingStart = 16; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabPaddingTop */ public static final int TabLayout_tabPaddingTop = 17; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#tabRippleColor} 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.companyname.perfectpitchpoc:tabRippleColor */ public static final int TabLayout_tabRippleColor = 23; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor = 15; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabTextAppearance */ public static final int TabLayout_tabTextAppearance = 13; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:tabTextColor */ public static final int TabLayout_tabTextColor = 14; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#tabUnboundedRipple} attribute's value can be found in the {@link #TabLayout} 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.companyname.perfectpitchpoc:tabUnboundedRipple */ public static final int TabLayout_tabUnboundedRipple = 24; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_fontFamily com.companyname.perfectpitchpoc:fontFamily}</code></td><td> The attribute for the font family.</td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps com.companyname.perfectpitchpoc:textAllCaps}</code></td><td> Present the text in ALL CAPS.</td></tr> </table> @see #TextAppearance_android_fontFamily @see #TextAppearance_android_shadowColor @see #TextAppearance_android_shadowDx @see #TextAppearance_android_shadowDy @see #TextAppearance_android_shadowRadius @see #TextAppearance_android_textColor @see #TextAppearance_android_textColorHint @see #TextAppearance_android_textColorLink @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_fontFamily @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f010043, 0x7f010049 }; /** <p>This symbol is the offset where the {@link android.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:fontFamily */ public static final int TextAppearance_android_fontFamily = 10; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor = 6; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx = 7; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy = 8; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius = 9; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorHint */ public static final int TextAppearance_android_textColorHint = 4; /** <p>This symbol is the offset where the {@link android.R.attr#textColorLink} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorLink */ public static final int TextAppearance_android_textColorLink = 5; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /** <p> @attr description The attribute for the font family. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:fontFamily */ public static final int TextAppearance_fontFamily = 12; /** <p> @attr description Present the text in ALL CAPS. This may use a small-caps form when available. <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>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:textAllCaps */ public static final int TextAppearance_textAllCaps = 11; /** Attributes that can be used with a TextInputLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_boxBackgroundColor com.companyname.perfectpitchpoc:boxBackgroundColor}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_boxBackgroundMode com.companyname.perfectpitchpoc:boxBackgroundMode}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_boxCollapsedPaddingTop com.companyname.perfectpitchpoc:boxCollapsedPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_boxCornerRadiusBottomEnd com.companyname.perfectpitchpoc:boxCornerRadiusBottomEnd}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_boxCornerRadiusBottomStart com.companyname.perfectpitchpoc:boxCornerRadiusBottomStart}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_boxCornerRadiusTopEnd com.companyname.perfectpitchpoc:boxCornerRadiusTopEnd}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_boxCornerRadiusTopStart com.companyname.perfectpitchpoc:boxCornerRadiusTopStart}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_boxStrokeColor com.companyname.perfectpitchpoc:boxStrokeColor}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_boxStrokeWidth com.companyname.perfectpitchpoc:boxStrokeWidth}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterEnabled com.companyname.perfectpitchpoc:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength com.companyname.perfectpitchpoc:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.perfectpitchpoc:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.companyname.perfectpitchpoc:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled com.companyname.perfectpitchpoc:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.companyname.perfectpitchpoc:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_helperText com.companyname.perfectpitchpoc:helperText}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_helperTextEnabled com.companyname.perfectpitchpoc:helperTextEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_helperTextTextAppearance com.companyname.perfectpitchpoc:helperTextTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.companyname.perfectpitchpoc:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled com.companyname.perfectpitchpoc:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.companyname.perfectpitchpoc:hintTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.companyname.perfectpitchpoc:passwordToggleContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.companyname.perfectpitchpoc:passwordToggleDrawable}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.companyname.perfectpitchpoc:passwordToggleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTint com.companyname.perfectpitchpoc:passwordToggleTint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.companyname.perfectpitchpoc:passwordToggleTintMode}</code></td><td></td></tr> </table> @see #TextInputLayout_android_hint @see #TextInputLayout_android_textColorHint @see #TextInputLayout_boxBackgroundColor @see #TextInputLayout_boxBackgroundMode @see #TextInputLayout_boxCollapsedPaddingTop @see #TextInputLayout_boxCornerRadiusBottomEnd @see #TextInputLayout_boxCornerRadiusBottomStart @see #TextInputLayout_boxCornerRadiusTopEnd @see #TextInputLayout_boxCornerRadiusTopStart @see #TextInputLayout_boxStrokeColor @see #TextInputLayout_boxStrokeWidth @see #TextInputLayout_counterEnabled @see #TextInputLayout_counterMaxLength @see #TextInputLayout_counterOverflowTextAppearance @see #TextInputLayout_counterTextAppearance @see #TextInputLayout_errorEnabled @see #TextInputLayout_errorTextAppearance @see #TextInputLayout_helperText @see #TextInputLayout_helperTextEnabled @see #TextInputLayout_helperTextTextAppearance @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, 0x7f0101ac, 0x7f0101ad, 0x7f0101ae, 0x7f0101af, 0x7f0101b0, 0x7f0101b1, 0x7f0101b2, 0x7f0101b3, 0x7f0101b4, 0x7f0101b5, 0x7f0101b6, 0x7f0101b7, 0x7f0101b8, 0x7f0101b9, 0x7f0101ba, 0x7f0101bb, 0x7f0101bc, 0x7f0101bd, 0x7f0101be, 0x7f0101bf, 0x7f0101c0, 0x7f0101c1, 0x7f0101c2, 0x7f0101c3, 0x7f0101c4, 0x7f0101c5 }; /** <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.companyname.perfectpitchpoc.R.attr#boxBackgroundColor} 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.companyname.perfectpitchpoc:boxBackgroundColor */ public static final int TextInputLayout_boxBackgroundColor = 26; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#boxBackgroundMode} 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>none</code></td><td>0</td><td></td></tr> <tr><td><code>filled</code></td><td>1</td><td></td></tr> <tr><td><code>outline</code></td><td>2</td><td></td></tr> </table> @attr name com.companyname.perfectpitchpoc:boxBackgroundMode */ public static final int TextInputLayout_boxBackgroundMode = 19; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#boxCollapsedPaddingTop} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:boxCollapsedPaddingTop */ public static final int TextInputLayout_boxCollapsedPaddingTop = 20; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#boxCornerRadiusBottomEnd} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:boxCornerRadiusBottomEnd */ public static final int TextInputLayout_boxCornerRadiusBottomEnd = 24; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#boxCornerRadiusBottomStart} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:boxCornerRadiusBottomStart */ public static final int TextInputLayout_boxCornerRadiusBottomStart = 23; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#boxCornerRadiusTopEnd} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:boxCornerRadiusTopEnd */ public static final int TextInputLayout_boxCornerRadiusTopEnd = 22; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#boxCornerRadiusTopStart} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:boxCornerRadiusTopStart */ public static final int TextInputLayout_boxCornerRadiusTopStart = 21; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#boxStrokeColor} 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.companyname.perfectpitchpoc:boxStrokeColor */ public static final int TextInputLayout_boxStrokeColor = 25; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#boxStrokeWidth} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.perfectpitchpoc:boxStrokeWidth */ public static final int TextInputLayout_boxStrokeWidth = 27; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:counterEnabled */ public static final int TextInputLayout_counterEnabled = 10; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:counterMaxLength */ public static final int TextInputLayout_counterMaxLength = 11; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance = 13; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance = 12; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:errorEnabled */ public static final int TextInputLayout_errorEnabled = 8; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#helperText} 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.companyname.perfectpitchpoc:helperText */ public static final int TextInputLayout_helperText = 5; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#helperTextEnabled} 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.companyname.perfectpitchpoc:helperTextEnabled */ public static final int TextInputLayout_helperTextEnabled = 6; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#helperTextTextAppearance} 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.companyname.perfectpitchpoc:helperTextTextAppearance */ public static final int TextInputLayout_helperTextTextAppearance = 7; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:hintEnabled */ public static final int TextInputLayout_hintEnabled = 2; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance = 4; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription = 16; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable = 15; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled = 14; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint = 17; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:passwordToggleTintMode */ public static final int TextInputLayout_passwordToggleTintMode = 18; /** Attributes that can be used with a ThemeEnforcement. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ThemeEnforcement_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #ThemeEnforcement_enforceMaterialTheme com.companyname.perfectpitchpoc:enforceMaterialTheme}</code></td><td></td></tr> <tr><td><code>{@link #ThemeEnforcement_enforceTextAppearance com.companyname.perfectpitchpoc:enforceTextAppearance}</code></td><td></td></tr> </table> @see #ThemeEnforcement_android_textAppearance @see #ThemeEnforcement_enforceMaterialTheme @see #ThemeEnforcement_enforceTextAppearance */ public static final int[] ThemeEnforcement = { 0x01010034, 0x7f0101c6, 0x7f0101c7 }; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #ThemeEnforcement} array. @attr name android:textAppearance */ public static final int ThemeEnforcement_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#enforceMaterialTheme} attribute's value can be found in the {@link #ThemeEnforcement} 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.companyname.perfectpitchpoc:enforceMaterialTheme */ public static final int ThemeEnforcement_enforceMaterialTheme = 1; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.R.attr#enforceTextAppearance} attribute's value can be found in the {@link #ThemeEnforcement} 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.companyname.perfectpitchpoc:enforceTextAppearance */ public static final int ThemeEnforcement_enforceTextAppearance = 2; /** 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.companyname.perfectpitchpoc:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription com.companyname.perfectpitchpoc:collapseContentDescription}</code></td><td> Text to set as the content description for the collapse button.</td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.companyname.perfectpitchpoc:collapseIcon}</code></td><td> Icon drawable to use for the collapse button.</td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.companyname.perfectpitchpoc:contentInsetEnd}</code></td><td> Minimum inset for content views within a bar.</td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.companyname.perfectpitchpoc:contentInsetEndWithActions}</code></td><td> Minimum inset for content views within a bar when actions from a menu are present.</td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.companyname.perfectpitchpoc:contentInsetLeft}</code></td><td> Minimum inset for content views within a bar.</td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.companyname.perfectpitchpoc:contentInsetRight}</code></td><td> Minimum inset for content views within a bar.</td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.companyname.perfectpitchpoc:contentInsetStart}</code></td><td> Minimum inset for content views within a bar.</td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.companyname.perfectpitchpoc:contentInsetStartWithNavigation}</code></td><td> Minimum inset for content views within a bar when a navigation button is present, such as the Up button.</td></tr> <tr><td><code>{@link #Toolbar_logo com.companyname.perfectpitchpoc:logo}</code></td><td> Drawable to set as the logo that appears at the starting side of the Toolbar, just after the navigation button.</td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.companyname.perfectpitchpoc:logoDescription}</code></td><td> A content description string to describe the appearance of the associated logo image.</td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.companyname.perfectpitchpoc:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.companyname.perfectpitchpoc:navigationContentDescription}</code></td><td> Text to set as the content description for the navigation button located at the start of the toolbar.</td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.companyname.perfectpitchpoc:navigationIcon}</code></td><td> Icon drawable to use for the navigation button located at the start of the toolbar.</td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.companyname.perfectpitchpoc:popupTheme}</code></td><td> Reference to a theme that should be used to inflate popups shown by widgets in the toolbar.</td></tr> <tr><td><code>{@link #Toolbar_subtitle com.companyname.perfectpitchpoc:subtitle}</code></td><td> Specifies subtitle text used for navigationMode="normal" </td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.companyname.perfectpitchpoc:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.companyname.perfectpitchpoc:subtitleTextColor}</code></td><td> A color to apply to the subtitle string.</td></tr> <tr><td><code>{@link #Toolbar_title com.companyname.perfectpitchpoc:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin com.companyname.perfectpitchpoc:titleMargin}</code></td><td> Specifies extra space on the left, start, right and end sides of the toolbar's title.</td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.companyname.perfectpitchpoc:titleMarginBottom}</code></td><td> Specifies extra space on the bottom side of the toolbar's title.</td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.companyname.perfectpitchpoc:titleMarginEnd}</code></td><td> Specifies extra space on the end side of the toolbar's title.</td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.companyname.perfectpitchpoc:titleMarginStart}</code></td><td> Specifies extra space on the start side of the toolbar's title.</td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.companyname.perfectpitchpoc:titleMarginTop}</code></td><td> Specifies extra space on the top side of the toolbar's title.</td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.companyname.perfectpitchpoc:titleMargins}</code></td><td> {@deprecated Use titleMargin} </td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.companyname.perfectpitchpoc:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.companyname.perfectpitchpoc:titleTextColor}</code></td><td> A color to apply to the title string.</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, 0x7f010018, 0x7f01001b, 0x7f01001f, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010032, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a }; /** <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.companyname.perfectpitchpoc.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> Push object to the top of its container, not changing its size. </td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td> Push object to the bottom of its container, not changing its size. </td></tr> </table> @attr name com.companyname.perfectpitchpoc:buttonGravity */ public static final int Toolbar_buttonGravity = 21; /** <p> @attr description Text to set as the content description for the collapse button. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 23; /** <p> @attr description Icon drawable to use for the collapse button. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:collapseIcon */ public static final int Toolbar_collapseIcon = 22; /** <p> @attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p> @attr description Minimum inset for content views within a bar when actions from a menu are present. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions = 10; /** <p> @attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p> @attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p> @attr description Minimum inset for content views within a bar. Navigation buttons and menu views are excepted. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p> @attr description Minimum inset for content views within a bar when a navigation button is present, such as the Up button. Only valid for some themes and configurations. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation = 9; /** <p> @attr description Drawable to set as the logo that appears at the starting side of the Toolbar, just after the navigation button. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:logo */ public static final int Toolbar_logo = 4; /** <p> @attr description A content description string to describe the appearance of the associated logo image. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:logoDescription */ public static final int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 20; /** <p> @attr description Text to set as the content description for the navigation button located at the start of the toolbar. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 25; /** <p> @attr description Icon drawable to use for the navigation button located at the start of the toolbar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:navigationIcon */ public static final int Toolbar_navigationIcon = 24; /** <p> @attr description Reference to a theme that should be used to inflate popups shown by widgets in the toolbar. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:popupTheme */ public static final int Toolbar_popupTheme = 11; /** <p> @attr description Specifies subtitle text used for navigationMode="normal" <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 13; /** <p> @attr description A color to apply to the subtitle string. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:title */ public static final int Toolbar_title = 2; /** <p> @attr description Specifies extra space on the left, start, right and end sides of the toolbar's title. Margin values should be positive. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:titleMargin */ public static final int Toolbar_titleMargin = 14; /** <p> @attr description Specifies extra space on the bottom side of the toolbar's title. If both this attribute and titleMargin are specified, then this attribute takes precedence. Margin values should be positive. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 18; /** <p> @attr description Specifies extra space on the end side of the toolbar's title. If both this attribute and titleMargin are specified, then this attribute takes precedence. Margin values should be positive. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 16; /** <p> @attr description Specifies extra space on the start side of the toolbar's title. If both this attribute and titleMargin are specified, then this attribute takes precedence. Margin values should be positive. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:titleMarginStart */ public static final int Toolbar_titleMarginStart = 15; /** <p> @attr description Specifies extra space on the top side of the toolbar's title. If both this attribute and titleMargin are specified, then this attribute takes precedence. Margin values should be positive. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:titleMarginTop */ public static final int Toolbar_titleMarginTop = 17; /** <p> @attr description {@deprecated Use titleMargin} <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:titleMargins */ @Deprecated public static final int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link com.companyname.perfectpitchpoc.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.companyname.perfectpitchpoc:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 12; /** <p> @attr description A color to apply to the title string. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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> Boolean that controls whether a view can take focus.</td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td> Specifies a theme override for a view.</td></tr> <tr><td><code>{@link #View_paddingEnd com.companyname.perfectpitchpoc:paddingEnd}</code></td><td> Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr> <tr><td><code>{@link #View_paddingStart com.companyname.perfectpitchpoc:paddingStart}</code></td><td> Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr> <tr><td><code>{@link #View_theme com.companyname.perfectpitchpoc:theme}</code></td><td> Deprecated.</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, 0x7f01010b, 0x7f01010c, 0x7f01010d }; /** <p> @attr description Boolean that controls whether a view can take focus. By default the user can not move focus to a view; by setting this attribute to true the view is allowed to take focus. This value does not impact the behavior of directly calling {@link android.view.View#requestFocus}, which will always request focus regardless of this view. It only impacts where focus navigation will try to move focus. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#focusable}. @attr name android:focusable */ public static final int View_android_focusable = 1; /** <p> @attr description Specifies a theme override for a view. When a theme override is set, the view will be inflated using a {@link android.content.Context} themed with the specified resource. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#theme}. @attr name android:theme */ public static final int View_android_theme = 0; /** <p> @attr description Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:paddingEnd */ public static final int View_paddingEnd = 3; /** <p> @attr description Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:paddingStart */ public static final int View_paddingStart = 2; /** <p> @attr description Deprecated. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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.companyname.perfectpitchpoc:backgroundTint}</code></td><td> Tint to apply to the background.</td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.perfectpitchpoc:backgroundTintMode}</code></td><td> Blending mode used to apply the background tint.</td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f01010e, 0x7f01010f }; /** <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> @attr description Tint to apply to the background. <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. <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p> @attr description Blending mode used to apply the background tint. <p>Must be one of the following constant values.</p> <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> The tint is drawn on top of the drawable. [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc] </td></tr> <tr><td><code>src_in</code></td><td>5</td><td> The tint is masked by the alpha channel of the drawable. The drawable’s color channels are thrown out. [Sa * Da, Sc * Da] </td></tr> <tr><td><code>src_atop</code></td><td>9</td><td> The tint is drawn above the drawable, but with the drawable’s alpha channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc] </td></tr> <tr><td><code>multiply</code></td><td>14</td><td> Multiplies the color and alpha channels of the drawable with those of the tint. [Sa * Da, Sc * Dc] </td></tr> <tr><td><code>screen</code></td><td>15</td><td> [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc] </td></tr> <tr><td><code>add</code></td><td>16</td><td> Combines the tint and icon color and alpha channels, clamping the result to valid color values. Saturate(S + D) </td></tr> </table> <p>This is a private symbol. @attr name com.companyname.perfectpitchpoc: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> Overrides the id of the inflated View with this value.</td></tr> <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td> Supply an identifier for the layout resource to inflate when the ViewStub becomes visible or when forced to do so.</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> @attr description Overrides the id of the inflated View with this value. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#inflatedId}. @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId = 2; /** <p> @attr description Supply an identifier for the layout resource to inflate when the ViewStub becomes visible or when forced to do so. The layout resource must be a valid reference to a layout. <p>This corresponds to the global attribute resource symbol {@link android.R.attr#layout}. @attr name android:layout */ public static final int ViewStubCompat_android_layout = 1; }; }
[ "pchriste@microsoft.com" ]
pchriste@microsoft.com
24915a455700895b3c06a2276106b5be0ebc52ec
2c105bcfdc8f07dfe954a9b3690f21874f0ad459
/cos.trader.configs/src/main/java/es/ual/acg/cos/trader/configs/clients/HeuristicsClient.java
f11df1ea1affd1d53f2837750eb932b56e11160f
[ "MIT" ]
permissive
acgtic211/costrader
78f83d5b60f67c01352b7e479fe44f9105f00681
a93a93d84eb120d239f389788ce0c96a87472ac9
refs/heads/master
2022-12-26T04:49:55.255324
2022-01-28T08:20:02
2022-01-28T08:20:02
195,386,671
0
0
MIT
2022-12-13T19:31:46
2019-07-05T10:01:22
Java
UTF-8
Java
false
false
1,611
java
package es.ual.acg.cos.trader.configs.clients; import java.util.List; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; import architectural_metamodel.AbstractArchitecturalModel; @FeignClient("COS-TRADER-HEURISTICS") public interface HeuristicsClient { @PostMapping("/ratioFFactor") public void setRatioFFactor(@RequestParam double ratioFunctionalFactor); @PostMapping("/ratioEFFactor") public void setRatioEFFactor(@RequestParam double ratioExtraFuncionalFactor); @PostMapping("/ratioPFactor") public void setRatioPFactor(@RequestParam double ratioPackagingFactor); @PostMapping("/ratioMFactor") public void setRatioMFactor(@RequestParam double ratioMarketingFactor); @GetMapping("/ratioFFactor") public double getRatioFFactor(); @GetMapping("/ratioEFFactor") public double getRatioEFFactor(); @GetMapping("/ratioPFactor") public double getRatioPFactor(); @GetMapping("/ratioMFactor") public double getRatioMFactor(); @PostMapping("/solveCAMv5") public String solveCAMv5(@RequestParam AbstractArchitecturalModel aam); @PostMapping("/solveCAMv5simulation") public void solveCAMv5simulation(@RequestParam AbstractArchitecturalModel aam); @PostMapping("/solveCAMv6") public List<String> solveCAMv6(@RequestParam String aamID); @PostMapping("/solveCAMv6simulation") public void solveCAMv6simulation(@RequestParam String aamID, @RequestParam int gIncrement); }
[ "javi.criado@ual.es" ]
javi.criado@ual.es
6bbffabccb5cb0f02024a90d972d193d32313b41
0a5c61c61003ac29f551eabaf35bd7b73badc080
/app/src/main/java/com/example/kiheitai/firstapp/Adaptador.java
2119b6992bb5b11be876d64c9ac11015af5849df
[]
no_license
Gaedr/firstapp
23290dc7da959bdfb3458dc8160933ff838d3d9b
3718fffffd5c69c0c4c350975a2a2fb06e3e5c3d
refs/heads/master
2021-01-22T03:53:59.787723
2015-03-17T10:17:23
2015-03-17T10:17:23
32,313,207
0
0
null
null
null
null
UTF-8
Java
false
false
2,672
java
package com.example.kiheitai.firstapp; import android.app.Activity; import android.content.Context; import android.graphics.drawable.Drawable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.BaseAdapter; import android.widget.ImageView; import android.widget.TextView; import java.util.ArrayList; import java.util.HashMap; import de.hdodenhof.circleimageview.CircleImageView; /** * Created by kiheitai on 15/03/13. */ public class Adaptador extends ArrayAdapter<Cat> { private LayoutInflater inflador; TextView titulo, subtitulo; ImageView icono; ArrayList<Cat> catList; Context ctx; public Adaptador(Context contexto, int resource, ArrayList<Cat> cats){ super(contexto, resource, cats); //inflador = (LayoutInflater) contexto.getSystemService(Context.LAYOUT_INFLATER_SERVICE); catList = cats; ctx = contexto; } @Override public int getCount() { return catList.size(); } @Override public Cat getItem(int position) { return catList.get(position); } @Override public long getItemId(int position) { return position; } @Override public View getView(int position, View convertView, ViewGroup parent) { ViewHolder holder; Cat cat = catList.get(position); if (convertView == null){ inflador = ((Activity)ctx).getLayoutInflater(); convertView = inflador.inflate(R.layout.list_element, null); holder = new ViewHolder(); holder.image = (ImageView) convertView.findViewById(R.id.icono); holder.titulo = (TextView) convertView.findViewById(R.id.titulo); holder.subtitulo = (TextView) convertView.findViewById(R.id.subtitulo); convertView.setTag(holder); }else{ holder = (ViewHolder) convertView.getTag(); } if(cat != null){ holder.titulo.setText(cat.getTitulo()); holder.subtitulo.setText(cat.getSubtitulo()); //holder.image.setImageResource(cat.getIdImage()); if(!Cache.map.containsKey(cat.getIdImage())){ Cache.map.put(cat.getIdImage(), ctx.getResources().getDrawable(cat.getIdImage())); } holder.image.setImageDrawable(Cache.map.get(cat.getIdImage())); } return convertView; } class ViewHolder{ TextView titulo; TextView subtitulo; ImageView image; } static class Cache{ static HashMap<Integer,Drawable> map = new HashMap<>(); } }
[ "samuel@kiheitai.co.jp" ]
samuel@kiheitai.co.jp
9aa849c700193a37e3d37d3cec2082a74f15676c
c804585e3c05c2e858da1b96fb0c14ec5e2bf9d2
/Tic Tac Toe/Player.java
f98c1ca789b7af43c4210a3060c958bc57c0b3ef
[]
no_license
yuhuawang/GamesmanWeb
38e974ac7e86c82d1252e54fafee9f8cb1afc6bb
c6fbd6a2f6668c10a02e92c39d44db07a18090b9
refs/heads/master
2021-01-16T18:02:03.173932
2013-05-22T22:28:57
2013-05-22T22:28:57
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,368
java
public class Player { public final int EMPTY = 0; public final int BLACK = 1; public final int WHITE = 2; private int color; private Board board; private int opponent; public Player(color, board) { this.color = color; this.board = board; this.opponent = BLACK; if (color == BLACK) { this.opponent = WHITE; } } public int[] chooseMove(int alpha, int beta, int depth, boolean ally) { int[] out = new int[3], moves[] = board.possibleMoves(); int best = 0; for (int i = 0; i < moves.length; i++) { int x = moves[i][0], y = moves[i][1]; board.add(x,y,color); if (depth > 1) { Player foe = new Player(opponent, board) int[] reply = foe.chooseMove(alpha, beta, depth - 1, !ally); } else { reply[0] = x; reply[1] = y; reply[2] = evaluateBoard(color); } board.remove(x,y); if (ally && reply[2] > alpha) { out = reply; alpha = reply[2]; } else if (!ally && reply[2] < beta) { out = reply; beta = reply[2]; } if (alpha >= beta) { return out; } } return out; } public void makeMove() { int[] move = chooseMove(Integer.MIN_VALUE, Integer.MAX_VALUE, 3, true); int x = move[0], y = move[1]; board.add(x,y); System.out.println("Machine player makes move:(") System.out.print(x); System.out.print(", "); System.out.print(y); System.out.println(")."); } }
[ "w.yuhua@yahoo.com" ]
w.yuhua@yahoo.com
1e91aead1403527cac62ae17d45a52552542c23d
bb31759abd1631013e10f7fedcff0642df6c9977
/goshop_sale_service/src/main/java/jgsu/clong/bean/T_MALL_CLASS_1.java
874a47eb077b162c9ada3deb156022ea8b197c80
[]
no_license
ChenLonggithub/GoShop
58e3c9ae0c76eed021895b553b9beffec56aefbf
9e50ba6d40c0c699f9ec2e031837474f3a71ac3b
refs/heads/master
2022-12-22T21:31:16.613120
2019-09-06T00:28:23
2019-09-06T00:28:23
183,344,388
2
0
null
2022-12-16T03:06:21
2019-04-25T02:50:43
CSS
UTF-8
Java
false
false
363
java
package jgsu.clong.bean; import java.io.Serializable; public class T_MALL_CLASS_1 implements Serializable { private int id; private String flmch1; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getFlmch1() { return flmch1; } public void setFlmch1(String flmch1) { this.flmch1 = flmch1; } }
[ "clong_fish@163.com" ]
clong_fish@163.com
d8c997f0733b1596290ec6ef26fef9eb596b6570
ee2488a48dcfe1f5e6cfe0122aef28ac74ae45f7
/DS_Algo/src/graph/JohnsonAlgoAllPairs.java
6587e31f025cf074e8eed34a16500efa2514ccd0
[]
no_license
dbkamal/DS-And-Algo-4Interview
27dddab31cd8221257e3c17739c3d2b8d8b7af7d
d9253340b5826661a4f023e42850f65e3facbeb1
refs/heads/master
2020-04-09T17:14:42.441877
2019-03-31T04:52:13
2019-03-31T04:52:13
160,475,112
0
0
null
null
null
null
UTF-8
Java
false
false
1,657
java
package graph; public class JohnsonAlgoAllPairs { GraphAdv<Integer> graph; BellmanFordAlgo bellmanFordAlgo; DijkstraAlgo dijkstraAlgo; int[] weightVertex; JohnsonAlgoAllPairs (GraphAdv<Integer> graph) { this.graph = graph; weightVertex = new int[graph.getAllVertex().size()]; } void calculateShortestPath(int id) { int[] temp = new int[graph.getAllVertex().size()]; int i = 0; //create a new vertex and add it's edges for (Vertex<Integer> vv : graph.getAllVertex()) { temp[i] = (int) vv.id; i++; } for (int j = 0; j < temp.length; j++) { graph.addEdge(id, temp[j], 0); } //run bellman-ford algorithm bellmanFordAlgo = new BellmanFordAlgo(graph); boolean flag = bellmanFordAlgo.shortestPath(id); if (!flag) { System.out.println("negative weight edge cycle"); } else { i = 0; //remove newly added Vertex and it's edges Vertex<Integer> v = graph.allVertex.get((long) id); graph.removeVertexAndEdges(v); //collect all vertex weight for (Vertex<Integer> vv1: graph.getAllVertex()) { weightVertex[i] = vv1.getData(); i++; } //re-weight all edges for (Edge<Integer> e : graph.allEdges) { if (e.getVertex1().id == id) continue; int newWeight = e.getWeight() + e.getVertex1().getData() - e.getVertex2().getData(); e.setWeight(newWeight); } //run dijkstra algo to compute all pair shortest path dijkstraAlgo = new DijkstraAlgo(graph); for (Vertex<Integer> vv2 : graph.getAllVertex()) { System.out.println("** Shortest Path for vertex : " + vv2.id + " ***"); dijkstraAlgo.calculateShortestPath((int) vv2.id); } } } }
[ "kamal@192.168.0.2" ]
kamal@192.168.0.2
2a4e81a7594b045d9d7cb7f1f25d8087e816ea89
fa1408365e2e3f372aa61e7d1e5ea5afcd652199
/src/testcases/CWE400_Resource_Exhaustion/s02/CWE400_Resource_Exhaustion__sleep_listen_tcp_72a.java
680dd6b146160c51a3862fe71a66fc6d79a55ff7
[]
no_license
bqcuong/Juliet-Test-Case
31e9c89c27bf54a07b7ba547eddd029287b2e191
e770f1c3969be76fdba5d7760e036f9ba060957d
refs/heads/master
2020-07-17T14:51:49.610703
2019-09-03T16:22:58
2019-09-03T16:22:58
206,039,578
1
2
null
null
null
null
UTF-8
Java
false
false
9,296
java
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE400_Resource_Exhaustion__sleep_listen_tcp_72a.java Label Definition File: CWE400_Resource_Exhaustion__sleep.label.xml Template File: sources-sinks-72a.tmpl.java */ /* * @description * CWE: 400 Resource Exhaustion * BadSource: listen_tcp Read count using a listening tcp connection * GoodSource: A hardcoded non-zero, non-min, non-max, even number * Sinks: * GoodSink: Validate count before using it as a parameter in sleep function * BadSink : Use count as the parameter for sleep withhout checking it's size first * Flow Variant: 72 Data flow: data passed in a Vector from one method to another in different source files in the same package * * */ package testcases.CWE400_Resource_Exhaustion.s02; import testcasesupport.*; import java.util.Vector; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; import java.net.Socket; import java.net.ServerSocket; import java.util.logging.Level; public class CWE400_Resource_Exhaustion__sleep_listen_tcp_72a extends AbstractTestCase { public void bad() throws Throwable { int count; count = Integer.MIN_VALUE; /* Initialize count */ { ServerSocket listener = null; Socket socket = null; BufferedReader readerBuffered = null; InputStreamReader readerInputStream = null; /* Read data using a listening tcp connection */ try { listener = new ServerSocket(39543); socket = listener.accept(); /* read input from socket */ readerInputStream = new InputStreamReader(socket.getInputStream(), "UTF-8"); readerBuffered = new BufferedReader(readerInputStream); /* POTENTIAL FLAW: Read count using a listening tcp connection */ String stringNumber = readerBuffered.readLine(); if (stringNumber != null) // avoid NPD incidental warnings { try { count = Integer.parseInt(stringNumber.trim()); } catch(NumberFormatException exceptNumberFormat) { IO.logger.log(Level.WARNING, "Number format exception parsing count from string", exceptNumberFormat); } } } catch (IOException exceptIO) { IO.logger.log(Level.WARNING, "Error with stream reading", exceptIO); } finally { /* Close stream reading objects */ try { if (readerBuffered != null) { readerBuffered.close(); } } catch (IOException exceptIO) { IO.logger.log(Level.WARNING, "Error closing BufferedReader", exceptIO); } try { if (readerInputStream != null) { readerInputStream.close(); } } catch (IOException exceptIO) { IO.logger.log(Level.WARNING, "Error closing InputStreamReader", exceptIO); } /* Close socket objects */ try { if (socket != null) { socket.close(); } } catch (IOException exceptIO) { IO.logger.log(Level.WARNING, "Error closing Socket", exceptIO); } try { if (listener != null) { listener.close(); } } catch (IOException exceptIO) { IO.logger.log(Level.WARNING, "Error closing ServerSocket", exceptIO); } } } Vector<Integer> countVector = new Vector<Integer>(5); countVector.add(0, count); countVector.add(1, count); countVector.add(2, count); (new CWE400_Resource_Exhaustion__sleep_listen_tcp_72b()).badSink(countVector ); } public void good() throws Throwable { goodG2B(); goodB2G(); } /* goodG2B() - use GoodSource and BadSink */ private void goodG2B() throws Throwable { int count; /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */ count = 2; Vector<Integer> countVector = new Vector<Integer>(5); countVector.add(0, count); countVector.add(1, count); countVector.add(2, count); (new CWE400_Resource_Exhaustion__sleep_listen_tcp_72b()).goodG2BSink(countVector ); } /* goodB2G() - use BadSource and GoodSink */ private void goodB2G() throws Throwable { int count; count = Integer.MIN_VALUE; /* Initialize count */ { ServerSocket listener = null; Socket socket = null; BufferedReader readerBuffered = null; InputStreamReader readerInputStream = null; /* Read data using a listening tcp connection */ try { listener = new ServerSocket(39543); socket = listener.accept(); /* read input from socket */ readerInputStream = new InputStreamReader(socket.getInputStream(), "UTF-8"); readerBuffered = new BufferedReader(readerInputStream); /* POTENTIAL FLAW: Read count using a listening tcp connection */ String stringNumber = readerBuffered.readLine(); if (stringNumber != null) // avoid NPD incidental warnings { try { count = Integer.parseInt(stringNumber.trim()); } catch(NumberFormatException exceptNumberFormat) { IO.logger.log(Level.WARNING, "Number format exception parsing count from string", exceptNumberFormat); } } } catch (IOException exceptIO) { IO.logger.log(Level.WARNING, "Error with stream reading", exceptIO); } finally { /* Close stream reading objects */ try { if (readerBuffered != null) { readerBuffered.close(); } } catch (IOException exceptIO) { IO.logger.log(Level.WARNING, "Error closing BufferedReader", exceptIO); } try { if (readerInputStream != null) { readerInputStream.close(); } } catch (IOException exceptIO) { IO.logger.log(Level.WARNING, "Error closing InputStreamReader", exceptIO); } /* Close socket objects */ try { if (socket != null) { socket.close(); } } catch (IOException exceptIO) { IO.logger.log(Level.WARNING, "Error closing Socket", exceptIO); } try { if (listener != null) { listener.close(); } } catch (IOException exceptIO) { IO.logger.log(Level.WARNING, "Error closing ServerSocket", exceptIO); } } } Vector<Integer> countVector = new Vector<Integer>(5); countVector.add(0, count); countVector.add(1, count); countVector.add(2, count); (new CWE400_Resource_Exhaustion__sleep_listen_tcp_72b()).goodB2GSink(countVector ); } /* Below is the main(). It is only used when building this testcase on * its own for testing or for building a binary to use in testing binary * analysis tools. It is not used when compiling all the testcases as one * application, which is how source code analysis tools are tested. */ public static void main(String[] args) throws ClassNotFoundException, InstantiationException, IllegalAccessException { mainFromParent(args); } }
[ "bqcuong2212@gmail.com" ]
bqcuong2212@gmail.com
ba69e383471372d1353a3c04589e887fd41ad9df
f32cc724f3530ef4b796963f8aaabd4fb66d076f
/backend/src/main/java/com/bakdata/conquery/models/execution/UserMetrics.java
e4cf580bea18da0fbbdbf0df66617c7e94352ada
[ "MIT" ]
permissive
hardforkio/secret-conquery
224e7ed71f080cc4b1a7e8136680d35d16bf3a54
f4c6dd028d5d082a240697ef6c63eaecd370c423
refs/heads/deliverable
2022-11-25T17:38:50.841671
2020-07-31T09:02:05
2020-07-31T09:02:05
279,545,825
0
0
MIT
2020-09-16T16:05:50
2020-07-14T09:48:10
Java
UTF-8
Java
false
false
77
java
package com.bakdata.conquery.models.execution; public class UserMetrics { }
[ "1553491+awildturtok@users.noreply.github.com" ]
1553491+awildturtok@users.noreply.github.com
d6ffd35b09082689af0c841c8640a753c2eb6b0f
d084819c0cf2e55078750488106e62128cc2ce16
/task5/BookShop/src/com/senla/bookshop/manager/BookManager.java
e9b6ff206a131d1f5478f285684b55bab0176fef
[]
no_license
Polina97/SenlaJavaTraningKurbatovaPolina
4619dd18034c7814c7a0d4b56cbd985eeac4c975
b10effd863defe47455f91d2c6b8d0e0e577dc2e
refs/heads/master
2021-01-12T16:26:52.077257
2017-05-08T12:39:18
2017-05-08T12:39:18
69,275,037
1
0
null
2016-09-28T14:47:18
2016-09-26T17:33:35
null
UTF-8
Java
false
false
3,724
java
package com.senla.bookshop.manager; import java.util.ArrayList; import java.util.GregorianCalendar; import java.util.List; import org.apache.log4j.Logger; import com.senla.bookshop.api.entities.IBook; import com.senla.bookshop.api.managers.IBookManager; import com.senla.bookshop.comparators.BookComparator; import com.senla.bookshop.comparators.TypeBookComparator; import com.senla.bookshop.entity.BaseEntity; import com.senla.bookshop.main.Shop; public class BookManager implements IBookManager { private List<IBook> books; private final GregorianCalendar TODAY = new GregorianCalendar(); private static Logger log = Logger.getLogger(BookManager.class.getName()); public BookManager() { books = Shop.fileWorker.readBooks(); } public BookManager(List<IBook> books) { this(); books.addAll(books); } @Override public List<IBook> getBooks() { return books; } @Override public Boolean add(BaseEntity book) throws Exception { try { Boolean answ = books.add((IBook) book); Shop.fileWorker.writeBooks(this.books); return answ; } catch (ClassCastException | NullPointerException | IllegalArgumentException e) { log.error(e); throw new Exception(ADD_EXCEPTION); } } @Override public Boolean delete(BaseEntity entity) throws Exception { try { Boolean answ = books.remove(entity); Shop.fileWorker.writeBooks(books); return answ; } catch (ClassCastException | NullPointerException e) { log.error(e); throw new Exception(DELETE_EXCEPTION); } } @Override public IBook getById(Integer id) { return books.get(id); } @Override public List<IBook> getOldBooks() { List<IBook> oldBooks = new ArrayList<IBook>(); for (IBook b : books) { if (b.isOld(TODAY)) { oldBooks.add(b); } } return oldBooks; } @Override public List<IBook> getStockBooks() { List<IBook> stockBooks = new ArrayList<IBook>(); try { for (IBook b : books) { if (b.isInStock()) { stockBooks.add(b); } } } catch (NullPointerException e) { log.error(e); } return stockBooks; } @Override public List<IBook> getApplicationBooks() { List<IBook> applicationBooks = new ArrayList<IBook>(); try { for (IBook book : books) { if (book.isApplication()) { applicationBooks.add(book); } } } catch (UnsupportedOperationException | NullPointerException e) { log.error(e); } return applicationBooks; } @Override public void addToStock(Integer id) throws Exception { try { getById(id).setInStock(true); getById(id).setApplication(false); Shop.fileWorker.writeBooks(books); } catch (NullPointerException e) { log.error(e); throw new Exception(e); } } @Override public void deleteFromStock(Integer id) throws Exception { try { getById(id).setInStock(false); Shop.fileWorker.writeBooks(books); } catch (NullPointerException e) { log.error(e); throw new Exception(e); } } @Override public void submitApplication(Integer id) throws Exception { try { getById(id).setApplication(true); Shop.fileWorker.writeBooks(books); } catch (NullPointerException e) { log.error(e); throw new Exception(e); } } @Override public List<IBook> sortBooks(TypeBookComparator comparator) throws Exception { try { books.sort(new BookComparator(comparator)); return books; } catch (NullPointerException e) { log.error(e); throw new Exception(e); } } @Override public List<IBook> sortOldBooks(TypeBookComparator comparator) throws Exception { try { List<IBook> oldBooks = getOldBooks(); oldBooks.sort(new BookComparator(comparator)); return oldBooks; } catch (NullPointerException e) { log.error(e); throw new Exception(e); } } }
[ "polina-grodno97@mail.ru" ]
polina-grodno97@mail.ru
8e81b9dc078bd329676b68f80f56cd8eb0d22d30
cd38aa60a8f53ecc42e9dbea664747fba5f919e3
/Backend/luvbox-dao/src/main/java/dao/TbTags.java
5c1ab6453af91cd3b57ecfa1e87757830a1499b8
[]
no_license
mysincreative/luvbox-demo-server
0068243dacd9fe2a70e7ef6c1f707f8abc221609
e7608dce3868b1d8a3dd6a7b499ceffe4f0d684b
refs/heads/master
2016-09-06T20:16:51.249849
2015-11-05T11:09:16
2015-11-05T11:09:16
42,809,385
0
0
null
2015-10-08T08:31:41
2015-09-20T10:46:45
Java
UTF-8
Java
false
false
1,465
java
package dao; import javax.persistence.*; import java.util.HashSet; import java.util.Set; /** * TbTags entity. @author MyEclipse Persistence Tools */ @Entity @Table(name = "tb_tags" ) public class TbTags implements java.io.Serializable { // Fields private String tag; private String tagDescription; private Set<TbTemplateTags> tbTemplateTagses = new HashSet<TbTemplateTags>( 0); // Constructors /** default constructor */ public TbTags() { } /** minimal constructor */ public TbTags(String tag) { this.tag = tag; } /** full constructor */ public TbTags(String tag, String tagDescription, Set<TbTemplateTags> tbTemplateTagses) { this.tag = tag; this.tagDescription = tagDescription; this.tbTemplateTagses = tbTemplateTagses; } // Property accessors @Id @Column(name = "tag", unique = true, nullable = false, length = 45) public String getTag() { return this.tag; } public void setTag(String tag) { this.tag = tag; } @Column(name = "tagDescription") public String getTagDescription() { return this.tagDescription; } public void setTagDescription(String tagDescription) { this.tagDescription = tagDescription; } @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = "tbTags") public Set<TbTemplateTags> getTbTemplateTagses() { return this.tbTemplateTagses; } public void setTbTemplateTagses(Set<TbTemplateTags> tbTemplateTagses) { this.tbTemplateTagses = tbTemplateTagses; } }
[ "haminhthanh@Has-MacBook-Pro.local" ]
haminhthanh@Has-MacBook-Pro.local
4246d596dc34776310b505232485e1553b8b5243
27e84c5f84e78d342b551bcb1f5f30763719e3b9
/ImageGenerator.java
2bebc5b20ee515e7be7881603aff383d4dc55b68
[]
no_license
noyshu/LT_HW_NoyShulman
663ffbda67a0c2e2a3073ee1ee1e5f8d4bd5ff2a
0943c2bd87b6d9282c686983e18008f872df80b0
refs/heads/master
2020-03-26T12:25:17.950181
2018-08-15T19:51:11
2018-08-15T19:51:11
144,891,100
0
0
null
null
null
null
UTF-8
Java
false
false
3,763
java
import javax.imageio.ImageIO; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.text.DecimalFormat; import java.util.ArrayList; import java.util.Iterator; import java.util.Random; import java.awt.*; public class ImageGenerator{ private int height; private int width; //generate a random pixels image public ArrayList generateImage(int width, int height){ ArrayList image = new ArrayList<ArrayList<Float>>(); Random randomGenerator = new Random(); for(int i =0 ; i < height ; i++){ ArrayList row = new ArrayList<Float>(); for (int j =0 ; j < width ; j++){ row.add(randomGenerator.nextFloat()); } image.add(row); } return image; } // load an image from file, make it greyscale and store it to an array public ArrayList loadImageToArray(String fileName){ BufferedImage colorImage = null; try{ colorImage = ImageIO.read(new File((fileName + ".jpg"))); }catch (IOException e){ e.printStackTrace(); } height = colorImage.getHeight(); width = colorImage.getWidth(); ArrayList imageAsArray = new ArrayList<ArrayList<Float>>(); for(int i = 0 ; i < height; i ++){ ArrayList row = new ArrayList<Integer>(); for(int j = 0 ; j < width ; j ++){ Color c = new Color(colorImage.getRGB(j, i)).brighter(); float red = (float) (c.getRed() * 0.299); float green = (float) (c.getGreen() * 0.587); float blue = (float) (c.getBlue() * 0.114); row.add((red + green + blue)/256.0f); } imageAsArray.add(row); } return imageAsArray; } //this function converts an array back to image and saves a file named newFileName.jpg with the image public BufferedImage arrayToBufferdImageAndFile(ArrayList<ArrayList<Float>> imageAsArray,String newFileName){ BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_BYTE_GRAY); for(int i = 0 ; i < height; i ++){ ArrayList row = new ArrayList<Integer>(); for(int j = 0 ; j < width ; j ++){ Integer intColor = (int)((imageAsArray.get(i).get(j))*256); intColor = intColor >= 0 ? intColor : 255; Color newColor = new Color(intColor,intColor,intColor); image.setRGB(j,i,newColor.getRGB()); } } File newImage = new File(newFileName + ".jpg"); try { ImageIO.write(image,"jpg",newImage); }catch (IOException e){ e.printStackTrace(); } return image; } //make a rectengular hole in the image public ArrayList makeAHole(ArrayList<ArrayList<Float>> image_){ //only rectengles now ArrayList<ArrayList<Float>> image = new ArrayList<>(image_); Random rand = new Random(); Integer holeStartRow = height/2;//rand.nextInt(width - 40); Integer holeStartCol = 70 + width/2; // + rand.nextInt(height- 40); Integer holeRowSize = 30;//rand.nextInt(20); Integer holeColSize = 30;//rand.nextInt(20); holeRowSize = holeRowSize > 2 ? holeRowSize : 3; holeColSize = holeColSize > 2 ? holeColSize : 3; ArrayList newRow;//;mage.get(holeStartRow); for(int i = 0 ; i < holeRowSize ; i++){ newRow = image.get(holeStartRow + i); for(int j = 0 ; j < holeColSize ; j++){ newRow.set(holeStartCol + j,new Float(-1)); } image.set(holeStartRow + i,newRow); } return image; } }
[ "noyshu@campus.technion.ac.il" ]
noyshu@campus.technion.ac.il
b7ee5109f1116b30457be02df876ba7b15071b54
86b4cc6f79a901649476e9d02859975edfe78703
/source/Hello.java
26090733dc1e63c7980cb0735b17e4c26807b2a5
[]
no_license
lianming1234/2020test
e7a55a18b7f4ab99f4f077dd8ef9981e7692fff6
cf9cfdb2a1165625f7a6ea5615cbb9a7f1b33b53
refs/heads/master
2022-11-25T15:31:09.442124
2020-08-04T09:07:37
2020-08-04T09:07:37
284,897,671
0
0
null
null
null
null
UTF-8
Java
false
false
67
java
public class Hello{ private String name; private int age; }
[ "lm@qq.com" ]
lm@qq.com
68d0e8caa96beb16e70fb25edf82bec0918a0ff9
72c1c3cfb6c90e7e2b3bd94f44419d45be7be8d1
/src/main/java/ga/beauty/reset/HomeController.java
26892342cdc26e55f0ab993b0ecc7ba1b1f2daab
[]
no_license
wjbs06/reset-project
ca08fccd67bb63f91b5b77e5f3d2760e84204748
b5482c3fee23b4563ab9be0439e6c504cc80ff3c
refs/heads/master
2020-03-22T05:01:19.530065
2018-08-08T09:08:39
2018-08-08T09:08:39
139,536,662
0
0
null
2018-07-03T06:12:38
2018-07-03T06:12:37
null
UTF-8
Java
false
false
1,077
java
package ga.beauty.reset; import java.text.DateFormat; import java.util.Date; import java.util.Locale; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; /** * Handles requests for the application home page. */ @Controller public class HomeController { private static final Logger logger = LoggerFactory.getLogger(HomeController.class); /** * Simply selects the home view to render by returning its name. */ @RequestMapping(value = "/", method = RequestMethod.GET) public String home(Locale locale, Model model) { logger.info("Welcome home! The client locale is {}.", locale); Date date = new Date(); DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, locale); String formattedDate = dateFormat.format(date); model.addAttribute("serverTime", formattedDate ); return "home"; } }
[ "amor061750@gmail.com" ]
amor061750@gmail.com
2aa0897b089d5cecf34302fcdc7d86757f2d8bcf
bea3fc6d5efdbc174275b773fc77bd95414db1a9
/src/main/java/org/tugraz/sysds/runtime/instructions/spark/TernarySPInstruction.java
82344adaec9de268e5b4718f241ca58ebef4a37e
[ "Apache-2.0" ]
permissive
langk/systemds
6cfac2589147bf7ab77da0b26562c1067e39a9ac
a877c7db8b0990d594acf7f9fcc21de25d0ab555
refs/heads/master
2020-04-21T12:21:32.782577
2019-04-12T11:02:43
2019-04-12T11:02:43
169,559,449
0
0
Apache-2.0
2019-02-07T11:13:14
2019-02-07T11:13:14
null
UTF-8
Java
false
false
8,745
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.tugraz.sysds.runtime.instructions.spark; import java.io.Serializable; import org.apache.spark.api.java.JavaPairRDD; import org.apache.spark.api.java.function.Function; import org.tugraz.sysds.runtime.controlprogram.context.ExecutionContext; import org.tugraz.sysds.runtime.controlprogram.context.SparkExecutionContext; import org.tugraz.sysds.runtime.instructions.InstructionUtils; import org.tugraz.sysds.runtime.instructions.cp.CPOperand; import org.tugraz.sysds.runtime.matrix.data.MatrixBlock; import org.tugraz.sysds.runtime.matrix.data.MatrixIndexes; import org.tugraz.sysds.runtime.matrix.operators.TernaryOperator; import org.tugraz.sysds.runtime.meta.MatrixCharacteristics; import scala.Tuple2; public class TernarySPInstruction extends ComputationSPInstruction { private TernarySPInstruction(TernaryOperator op, CPOperand in1, CPOperand in2, CPOperand in3, CPOperand out, String opcode, String str) { super(SPType.Ternary, op, in1, in2, in3, out, opcode, str); } public static TernarySPInstruction parseInstruction(String str) { String[] parts = InstructionUtils.getInstructionPartsWithValueType(str); String opcode=parts[0]; CPOperand operand1 = new CPOperand(parts[1]); CPOperand operand2 = new CPOperand(parts[2]); CPOperand operand3 = new CPOperand(parts[3]); CPOperand outOperand = new CPOperand(parts[4]); TernaryOperator op = InstructionUtils.parseTernaryOperator(opcode); return new TernarySPInstruction(op,operand1, operand2, operand3, outOperand, opcode,str); } @Override public void processInstruction(ExecutionContext ec) { SparkExecutionContext sec = (SparkExecutionContext)ec; JavaPairRDD<MatrixIndexes,MatrixBlock> in1 = !input1.isMatrix() ? null : sec.getBinaryBlockRDDHandleForVariable(input1.getName()); JavaPairRDD<MatrixIndexes,MatrixBlock> in2 = !input2.isMatrix() ? null : sec.getBinaryBlockRDDHandleForVariable(input2.getName()); JavaPairRDD<MatrixIndexes,MatrixBlock> in3 = !input3.isMatrix() ? null : sec.getBinaryBlockRDDHandleForVariable(input3.getName()); MatrixBlock m1 = input1.isMatrix() ? null : new MatrixBlock(ec.getScalarInput(input1).getDoubleValue()); MatrixBlock m2 = input2.isMatrix() ? null : new MatrixBlock(ec.getScalarInput(input2).getDoubleValue()); MatrixBlock m3 = input3.isMatrix() ? null : new MatrixBlock(ec.getScalarInput(input3).getDoubleValue()); TernaryOperator op = (TernaryOperator) _optr; JavaPairRDD<MatrixIndexes,MatrixBlock> out = null; if( input1.isMatrix() && !input2.isMatrix() && !input3.isMatrix() ) out = in1.mapValues(new TernaryFunctionMSS(op, m1, m2, m3)); else if( !input1.isMatrix() && input2.isMatrix() && !input3.isMatrix() ) out = in2.mapValues(new TernaryFunctionSMS(op, m1, m2, m3)); else if( !input1.isMatrix() && !input2.isMatrix() && input3.isMatrix() ) out = in3.mapValues(new TernaryFunctionSSM(op, m1, m2, m3)); else if( input1.isMatrix() && input2.isMatrix() && !input3.isMatrix() ) out = in1.join(in2).mapValues(new TernaryFunctionMMS(op, m1, m2, m3)); else if( input1.isMatrix() && !input2.isMatrix() && input3.isMatrix() ) out = in1.join(in3).mapValues(new TernaryFunctionMSM(op, m1, m2, m3)); else if( !input1.isMatrix() && input2.isMatrix() && input3.isMatrix() ) out = in2.join(in3).mapValues(new TernaryFunctionSMM(op, m1, m2, m3)); else // all matrices out = in1.join(in2).join(in3).mapValues(new TernaryFunctionMMM(op, m1, m2, m3)); //set output RDD updateTernaryOutputMatrixCharacteristics(sec); sec.setRDDHandleForVariable(output.getName(), out); if( input1.isMatrix() ) sec.addLineageRDD(output.getName(), input1.getName()); if( input2.isMatrix() ) sec.addLineageRDD(output.getName(), input2.getName()); if( input3.isMatrix() ) sec.addLineageRDD(output.getName(), input3.getName()); } protected void updateTernaryOutputMatrixCharacteristics(SparkExecutionContext sec) { MatrixCharacteristics mcOut = sec.getMatrixCharacteristics(output.getName()); for(CPOperand input : new CPOperand[]{input1, input2, input3}) if( input.isMatrix() ) { MatrixCharacteristics mc = sec.getMatrixCharacteristics(input.getName()); if( mc.dimsKnown() ) mcOut.set(mc); } } private static abstract class TernaryFunction implements Serializable { private static final long serialVersionUID = 8345737737972434426L; protected final TernaryOperator _op; protected final MatrixBlock _m1, _m2, _m3; public TernaryFunction(TernaryOperator op, MatrixBlock m1, MatrixBlock m2, MatrixBlock m3) { _op = op; _m1 = m1; _m2 = m2; _m3 = m3; } } private static class TernaryFunctionMSS extends TernaryFunction implements Function<MatrixBlock, MatrixBlock> { private static final long serialVersionUID = 1L; public TernaryFunctionMSS(TernaryOperator op, MatrixBlock m1, MatrixBlock m2, MatrixBlock m3) { super(op, m1, m2, m3); } @Override public MatrixBlock call(MatrixBlock v1) throws Exception { return v1.ternaryOperations(_op, _m2, _m3, new MatrixBlock()); } } private static class TernaryFunctionSMS extends TernaryFunction implements Function<MatrixBlock, MatrixBlock> { private static final long serialVersionUID = 1L; public TernaryFunctionSMS(TernaryOperator op, MatrixBlock m1, MatrixBlock m2, MatrixBlock m3) { super(op, m1, m2, m3); } @Override public MatrixBlock call(MatrixBlock v1) throws Exception { return _m1.ternaryOperations(_op, v1, _m3, new MatrixBlock()); } } private static class TernaryFunctionSSM extends TernaryFunction implements Function<MatrixBlock, MatrixBlock> { private static final long serialVersionUID = 1L; public TernaryFunctionSSM(TernaryOperator op, MatrixBlock m1, MatrixBlock m2, MatrixBlock m3) { super(op, m1, m2, m3); } @Override public MatrixBlock call(MatrixBlock v1) throws Exception { return _m1.ternaryOperations(_op, _m2, v1, new MatrixBlock()); } } private static class TernaryFunctionMMS extends TernaryFunction implements Function<Tuple2<MatrixBlock,MatrixBlock>, MatrixBlock> { private static final long serialVersionUID = 1L; public TernaryFunctionMMS(TernaryOperator op, MatrixBlock m1, MatrixBlock m2, MatrixBlock m3) { super(op, m1, m2, m3); } @Override public MatrixBlock call(Tuple2<MatrixBlock, MatrixBlock> v1) throws Exception { return v1._1().ternaryOperations(_op, v1._2(), _m3, new MatrixBlock()); } } private static class TernaryFunctionMSM extends TernaryFunction implements Function<Tuple2<MatrixBlock,MatrixBlock>, MatrixBlock> { private static final long serialVersionUID = 1L; public TernaryFunctionMSM(TernaryOperator op, MatrixBlock m1, MatrixBlock m2, MatrixBlock m3) { super(op, m1, m2, m3); } @Override public MatrixBlock call(Tuple2<MatrixBlock, MatrixBlock> v1) throws Exception { return v1._1().ternaryOperations(_op, _m2, v1._2(), new MatrixBlock()); } } private static class TernaryFunctionSMM extends TernaryFunction implements Function<Tuple2<MatrixBlock,MatrixBlock>, MatrixBlock> { private static final long serialVersionUID = 1L; public TernaryFunctionSMM(TernaryOperator op, MatrixBlock m1, MatrixBlock m2, MatrixBlock m3) { super(op, m1, m2, m3); } @Override public MatrixBlock call(Tuple2<MatrixBlock, MatrixBlock> v1) throws Exception { return _m1.ternaryOperations(_op, v1._1(), v1._2(), new MatrixBlock()); } } private static class TernaryFunctionMMM extends TernaryFunction implements Function<Tuple2<Tuple2<MatrixBlock,MatrixBlock>,MatrixBlock>, MatrixBlock> { private static final long serialVersionUID = 1L; public TernaryFunctionMMM(TernaryOperator op, MatrixBlock m1, MatrixBlock m2, MatrixBlock m3) { super(op, m1, m2, m3); } @Override public MatrixBlock call(Tuple2<Tuple2<MatrixBlock,MatrixBlock>,MatrixBlock> v1) throws Exception { return v1._1()._1().ternaryOperations(_op, v1._1()._2(), v1._2(), new MatrixBlock()); } } }
[ "mboehm7@gmail.com" ]
mboehm7@gmail.com
cc264e4be569448bd111c308590c768a634588a7
9212e71ce6711d9ef874dcc5ec99babac1ca3528
/jrtps/src/main/java/net/sf/jrtps/rtps/RemoteProxy.java
3bb2e7db899b47156ef4014907ada9f92871c02a
[]
no_license
mcr70/jrtps
3889b626bb099b3b72858928783cdfce9b2c7136
bfc831f3ade21c092c05165324c079f4cff874e0
refs/heads/main
2023-07-16T09:51:08.162238
2021-08-25T13:39:01
2021-08-25T13:39:01
399,824,744
1
0
null
null
null
null
UTF-8
Java
false
false
4,102
java
package net.sf.jrtps.rtps; import java.util.LinkedList; import java.util.List; import net.sf.jrtps.builtin.DiscoveredData; import net.sf.jrtps.message.parameter.QosReliability; import net.sf.jrtps.transport.TransportProvider; import net.sf.jrtps.types.EntityId; import net.sf.jrtps.types.Guid; import net.sf.jrtps.types.Locator; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * A base class used to represent a remote entity. * * @author mcr70 */ public class RemoteProxy { private static final Logger logger = LoggerFactory.getLogger(RemoteProxy.class); private DiscoveredData discoveredData; private final List<Locator> locators = new LinkedList<>(); private boolean preferMulticast = false; // TODO: not used at the moment /** * Constructor for RemoteProxy. * * @param dd DiscoveredData * @param locators a List of Locators */ protected RemoteProxy(DiscoveredData dd, List<Locator> locators) { this.discoveredData = dd; // Add only locators we can handle for (Locator locator : locators) { TransportProvider provider = TransportProvider.getProviderForKind(locator.getKind()); if (provider != null) { // TODO: Convert generic locator to UDPLocator, MemLocator etc. // and remove all the unnecessary stuff Like InetAddress from // Locator this.locators.add(locator); } } } /** * Updates DiscoveredData of this RemoteProxy * @param dd DiscoveredData */ public void update(DiscoveredData dd) { this.discoveredData = dd; } /** * Gets the Locator for the remote entity. Tries to return preferred locator * (unicast or multicast). If the preferred locator is null, return non * preferred locator. By default, unicast is preferred. * * @return Locator */ public Locator getLocator() { if (locators.size() > 0) { // TODO: should we return the first one, or should we do some filtering return locators.get(0); // Get the first available locator } logger.warn("Could not find a suitable Locator from {}", locators); return null; } /** * Gets all the locators for this RemoteProxy * @return All the locators that can be handled by TransportProviders */ public List<Locator> getLocators() { return locators; } /** * Gets the DiscoveredData associated with this Proxy. * * @return DiscoveredData */ public DiscoveredData getDiscoveredData() { return discoveredData; } /** * Return true, if remote entity represented by this RemoteProxy is * configured to be reliable. * * @return true, if this RemoteProxy represents a reliable entity */ public boolean isReliable() { QosReliability policy = getDiscoveredData().getQualityOfService().getReliability(); return policy.getKind() == QosReliability.Kind.RELIABLE; } /** * Gets the Guid of remote entity. * * @return Guid */ public Guid getGuid() { return discoveredData.getBuiltinTopicKey(); } /** * Gets the EntityId of remote entity. This is method behaves the same as calling * getGuid().getEntityId(). * * @return EntityId */ public EntityId getEntityId() { return getGuid().getEntityId(); } /** * Sets whether or not to prefer multicast. Default is not to prefer * multicast. * * @param preferMulticast Whether or not proxy prefers multicast */ public void preferMulticast(boolean preferMulticast) { // BUG: this concept can be removed. Writer can determine if reader // can receive multicast or not this.preferMulticast = preferMulticast; } @Override public String toString() { return getGuid().toString() + ", locators " + locators + ", prefers mc: " + preferMulticast; } }
[ "mika.riekkinen@gmail.com" ]
mika.riekkinen@gmail.com
6a5769e383b2c034c2e58581594d19e008f65ad7
313aeea50be1fe9a3cbe5c4e0553f45841cc7622
/ECommerceProject/src/cn/tedu/web/ManageCartProdServlet.java
a5c19774ba443fa32b1eb762fbf48e30d044266b
[]
no_license
Knignt9/e_commerce_project
986e19bdbba7ebd20bbdddfbc8b2bb03bcfe065e
b3ed9ef8c1fc2c47c3147f711d72b3b3206b86df
refs/heads/master
2020-03-21T10:21:43.633426
2018-06-24T02:38:53
2018-06-24T02:38:53
138,447,100
0
0
null
null
null
null
UTF-8
Java
false
false
1,019
java
package cn.tedu.web; import java.io.IOException; import java.util.List; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import cn.tedu.bean.Prod; import cn.tedu.bean.User; import cn.tedu.factory.BasicFactory; import cn.tedu.service.ProdService; public class ManageCartProdServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { User user = (User) request.getSession().getAttribute("user"); ProdService service=BasicFactory.getFactory().getInstance(ProdService.class); List<Prod> list=service.findCartProdList(user.getId()); request.setAttribute("list", list); request.getRequestDispatcher("/cart.jsp").forward(request, response); } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doGet(request, response); } }
[ "1327589664@qq.com" ]
1327589664@qq.com
92229d06007b81b3c03b83897a66b11becb524e9
91a4be8d50f14f1cf3d3baab9d605fb48450b73e
/app/src/main/java/com/example/randommusicplayer/MainActivity.java
bcdc02ee2517eb64f0ecdd845253c121443ead05
[]
no_license
mrMgt/RandomMusicPlayer
5a03f222d32f96523757d18767939411787354f2
cc18527e0033194c650c84e98a6e070d375277da
refs/heads/master
2021-01-13T14:47:25.281409
2016-12-15T10:17:50
2016-12-15T10:17:50
76,548,951
0
0
null
null
null
null
UTF-8
Java
false
false
5,155
java
/* * Copyright (C) 2011 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.example.randommusicplayer; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.KeyEvent; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; /** * Main activity: shows media player buttons. This activity shows the media player buttons and * lets the user click them. No media handling is done here -- everything is done by passing * Intents to our {@link MusicService}. * */ public class MainActivity extends Activity implements OnClickListener { /** * The URL we suggest as default when adding by URL. This is just so that the user doesn't * have to find an URL to test this sample. */ final String SUGGESTED_URL = "http://www.vorbis.com/music/Epoq-Lepidoptera.ogg"; Button mPlayButton; Button mPauseButton; Button mSkipButton; Button mRewindButton; Button mStopButton; Button mEjectButton; /** * Called when the activity is first created. Here, we simply set the event listeners and * start the background service ({@link MusicService}) that will handle the actual media * playback. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); mPlayButton = (Button) findViewById(R.id.playbutton); mPauseButton = (Button) findViewById(R.id.pausebutton); mSkipButton = (Button) findViewById(R.id.skipbutton); mRewindButton = (Button) findViewById(R.id.rewindbutton); mStopButton = (Button) findViewById(R.id.stopbutton); mEjectButton = (Button) findViewById(R.id.ejectbutton); mPlayButton.setOnClickListener(this); mPauseButton.setOnClickListener(this); mSkipButton.setOnClickListener(this); mRewindButton.setOnClickListener(this); mStopButton.setOnClickListener(this); mEjectButton.setOnClickListener(this); } public void onClick(View target) { // Send the correct intent to the MusicService, according to the button that was clicked if (target == mPlayButton) startService(new Intent(MusicService.ACTION_PLAY)); else if (target == mPauseButton) startService(new Intent(MusicService.ACTION_PAUSE)); else if (target == mSkipButton) startService(new Intent(MusicService.ACTION_SKIP)); else if (target == mRewindButton) startService(new Intent(MusicService.ACTION_REWIND)); else if (target == mStopButton) startService(new Intent(MusicService.ACTION_STOP)); else if (target == mEjectButton) { showUrlDialog(); } } /** * Shows an alert dialog where the user can input a URL. After showing the dialog, if the user * confirms, sends the appropriate intent to the {@link MusicService} to cause that URL to be * played. */ void showUrlDialog() { AlertDialog.Builder alertBuilder = new AlertDialog.Builder(this); alertBuilder.setTitle("Manual Input"); alertBuilder.setMessage("Enter a URL (must be http://)"); final EditText input = new EditText(this); alertBuilder.setView(input); input.setText(SUGGESTED_URL); alertBuilder.setPositiveButton("Play!", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dlg, int whichButton) { // Send an intent with the URL of the song to play. This is expected by // MusicService. Intent i = new Intent(MusicService.ACTION_URL); Uri uri = Uri.parse(input.getText().toString()); i.setData(uri); startService(i); } }); alertBuilder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dlg, int whichButton) {} }); alertBuilder.show(); } @Override public boolean onKeyDown(int keyCode, KeyEvent event) { switch (keyCode) { case KeyEvent.KEYCODE_MEDIA_PLAY_PAUSE: case KeyEvent.KEYCODE_HEADSETHOOK: startService(new Intent(MusicService.ACTION_TOGGLE_PLAYBACK)); return true; } return super.onKeyDown(keyCode, event); } }
[ "linhdinhnguyen@gmail.com" ]
linhdinhnguyen@gmail.com
95efcc5f521ed597fa784ca8e6c89f63c8d091e7
3e3e676cda3e68ef965b746d247430e9ab61044e
/src/main/java/com/hibuz/jhipster/web/rest/AccountResource.java
d3a9e9cb8699d6404a6eb713c233fd2f066d3aa4
[]
no_license
hibuz/jhipster-monolithic
a7c960fe23725f34024604a4b6714dca87ac639f
315e9b85468d8e457782df2e40cf3833871b8276
refs/heads/master
2023-07-27T06:13:09.036544
2021-09-06T08:51:53
2021-09-06T08:51:53
403,545,881
0
0
null
null
null
null
UTF-8
Java
false
false
7,831
java
package com.hibuz.jhipster.web.rest; import com.hibuz.jhipster.domain.User; import com.hibuz.jhipster.repository.UserRepository; import com.hibuz.jhipster.security.SecurityUtils; import com.hibuz.jhipster.service.MailService; import com.hibuz.jhipster.service.UserService; import com.hibuz.jhipster.service.dto.AdminUserDTO; import com.hibuz.jhipster.service.dto.PasswordChangeDTO; import com.hibuz.jhipster.service.dto.UserDTO; import com.hibuz.jhipster.web.rest.errors.*; import com.hibuz.jhipster.web.rest.vm.KeyAndPasswordVM; import com.hibuz.jhipster.web.rest.vm.ManagedUserVM; import java.util.*; import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.*; /** * REST controller for managing the current user's account. */ @RestController @RequestMapping("/api") public class AccountResource { private static class AccountResourceException extends RuntimeException { private AccountResourceException(String message) { super(message); } } private final Logger log = LoggerFactory.getLogger(AccountResource.class); private final UserRepository userRepository; private final UserService userService; private final MailService mailService; public AccountResource(UserRepository userRepository, UserService userService, MailService mailService) { this.userRepository = userRepository; this.userService = userService; this.mailService = mailService; } /** * {@code POST /register} : register the user. * * @param managedUserVM the managed user View Model. * @throws InvalidPasswordException {@code 400 (Bad Request)} if the password is incorrect. * @throws EmailAlreadyUsedException {@code 400 (Bad Request)} if the email is already used. * @throws LoginAlreadyUsedException {@code 400 (Bad Request)} if the login is already used. */ @PostMapping("/register") @ResponseStatus(HttpStatus.CREATED) public void registerAccount(@Valid @RequestBody ManagedUserVM managedUserVM) { if (isPasswordLengthInvalid(managedUserVM.getPassword())) { throw new InvalidPasswordException(); } User user = userService.registerUser(managedUserVM, managedUserVM.getPassword()); mailService.sendActivationEmail(user); } /** * {@code GET /activate} : activate the registered user. * * @param key the activation key. * @throws RuntimeException {@code 500 (Internal Server Error)} if the user couldn't be activated. */ @GetMapping("/activate") public void activateAccount(@RequestParam(value = "key") String key) { Optional<User> user = userService.activateRegistration(key); if (!user.isPresent()) { throw new AccountResourceException("No user was found for this activation key"); } } /** * {@code GET /authenticate} : check if the user is authenticated, and return its login. * * @param request the HTTP request. * @return the login if the user is authenticated. */ @GetMapping("/authenticate") public String isAuthenticated(HttpServletRequest request) { log.debug("REST request to check if the current user is authenticated"); return request.getRemoteUser(); } /** * {@code GET /account} : get the current user. * * @return the current user. * @throws RuntimeException {@code 500 (Internal Server Error)} if the user couldn't be returned. */ @GetMapping("/account") public AdminUserDTO getAccount() { return userService .getUserWithAuthorities() .map(AdminUserDTO::new) .orElseThrow(() -> new AccountResourceException("User could not be found")); } /** * {@code POST /account} : update the current user information. * * @param userDTO the current user information. * @throws EmailAlreadyUsedException {@code 400 (Bad Request)} if the email is already used. * @throws RuntimeException {@code 500 (Internal Server Error)} if the user login wasn't found. */ @PostMapping("/account") public void saveAccount(@Valid @RequestBody AdminUserDTO userDTO) { String userLogin = SecurityUtils .getCurrentUserLogin() .orElseThrow(() -> new AccountResourceException("Current user login not found")); Optional<User> existingUser = userRepository.findOneByEmailIgnoreCase(userDTO.getEmail()); if (existingUser.isPresent() && (!existingUser.get().getLogin().equalsIgnoreCase(userLogin))) { throw new EmailAlreadyUsedException(); } Optional<User> user = userRepository.findOneByLogin(userLogin); if (!user.isPresent()) { throw new AccountResourceException("User could not be found"); } userService.updateUser( userDTO.getFirstName(), userDTO.getLastName(), userDTO.getEmail(), userDTO.getLangKey(), userDTO.getImageUrl() ); } /** * {@code POST /account/change-password} : changes the current user's password. * * @param passwordChangeDto current and new password. * @throws InvalidPasswordException {@code 400 (Bad Request)} if the new password is incorrect. */ @PostMapping(path = "/account/change-password") public void changePassword(@RequestBody PasswordChangeDTO passwordChangeDto) { if (isPasswordLengthInvalid(passwordChangeDto.getNewPassword())) { throw new InvalidPasswordException(); } userService.changePassword(passwordChangeDto.getCurrentPassword(), passwordChangeDto.getNewPassword()); } /** * {@code POST /account/reset-password/init} : Send an email to reset the password of the user. * * @param mail the mail of the user. */ @PostMapping(path = "/account/reset-password/init") public void requestPasswordReset(@RequestBody String mail) { Optional<User> user = userService.requestPasswordReset(mail); if (user.isPresent()) { mailService.sendPasswordResetMail(user.get()); } else { // Pretend the request has been successful to prevent checking which emails really exist // but log that an invalid attempt has been made log.warn("Password reset requested for non existing mail"); } } /** * {@code POST /account/reset-password/finish} : Finish to reset the password of the user. * * @param keyAndPassword the generated key and the new password. * @throws InvalidPasswordException {@code 400 (Bad Request)} if the password is incorrect. * @throws RuntimeException {@code 500 (Internal Server Error)} if the password could not be reset. */ @PostMapping(path = "/account/reset-password/finish") public void finishPasswordReset(@RequestBody KeyAndPasswordVM keyAndPassword) { if (isPasswordLengthInvalid(keyAndPassword.getNewPassword())) { throw new InvalidPasswordException(); } Optional<User> user = userService.completePasswordReset(keyAndPassword.getNewPassword(), keyAndPassword.getKey()); if (!user.isPresent()) { throw new AccountResourceException("No user was found for this reset key"); } } private static boolean isPasswordLengthInvalid(String password) { return ( StringUtils.isEmpty(password) || password.length() < ManagedUserVM.PASSWORD_MIN_LENGTH || password.length() > ManagedUserVM.PASSWORD_MAX_LENGTH ); } }
[ "hibuz@hibuz.com" ]
hibuz@hibuz.com
986db239b017af2cfa9b4e59e33a148e0c984da0
22590c3d57a575b926697c4478d351e3559f9d4a
/src/main/java/com/elct/elctchar/web/controller/AuthController.java
dca297a021791d170dbf513bad99fc6887943c60
[]
no_license
seor8674/elctchar
7ba98291283e6e5315b00cedbc533ea821d47615
e6e5012b9fe5d784757d66d9c79bbc5de73355f4
refs/heads/master
2023-07-05T08:17:26.217697
2021-08-09T15:49:19
2021-08-09T15:49:19
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,220
java
package com.elct.elctchar.web.controller; import com.elct.elctchar.config.jwt.JwtFilter; import com.elct.elctchar.config.jwt.TokenProvider; import com.elct.elctchar.web.auth.UserInfoResponseDto; import com.elct.elctchar.web.exception.ErrorCode; import com.elct.elctchar.web.exception.GlobalApiException; import com.elct.elctchar.web.member.domain.Member; import com.elct.elctchar.web.member.domain.MemberRepository; import com.elct.elctchar.web.member.dto.LoginDto; import com.elct.elctchar.web.member.dto.TokenDto; import com.elct.elctchar.web.member.service.MemberService; import io.swagger.annotations.Api; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; @CrossOrigin("*") @RestController @RequestMapping("/api/auth") @Api(tags = "로그인 관련 Api") public class AuthController { private final TokenProvider tokenProvider; private final AuthenticationManagerBuilder authenticationManagerBuilder; private final MemberRepository memberRepository; public AuthController( TokenProvider tokenProvider , AuthenticationManagerBuilder authenticationManagerBuilder , MemberRepository memberRepository) { this.tokenProvider = tokenProvider; this.authenticationManagerBuilder = authenticationManagerBuilder; this.memberRepository = memberRepository; } @PostMapping("/authenticate") public ResponseEntity<TokenDto> authorize(@Validated @RequestBody LoginDto loginDto) { UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswordAuthenticationToken(loginDto.getNickName(), loginDto.getPassword()); Authentication authentication = authenticationManagerBuilder.getObject().authenticate(authenticationToken); SecurityContextHolder.getContext().setAuthentication(authentication); String jwt = tokenProvider.createToken(authentication); HttpHeaders httpHeaders = new HttpHeaders(); httpHeaders.add(JwtFilter.AUTHORIZATION_HEADER, "Bearer " + jwt); return new ResponseEntity<>(new TokenDto(jwt, loginDto.getNickName()), httpHeaders, HttpStatus.OK); } @PostMapping("/log") public UserInfoResponseDto isLogin(Authentication authentication) { UserDetails userDetails = (UserDetails) authentication.getPrincipal(); Member member = memberRepository.findMemberByNickname(userDetails.getUsername()) .orElseThrow( ()-> new GlobalApiException(ErrorCode.NONE_USER)); return new UserInfoResponseDto(member.getMemberId(), member.getNickname(), member.getAuthorities()); } }
[ "wlatmdqja@naver.com" ]
wlatmdqja@naver.com
596f96f0df9f9ef4e18d578d5693025fdb9def3f
2a68a19161ca085a778da778f34e22e8ce0f96a7
/AdminPlatformApplication/ViewController/src/com/zypg/cms/admin/view/bean/ExtendAttrEditManagedBean.java
6054287d1209e3fd8023a2dec896003c2c95371a
[]
no_license
vickysongang/Founder
a40ee6dd1672e807bf7a31fb9ccdaa788f9e1ab0
62bc7293f433f89b25b8205b47fd1c6476d70d78
refs/heads/master
2021-01-10T02:10:28.358554
2016-01-10T07:08:19
2016-01-10T07:08:19
49,356,437
0
0
null
null
null
null
UTF-8
Java
false
false
3,427
java
package com.zypg.cms.admin.view.bean; import com.zypg.cms.admin.view.util.CustomManagedBean; import javax.faces.application.FacesMessage; import javax.faces.context.FacesContext; import oracle.adf.view.rich.component.rich.input.RichInputText; import oracle.adf.view.rich.component.rich.input.RichSelectOneChoice; import oracle.jbo.domain.Number; import oracle.wsm.common.util.CommonUtil; public class ExtendAttrEditManagedBean extends CustomManagedBean { private RichInputText attrCodeInput; private RichInputText attrMeaningInput; private RichSelectOneChoice attrTypeChoice; public ExtendAttrEditManagedBean() { } public void initEditExtendAttr() { String operType = (String)this.resolveExpression("#{pageFlowScope.operType}"); Number extendAttrId = (Number)this.resolveExpression("#{pageFlowScope.extendAttrId}"); String compCode = (String)this.resolveExpression("#{pageFlowScope.compCode}"); String libCode = (String)this.resolveExpression("#{pageFlowScope.libCode}"); this.getAdminAM().preEditExtendAttr(operType, extendAttrId, compCode, libCode); } public boolean validator() { String compCode = (String)this.resolveExpression("#{pageFlowScope.compCode}"); String libCode = (String)this.resolveExpression("#{pageFlowScope.libCode}"); String operType = (String)this.resolveExpression("#{pageFlowScope.operType}"); if (this.getAttrCodeInput().getValue() == null) { this.addFormattedMessage(this.getAttrCodeInput().getClientId(), "字段唯一标识不能为空", FacesMessage.SEVERITY_WARN); return false; } else if ("CREATE".equals(operType) && this.getAdminAM().isAttrCodeExsit((String)this.getAttrCodeInput().getValue(), compCode, libCode)) { this.addFormattedMessage(this.getAttrCodeInput().getClientId(), "该字段已存在", FacesMessage.SEVERITY_WARN); return false; } else if (this.getAttrMeaningInput().getValue() == null) { this.addFormattedMessage(this.getAttrMeaningInput().getClientId(), "字段含义不能为空", FacesMessage.SEVERITY_WARN); return false; } else if (this.getAttrTypeChoice().getValue() == null) { this.addFormattedMessage(this.getAttrTypeChoice().getClientId(), "字段类型不能为空", FacesMessage.SEVERITY_WARN); return false; } return true; } public String saveAction() { if (validator()) { this.getAdminAM().getDBTransaction().commit(); return "toReturn"; } else { return null; } } public String cancelAction() { this.getAdminAM().getDBTransaction().rollback(); return "toReturn"; } public void setAttrCodeInput(RichInputText attrCodeInput) { this.attrCodeInput = attrCodeInput; } public RichInputText getAttrCodeInput() { return attrCodeInput; } public void setAttrMeaningInput(RichInputText attrMeaningInput) { this.attrMeaningInput = attrMeaningInput; } public RichInputText getAttrMeaningInput() { return attrMeaningInput; } public void setAttrTypeChoice(RichSelectOneChoice attrTypeChoice) { this.attrTypeChoice = attrTypeChoice; } public RichSelectOneChoice getAttrTypeChoice() { return attrTypeChoice; } }
[ "vickysongang@gmail.com" ]
vickysongang@gmail.com
0ecba57c92c5ebebdf63c0e9712c9defede60716
447520f40e82a060368a0802a391697bc00be96f
/apks/playstore_apps/at_spardat_bcrmobile/source/at/spardat/bcrmobile/view/pulltorefresh/scrollview/PullToRefreshScrollView.java
26ec8f62d8fa6d4b45119435177e4f273204b10b
[ "Apache-2.0" ]
permissive
iantal/AndroidPermissions
7f3343a9c29d82dbcd4ecd98b3a50ddf8d179465
d623b732734243590b5f004d167e542e2e2ae249
refs/heads/master
2023-07-19T01:29:26.689186
2019-09-30T19:01:42
2019-09-30T19:01:42
107,239,248
0
0
Apache-2.0
2023-07-16T07:41:38
2017-10-17T08:22:57
null
UTF-8
Java
false
false
977
java
package at.spardat.bcrmobile.view.pulltorefresh.scrollview; import android.content.Context; import android.util.AttributeSet; import android.view.View; import at.spardat.bcrmobile.view.pulltorefresh.c; import at.spardat.bcrmobile.view.pulltorefresh.f; import at.spardat.bcrmobile.view.widget.j; public class PullToRefreshScrollView extends f<j> { public PullToRefreshScrollView(Context paramContext) { super(paramContext); } public PullToRefreshScrollView(Context paramContext, AttributeSet paramAttributeSet) { super(paramContext, paramAttributeSet); } public PullToRefreshScrollView(Context paramContext, c paramC) { super(paramContext, paramC); } protected final boolean m() { View localView = ((j)this.a).getChildAt(0); return (localView != null) && (((j)this.a).getScrollY() >= localView.getHeight() - getHeight()); } protected final boolean n() { return (((j)this.a).getScrollY() == 0) && (!e()); } }
[ "antal.micky@yahoo.com" ]
antal.micky@yahoo.com
fa8fe6f382e0b5a84bc3ab49e64e9c2afb9098eb
7e689be329d1aae9065b59c9549ee06fddecee3b
/platform/src/java/com/xcase/rest/generator/raml/DeserializerBuilder.java
10b210d4ab425d94b32516a6793b6de1708c64d2
[]
no_license
martinpg2001/xcase
14564efa8160105ed2301a2c7ad79293a039414a
e530d16f951adbdde1694b0d837bfd6c6c9b7f6b
refs/heads/master
2023-08-22T14:28:40.712362
2023-08-01T03:52:35
2023-08-01T03:52:35
34,886,456
0
2
null
2022-12-12T02:45:28
2015-05-01T02:20:51
Java
UTF-8
Java
false
false
2,649
java
package com.xcase.rest.generator.raml; import com.google.gson.*; import com.xcase.rest.generator.*; import com.xcase.rest.generator.raml.serialization.*; import com.xcase.common.impl.simple.core.CommonHTTPManager; import com.xcase.common.utils.ConverterUtils; import java.lang.invoke.MethodHandles; import java.io.*; import java.net.*; import java.nio.file.*; import java.util.*; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.NameValuePair; import org.apache.http.message.BasicNameValuePair; import org.apache.http.util.EntityUtils; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; public class DeserializerBuilder { private IObjectFactory objectFactory = new DefaultObjectFactory(); /// <summary> /// Initializes a new <see cref="DeserializerBuilder" /> using the default component registrations. /// </summary> public DeserializerBuilder() { } protected DeserializerBuilder self() { return this; } /// <summary> /// Sets the <see cref="IObjectFactory" /> that will be used by the deserializer. /// </summary> public DeserializerBuilder WithObjectFactory(IObjectFactory objectFactory) throws Exception { if (objectFactory == null) { throw new Exception("objectFactory"); } this.objectFactory = objectFactory; return this; } /// <summary> /// Registers an additional <see cref="INodeDeserializer" /> to be used by the deserializer. /// </summary> public DeserializerBuilder WithNodeDeserializer(INodeDeserializer nodeDeserializer) { return this; } /// <summary> /// Registers an additional <see cref="INodeDeserializer" /> to be used by the deserializer. /// </summary> /// <param name="nodeDeserializer"></param> /// <param name="where">Configures the location where to insert the <see cref="INodeDeserializer" /></param> public DeserializerBuilder WithNodeDeserializer() { return this; } /// <summary> /// Creates a new <see cref="Deserializer" /> according to the current configuration. /// </summary> public Deserializer build() { return new Deserializer(); } /// <summary> /// Creates a new <see cref="IValueDeserializer" /> that implements the current configuration. /// This method is available for advanced scenarios. The preferred way to customize the bahavior of the /// deserializer is to use the <see cref="Build" /> method. /// </summary> public Deserializer BuildValueDeserializer() { return new Deserializer(); } }
[ "martin.gilchrist@intapp.com" ]
martin.gilchrist@intapp.com
ea03083c1243974073881c0904c307ad8af6cfa4
52af03a72719bb0c003acc91ee6bf17c2c48a3c9
/src/main/java/com/dongzhi/hotel/web/RegisterInfoController.java
a93080bdfa9f4a70496121e77b8580a2c90e3ecb
[]
no_license
baweimao/hotel_springboot
00b08859d9e04e475fc44f5da307d320e492ad6d
df5a902dfd58b22e96325134f6e0ceba07c81f99
refs/heads/master
2022-12-03T08:32:10.414160
2019-06-03T11:49:28
2019-06-03T11:49:28
173,759,460
0
0
null
2022-11-16T07:22:26
2019-03-04T14:23:44
JavaScript
UTF-8
Java
false
false
5,110
java
package com.dongzhi.hotel.web; import java.util.ArrayList; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Sort; import org.springframework.data.domain.Sort.Direction; 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.RequestParam; import org.springframework.web.bind.annotation.RestController; import com.dongzhi.hotel.pojo.OrderInfo; import com.dongzhi.hotel.pojo.PersonalInfo; import com.dongzhi.hotel.pojo.RegisterInfo; import com.dongzhi.hotel.service.OrderInfoService; import com.dongzhi.hotel.service.PersonalInfoService; import com.dongzhi.hotel.service.RegisterInfoService; import com.dongzhi.hotel.util.Page4Navigator; import com.dongzhi.hotel.util.Result; @RestController public class RegisterInfoController { @Autowired RegisterInfoService registerInfoService; @Autowired OrderInfoService orderInfoService; @Autowired PersonalInfoService personalInfoService; // @GetMapping("/registerinfos") // public Object list() throws Exception{ // List<RegisterInfo> beans = registerInfoService.list(); // return Result.success(beans); // } /** * @Description: 根据订单查询所有登记表 * @param: @param id * @param: @return * @param: @throws Exception * @return: Object */ @GetMapping("/orderinfos/{id}/registerinfos") public Object listByOrder(@PathVariable("id") int id) throws Exception{ OrderInfo orderInfo = orderInfoService.get(id); List<RegisterInfo> beans = registerInfoService.listByOrderInfo(orderInfo); return Result.success(beans); } /** * @Description: 增加登记表并关联订单id,修改主订单状态 * @param: @param id * @param: @param bean * @param: @return * @param: @throws Exception * @return: Object */ @PostMapping("/orderinfos/{id}/registerinfos") public Object add(@PathVariable("id") int id, @RequestBody RegisterInfo bean) throws Exception{ //获取相关订单信息 OrderInfo orderInfo = orderInfoService.get(id); bean.setOrderInfo(orderInfo); registerInfoService.add(bean); //修改订单状态为已登记 orderInfo.setStatus(orderInfoService.registered); orderInfoService.update(orderInfo); return Result.success(bean); } /** * @Description: 删除登记表并修改主订单状态 * @param: @param id * @param: @return * @param: @throws Exception * @return: Object */ @DeleteMapping("/registerinfos/{id}") public Object delete(@PathVariable("id") int id) throws Exception{ //获取删除登记表的从属订单信息 OrderInfo orderInfo = registerInfoService.get(id).getOrderInfo(); registerInfoService.delete(id); //判断此订单下是否还有登记表,没有则更新订单状态为未登记 List<RegisterInfo> beans = registerInfoService.listByOrderInfo(orderInfo); if(beans.isEmpty()) { orderInfo.setStatus(orderInfoService.unregister); orderInfoService.update(orderInfo); } return Result.success(""); } // @GetMapping("/registerinfos/{id}") // public Object get(@PathVariable("id") int id) throws Exception{ // RegisterInfo bean = registerInfoService.get(id); // return Result.success(bean); // } // // @PutMapping("/registerinfos") // public Object update(@RequestBody RegisterInfo bean) throws Exception{ // registerInfoService.update(bean); // return Result.success(bean); // } /** * @Description: 根据旅客id获取该旅客所有登记集合) * @param: @param personalId * @param: @param start * @param: @param size * @param: @return * @param: @throws Exception * @return: Object */ @GetMapping("/personalinfos/{id}/registerinfos") public Object listPersonal(@PathVariable("id") int id, @RequestParam(value = "start", defaultValue = "0") int start,@RequestParam(value = "size", defaultValue = "5") int size) throws Exception{ start = start<0?0:start; Page4Navigator<RegisterInfo> page = registerInfoService.listByPersonalInfo(id, start, size, 5); //初始化登记相关订单的消费和人数 List<RegisterInfo> registerInfos = page.getContent(); for(RegisterInfo registerInfo : registerInfos) { OrderInfo orderInfo = registerInfo.getOrderInfo(); orderInfoService.initConsumeByOrder(orderInfo); orderInfoService.initPeopleTotalByOrder(orderInfo); } return Result.success(page); } }
[ "Administrator@USER-20150420WI" ]
Administrator@USER-20150420WI
237524f103aef945d1d7cde669be2b2c4135daf6
ecfbccb581f4709c900d7ab245bff7da37cfd4db
/src/main/java/com/mysamples/ref/optym/vameork/validators/RulesValidator.java
1676d2dbe0b578392bd6d2b63dc545bfba037bd1
[]
no_license
jayaramanhari/testvalidators
6718a1c8cf1d377f4976f9d8139a05c93b259d07
cdd8c17973e857cb9aeb9911630b9237c4649915
refs/heads/master
2021-01-22T21:27:42.259669
2017-03-20T18:49:45
2017-03-20T18:49:45
85,431,850
0
0
null
null
null
null
UTF-8
Java
false
false
325
java
package com.mysamples.ref.optym.vameork.validators; import java.util.HashMap; import java.util.List; public interface RulesValidator { public HashMap<String, List<String>> isFileValid(String fileNametobeChecked); // public boolean isFormatValid(); // public boolean isTypeValid(); // public boolean allMiscValid(); }
[ "jayaramanhari@gmail.com" ]
jayaramanhari@gmail.com
5c59b9f68837b5375eb0736acb49c72396cf0130
25b95a082c3a3eb6f627d66578f46102713996b6
/zuihou-backend/zuihou-admin/zuihou-admin-server/src/main/java/com/github/zuihou/admin/impl/utils/dozer/DozerUtils.java
7a7c562eec19d1918cff70a83fa563a58bbba21f
[ "Apache-2.0" ]
permissive
uestczwj/zuihou-admin-cloud
29e4dbe13bfdd26edb5015df5269e5e1f2aec3be
3fd0dbbb7294e8a4eb0cecce36e69149a76a9547
refs/heads/master
2021-05-10T07:47:43.838139
2018-01-24T14:42:09
2018-01-24T14:42:09
118,856,358
1
0
null
2018-01-25T03:21:50
2018-01-25T03:21:50
null
UTF-8
Java
false
false
4,056
java
package com.github.zuihou.admin.impl.utils.dozer; import com.github.pagehelper.Page; import com.google.common.collect.Lists; import com.google.common.collect.Sets; import org.dozer.Mapper; import org.dozer.MappingException; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import java.util.Collection; import java.util.Collections; import java.util.List; import java.util.Set; import java.util.stream.Collectors; /** * 很诡异,DozerUtils 工具类不能以 xxMapper 结尾 * * @author zuihou * @createTime 2017-12-08 14:41 */ @Component public class DozerUtils { @Autowired private Mapper mapper; /** * Constructs new instance of destinationClass and performs mapping between from source * * @param source * @param destinationClass * @param <T> * @return * @throws MappingException */ public <T> T map(Object source, Class<T> destinationClass) { if (source == null) { return null; } return mapper.map(source, destinationClass); } /** * Performs mapping between source and destination objects * * @param source * @param destination * @throws MappingException */ public void map(Object source, Object destination) { if (source == null) { return; } mapper.map(source, destination); } /** * Constructs new instance of destinationClass and performs mapping between from source * * @param source * @param destinationClass * @param mapId * @param <T> * @return * @throws MappingException */ public <T> T map(Object source, Class<T> destinationClass, String mapId) { if (source == null) { return null; } return mapper.map(source, destinationClass, mapId); } /** * Performs mapping between source and destination objects * * @param source * @param destination * @param mapId * @throws MappingException */ public void map(Object source, Object destination, String mapId) { if (source == null) { return; } mapper.map(source, destination, mapId); } /** * 将集合转成集合 * List<A> --> List<B> * * @param sourceList 源集合 * @param destinationClass 待转类型 * @param <T> * @return */ public <T, E> List<T> mapList(Collection<E> sourceList, Class<T> destinationClass) { if (sourceList == null || sourceList.isEmpty() || destinationClass == null) { return Collections.emptyList(); } return sourceList.stream().map((sourceObject) -> mapper.map(sourceObject, destinationClass)).collect(Collectors.toList()); } public <T> List<T> mapPage(Collection sourceList, Class<T> destinationClass) { if (sourceList == null || sourceList.isEmpty() || destinationClass == null) { return Collections.emptyList(); } List destinationList = Lists.newArrayList(); for (Object sourceObject : sourceList) { Object destinationObject = mapper.map(sourceObject, destinationClass); destinationList.add(destinationObject); } if (sourceList instanceof Page) { Page sourcePage = (Page) sourceList; sourcePage.clear(); sourcePage.addAll(destinationList); return sourcePage; } return destinationList; } public <T> Set<T> mapSet(Collection sourceList, Class<T> destinationClass) { if (sourceList == null || sourceList.isEmpty() || destinationClass == null) { return Collections.emptySet(); } Set destinationList = Sets.newHashSet(); for (Object sourceObject : sourceList) { Object destinationObject = mapper.map(sourceObject, destinationClass); destinationList.add(destinationObject); } return destinationList; } }
[ "244387066@qq.com" ]
244387066@qq.com
eaf1fe55301dcffc3be139336f9c45f7754a4233
8df03e6d7001b07be2aae41da5dec395a6e1d512
/English.lproj/MainMenu.nib/_MainMenu_EOArchive_English.java
a6d0b1fabb043781112048c0ed577f429f42e647
[]
no_license
mlkunnath/WebPresenter
d184f344b7589993a352c5fc029c3c9821900d50
f21aa466e46beae7b25ebdc0a6e3d8580c24b8e1
refs/heads/master
2021-01-20T16:18:16.005647
2016-03-30T23:06:55
2016-03-30T23:06:55
44,416,829
0
0
null
2015-10-17T00:03:33
2015-10-17T00:03:32
Objective-C
UTF-8
Java
false
false
23,513
java
// _MainMenu_EOArchive_English.java // Generated by EnterpriseObjects palette at Tuesday, May 23, 2006 2:48:17 PM US/Eastern import com.webobjects.eoapplication.*; import com.webobjects.eocontrol.*; import com.webobjects.eointerface.*; import com.webobjects.eointerface.swing.*; import com.webobjects.eointerface.swing.EOTable._EOTableColumn; import com.webobjects.foundation.*; import java.awt.*; import javax.swing.*; import javax.swing.border.*; import javax.swing.table.*; import javax.swing.text.*; public class _MainMenu_EOArchive_English extends com.webobjects.eoapplication.EOArchive { ArrayController _arrayController0; MainController _mainController0; TransitionView _nsCustomView0; com.webobjects.eointerface.swing.EOFrame _eoFrame0, _eoFrame1; com.webobjects.eointerface.swing.EOMatrix _nsMatrix0, _nsMatrix1; com.webobjects.eointerface.swing.EOTable _nsTableView0; com.webobjects.eointerface.swing.EOTable._EOTableColumn _eoTableColumn0, _eoTableColumn1, _eoTableColumn2; com.webobjects.eointerface.swing.EOTextField _nsTextField0, _nsTextField1, _nsTextField2; com.webobjects.eointerface.swing.EOView _nsStepper0; com.webobjects.foundation.NSNumberFormatter _nsNumberFormatter0, _nsNumberFormatter1; javax.swing.JButton _jButton0, _jButton1, _jButton2, _jButton3; javax.swing.JCheckBox _jCheckBox0; javax.swing.JPanel _nsView0, _nsView1; public _MainMenu_EOArchive_English(Object owner, NSDisposableRegistry registry) { super(owner, registry); } protected void _construct() { Object owner = _owner(); EOArchive._ObjectInstantiationDelegate delegate = (owner instanceof EOArchive._ObjectInstantiationDelegate) ? (EOArchive._ObjectInstantiationDelegate)owner : null; Object replacement; super._construct(); _jCheckBox0 = (javax.swing.JCheckBox)_registered(new javax.swing.JCheckBox(""), ""); _nsNumberFormatter1 = (com.webobjects.foundation.NSNumberFormatter)_registered(new com.webobjects.foundation.NSNumberFormatter("0;-0"), ""); _nsNumberFormatter0 = (com.webobjects.foundation.NSNumberFormatter)_registered(new com.webobjects.foundation.NSNumberFormatter("0;-0"), ""); _nsTextField2 = (com.webobjects.eointerface.swing.EOTextField)_registered(new com.webobjects.eointerface.swing.EOTextField(), "NSTextField2"); _nsTextField1 = (com.webobjects.eointerface.swing.EOTextField)_registered(new com.webobjects.eointerface.swing.EOTextField(), "NSTextField21"); _nsStepper0 = (com.webobjects.eointerface.swing.EOView)_registered(new com.webobjects.eointerface.swing.EOView(), "NSCustomView"); _eoTableColumn2 = (com.webobjects.eointerface.swing.EOTable._EOTableColumn)_registered(new com.webobjects.eointerface.swing.EOTable._EOTableColumn(), ""); _eoTableColumn1 = (com.webobjects.eointerface.swing.EOTable._EOTableColumn)_registered(new com.webobjects.eointerface.swing.EOTable._EOTableColumn(), ""); _eoTableColumn0 = (com.webobjects.eointerface.swing.EOTable._EOTableColumn)_registered(new com.webobjects.eointerface.swing.EOTable._EOTableColumn(), ""); _nsTableView0 = (com.webobjects.eointerface.swing.EOTable)_registered(new com.webobjects.eointerface.swing.EOTable(), ""); _jButton3 = (javax.swing.JButton)_registered(new javax.swing.JButton("Stop"), ""); _jButton2 = (javax.swing.JButton)_registered(new javax.swing.JButton("Play"), ""); _nsMatrix1 = (com.webobjects.eointerface.swing.EOMatrix)_registered(new com.webobjects.eointerface.swing.EOMatrix(1, 2, 2, -3), ""); if ((delegate != null) && ((replacement = delegate.objectForOutletPath(this, "delegate.slideDelayTextField")) != null)) { _nsTextField0 = (replacement == EOArchive._ObjectInstantiationDelegate.NullObject) ? null : (com.webobjects.eointerface.swing.EOTextField)replacement; _replacedObjects.setObjectForKey(replacement, "_nsTextField0"); } else { _nsTextField0 = (com.webobjects.eointerface.swing.EOTextField)_registered(new com.webobjects.eointerface.swing.EOTextField(), "NSTextField"); } if ((delegate != null) && ((replacement = delegate.objectForOutletPath(this, "delegate.transitionView")) != null)) { _nsCustomView0 = (replacement == EOArchive._ObjectInstantiationDelegate.NullObject) ? null : (TransitionView)replacement; _replacedObjects.setObjectForKey(replacement, "_nsCustomView0"); } else { _nsCustomView0 = (TransitionView)_registered(new TransitionView(), "View"); } if ((delegate != null) && ((replacement = delegate.objectForOutletPath(this, "delegate.presentationWindow")) != null)) { _eoFrame1 = (replacement == EOArchive._ObjectInstantiationDelegate.NullObject) ? null : (com.webobjects.eointerface.swing.EOFrame)replacement; _replacedObjects.setObjectForKey(replacement, "_eoFrame1"); } else { _eoFrame1 = (com.webobjects.eointerface.swing.EOFrame)_registered(new com.webobjects.eointerface.swing.EOFrame(), "PresenterWindow"); } _nsView1 = (JPanel)_eoFrame1.getContentPane(); if ((delegate != null) && ((replacement = delegate.objectForOutletPath(this, "delegate")) != null)) { _mainController0 = (replacement == EOArchive._ObjectInstantiationDelegate.NullObject) ? null : (MainController)replacement; _replacedObjects.setObjectForKey(replacement, "_mainController0"); } else { _mainController0 = (MainController)_registered(new MainController(), "MainController"); } _jButton1 = (javax.swing.JButton)_registered(new javax.swing.JButton("Remove"), ""); if ((delegate != null) && ((replacement = delegate.objectForOutletPath(this, "delegate.mSlidesArrayController")) != null)) { _arrayController0 = (replacement == EOArchive._ObjectInstantiationDelegate.NullObject) ? null : (ArrayController)replacement; _replacedObjects.setObjectForKey(replacement, "_arrayController0"); } else { _arrayController0 = (ArrayController)_registered(new ArrayController(), "Slide Array Controller"); } _jButton0 = (javax.swing.JButton)_registered(new javax.swing.JButton("Add"), ""); _nsMatrix0 = (com.webobjects.eointerface.swing.EOMatrix)_registered(new com.webobjects.eointerface.swing.EOMatrix(1, 2, 2, -3), ""); if ((delegate != null) && ((replacement = delegate.objectForOutletPath(this, "delegate.configWindow")) != null)) { _eoFrame0 = (replacement == EOArchive._ObjectInstantiationDelegate.NullObject) ? null : (com.webobjects.eointerface.swing.EOFrame)replacement; _replacedObjects.setObjectForKey(replacement, "_eoFrame0"); } else { _eoFrame0 = (com.webobjects.eointerface.swing.EOFrame)_registered(new com.webobjects.eointerface.swing.EOFrame(), "ConfigWindow"); } _nsView0 = (JPanel)_eoFrame0.getContentPane(); } protected void _awaken() { super._awaken(); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_owner(), "unhideAllApplications", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_owner(), "hide", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_owner(), "hideOtherApplications", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_owner(), "orderFrontStandardAboutPanel", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_owner(), "terminate", ), "")); if (_replacedObjects.objectForKey("_mainController0") == null) { _connect(_owner(), _mainController0, "delegate"); } } protected void _init() { super._init(); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "showGuessPanel", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "performMiniaturize", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "copy", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "print", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "runPageLayout", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "showHelp", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "centerSelectionInVisibleArea", ), "")); _setFontForComponent(_jCheckBox0, "Lucida Grande", 12, Font.PLAIN); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "redo", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "performClose", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "performFindPanelAction", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "undo", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "selectAll", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "performFindPanelAction", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "arrangeInFront", ), "")); _nsNumberFormatter1.setAllowsFloats(false); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "delete", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "toggleContinuousSpellChecking", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "performFindPanelAction", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "cut", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "pasteAsPlainText", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "checkSpelling", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "performFindPanelAction", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "performZoom", ), "")); _nsNumberFormatter0.setMinimum(new java.math.BigDecimal("5")); _nsNumberFormatter0.setMaximum(new java.math.BigDecimal("30")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "paste", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(null, "clearRecentDocuments", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_eoFrame0, "makeKeyAndOrderFront", ), "")); _setFontForComponent(_nsTextField2, "Lucida Grande", 13, Font.PLAIN); _nsTextField2.setEditable(false); _nsTextField2.setOpaque(false); _nsTextField2.setText("seconds"); _nsTextField2.setHorizontalAlignment(javax.swing.JTextField.LEFT); _nsTextField2.setSelectable(false); _nsTextField2.setEnabled(true); _nsTextField2.setBorder(null); _setFontForComponent(_nsTextField1, "Lucida Grande", 13, Font.PLAIN); _nsTextField1.setEditable(false); _nsTextField1.setOpaque(false); _nsTextField1.setText("Play each slide for"); _nsTextField1.setHorizontalAlignment(javax.swing.JTextField.RIGHT); _nsTextField1.setSelectable(false); _nsTextField1.setEnabled(true); _nsTextField1.setBorder(null); _connect(_nsTableView0, _nsMatrix0, "nextFocusableComponent"); if (_replacedObjects.objectForKey("_eoFrame0") == null) { _connect(_eoFrame0, _mainController0, "delegate"); } .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_mainController0, "goFullScreen", ), "")); .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_mainController0, "saveAction", ), "")); _connect(_nsMatrix0, _nsTextField0, "nextFocusableComponent"); _nsStepper0.addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_nsTextField0, "takeIntValueFrom", _nsStepper0), "")); _nsTextField0.addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_nsStepper0, "takeIntValueFrom", _nsTextField0), "")); _eoTableColumn2.setMinWidth(46); _eoTableColumn2.setMaxWidth(46); _eoTableColumn2.setPreferredWidth(46); _eoTableColumn2.setWidth(46); _eoTableColumn2.setResizable(true); _eoTableColumn2.setHeaderValue("Enabled"); if ((_eoTableColumn2.getHeaderRenderer() != null)) { ((DefaultTableCellRenderer)(_eoTableColumn2.getHeaderRenderer())).setHorizontalAlignment(javax.swing.JTextField.LEFT); } _eoTableColumn1.setMinWidth(19); _eoTableColumn1.setMaxWidth(1000); _eoTableColumn1.setPreferredWidth(602); _eoTableColumn1.setWidth(602); _eoTableColumn1.setResizable(true); _eoTableColumn1.setHeaderValue("URL"); if ((_eoTableColumn1.getHeaderRenderer() != null)) { ((DefaultTableCellRenderer)(_eoTableColumn1.getHeaderRenderer())).setHorizontalAlignment(javax.swing.JTextField.LEFT); } _eoTableColumn0.setMinWidth(52); _eoTableColumn0.setMaxWidth(1000); _eoTableColumn0.setPreferredWidth(56); _eoTableColumn0.setWidth(56); _eoTableColumn0.setResizable(true); _eoTableColumn0.setHeaderValue("Identifier"); if ((_eoTableColumn0.getHeaderRenderer() != null)) { ((DefaultTableCellRenderer)(_eoTableColumn0.getHeaderRenderer())).setHorizontalAlignment(javax.swing.JTextField.LEFT); } _nsTableView0.table().addColumn(_eoTableColumn0); _nsTableView0.table().addColumn(_eoTableColumn1); _nsTableView0.table().addColumn(_eoTableColumn2); _setFontForComponent(_nsTableView0.table().getTableHeader(), "Lucida Grande", 11, Font.PLAIN); _nsTableView0.table().setRowHeight(20); _connect(_nsMatrix1, _nsTableView0, "nextFocusableComponent"); _jButton3.addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_mainController0, "stopPresentation", _jButton3), "")); _setFontForComponent(_jButton3, "Lucida Grande", 13, Font.PLAIN); _jButton3.setMargin(new Insets(0, 2, 0, 2)); _jButton2.addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_mainController0, "playPresentation", _jButton2), "")); _setFontForComponent(_jButton2, "Lucida Grande", 13, Font.PLAIN); _jButton2.setMargin(new Insets(0, 2, 0, 2)); _jButton2.setSize(50, 23); _jButton2.setLocation(0, 0); _nsMatrix1.add(_jButton2); _jButton3.setSize(50, 23); _jButton3.setLocation(52, 0); _nsMatrix1.add(_jButton3); if (_replacedObjects.objectForKey("_nsTextField0") == null) { _connect(_nsTextField0, _nsMatrix1, "nextFocusableComponent"); } if (_replacedObjects.objectForKey("_nsTextField0") == null) { _setFontForComponent(_nsTextField0, "Lucida Grande", 13, Font.PLAIN); _nsTextField0.setEditable(true); _nsTextField0.setOpaque(true); _nsTextField0.setText("5"); _nsTextField0.setHorizontalAlignment(javax.swing.JTextField.RIGHT); _nsTextField0.setSelectable(true); _nsTextField0.setEnabled(true); } if (_replacedObjects.objectForKey("_mainController0") == null) { _connect(_mainController0, _nsTextField0, "slideDelayTextField"); } .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_eoFrame1, "makeKeyAndOrderFront", ), "")); if (_replacedObjects.objectForKey("_eoFrame1") == null) { _connect(_eoFrame1, _mainController0, "delegate"); } if (_replacedObjects.objectForKey("_mainController0") == null) { _connect(_mainController0, _nsCustomView0, "transitionView"); } if (_replacedObjects.objectForKey("_nsCustomView0") == null) { _connect(_nsCustomView0, _mainController0, "controller"); } if (!(_nsView1.getLayout() instanceof EOViewLayout)) { _nsView1.setLayout(new EOViewLayout()); } _nsCustomView0.setSize(1067, 600); _nsCustomView0.setLocation(-7, -6); ((EOViewLayout)_nsView1.getLayout()).setAutosizingMask(_nsCustomView0, EOViewLayout.WidthSizable | EOViewLayout.HeightSizable); _nsView1.add(_nsCustomView0); if (_replacedObjects.objectForKey("_eoFrame1") == null) { _nsView1.setSize(1053, 588); _eoFrame1.setTitle("Web Presenter"); _eoFrame1.setLocation(13, 379); _eoFrame1.setSize(1053, 588); } if (_replacedObjects.objectForKey("_mainController0") == null) { _connect(_mainController0, _eoFrame1, "presentationWindow"); } if (_replacedObjects.objectForKey("_mainController0") == null) { _connect(_mainController0, _eoFrame0, "configWindow"); } if (_replacedObjects.objectForKey("_mainController0") == null) { _connect(_mainController0, _arrayController0, "mSlidesArrayController"); } .addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_arrayController0, "add", ), "")); _setFontForComponent(_jButton1, "Lucida Grande", 13, Font.PLAIN); _jButton1.setMargin(new Insets(0, 2, 0, 2)); _jButton1.addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_arrayController0, "remove", _jButton1), "")); _jButton0.addActionListener((com.webobjects.eointerface.swing.EOControlActionAdapter)_registered(new com.webobjects.eointerface.swing.EOControlActionAdapter(_arrayController0, "add", _jButton0), "")); _setFontForComponent(_jButton0, "Lucida Grande", 13, Font.PLAIN); _jButton0.setMargin(new Insets(0, 2, 0, 2)); _jButton0.setSize(62, 23); _jButton0.setLocation(0, 0); _nsMatrix0.add(_jButton0); _jButton1.setSize(62, 23); _jButton1.setLocation(64, 0); _nsMatrix0.add(_jButton1); if (!(_nsView0.getLayout() instanceof EOViewLayout)) { _nsView0.setLayout(new EOViewLayout()); } _nsMatrix0.setSize(126, 23); _nsMatrix0.setLocation(3, 246); ((EOViewLayout)_nsView0.getLayout()).setAutosizingMask(_nsMatrix0, EOViewLayout.MaxXMargin | EOViewLayout.MinYMargin); _nsView0.add(_nsMatrix0); _nsMatrix1.setSize(102, 23); _nsMatrix1.setLocation(621, 246); ((EOViewLayout)_nsView0.getLayout()).setAutosizingMask(_nsMatrix1, EOViewLayout.MinXMargin | EOViewLayout.MinYMargin); _nsView0.add(_nsMatrix1); _nsTextField0.setSize(27, 22); _nsTextField0.setLocation(512, 247); ((EOViewLayout)_nsView0.getLayout()).setAutosizingMask(_nsTextField0, EOViewLayout.MinYMargin); _nsView0.add(_nsTextField0); _nsTextField1.setSize(119, 17); _nsTextField1.setLocation(388, 250); ((EOViewLayout)_nsView0.getLayout()).setAutosizingMask(_nsTextField1, EOViewLayout.MinYMargin); _nsView0.add(_nsTextField1); _nsTextField2.setSize(56, 17); _nsTextField2.setLocation(561, 249); ((EOViewLayout)_nsView0.getLayout()).setAutosizingMask(_nsTextField2, EOViewLayout.MinYMargin); _nsView0.add(_nsTextField2); _nsTableView0.setSize(730, 235); _nsTableView0.setLocation(3, 4); ((EOViewLayout)_nsView0.getLayout()).setAutosizingMask(_nsTableView0, EOViewLayout.WidthSizable | EOViewLayout.HeightSizable); _nsView0.add(_nsTableView0); _nsStepper0.setSize(19, 27); _nsStepper0.setLocation(538, 245); ((EOViewLayout)_nsView0.getLayout()).setAutosizingMask(_nsStepper0, EOViewLayout.MinYMargin); _nsView0.add(_nsStepper0); if (_replacedObjects.objectForKey("_eoFrame0") == null) { _nsView0.setSize(736, 283); _eoFrame0.setTitle("Configuration"); _eoFrame0.setLocation(17, 677); _eoFrame0.setSize(736, 283); } } }
[ "robert4723@me.com" ]
robert4723@me.com
d74cf0bfe6608eedd903abae3431e4f82ffcf2bf
dab3303cfd25eb617e777c86423f1554a14b0ee2
/src/com/java21days/Calculator.java
6dc91665fd178734de4176d7a04939faeb9ac55d
[]
no_license
ebelfer2020/Java21
5fd87ef597784f8e376cf5adff158b5ad5aa9898
8d5f5fccbd0db8e5aeed77c34c93e99d5de8dab7
refs/heads/master
2022-12-22T10:43:14.192606
2020-09-30T23:08:06
2020-09-30T23:08:06
275,442,819
0
0
null
null
null
null
UTF-8
Java
false
false
1,820
java
package com.java21days; import java.awt.event.*; import javax.swing.*; import java.awt.*; public class Calculator extends JFrame implements FocusListener { JTextField value1, value2, sum; JLabel plus, equals; public Calculator() { super("Add Two Numbers"); setSize(350, 90); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); FlowLayout flow = new FlowLayout(FlowLayout.CENTER); setLayout(flow); // create components value1 = new JTextField("0", 5); plus = new JLabel("+"); value2 = new JTextField("0", 5); equals = new JLabel("="); sum = new JTextField("0", 5); // add listeners value1.addFocusListener(this); value2.addFocusListener(this); // set up sum field sum.setEditable(false); // add components add(value1); add(plus); add(value2); add(equals); add(sum); setVisible(true); } @Override public void focusGained(FocusEvent event) { try { float total = Float.parseFloat(value1.getText()) + Float.parseFloat(value2.getText()); sum.setText("" + total); } catch (NumberFormatException nfe) { value1.setText("0"); value2.setText("0"); sum.setText("0"); } } @Override public void focusLost(FocusEvent event) { focusGained(event); } private static void setLookAndFeel() { try { UIManager.setLookAndFeel( "javax.swing.plaf.nimbus.NimbusLookAndFeel" ); } catch (Exception exc) { System.err.println(exc); } } public static void main(String[] arguments) { Calculator.setLookAndFeel(); Calculator frame = new Calculator(); } }
[ "60272644+ebelfer2020@users.noreply.github.com" ]
60272644+ebelfer2020@users.noreply.github.com
810a74f7417f4b1c97a77153418e29251a0bf0a9
23a35fd52f95235fdda7a0c2045c9b3d6afe5619
/leetcodeSolution/src/BinaryTreeLevelOrderTraversalII.java
0797de41217264f882fd95371440a54314a18202
[]
no_license
sdulijie2008/myleetcode
70af62432b00fee54a5afce10cc50b29e2d7a923
3ac896353b8dd281adc1e33a31073e0ae24fe5f9
refs/heads/master
2020-12-25T17:37:13.631866
2016-08-08T00:49:45
2016-08-08T00:49:45
14,605,473
0
0
null
null
null
null
UTF-8
Java
false
false
1,341
java
import java.util.ArrayList; import java.util.Collections; import java.util.LinkedList; import java.util.Queue; public class BinaryTreeLevelOrderTraversalII { public ArrayList<ArrayList<Integer>> levelOrderBottom(TreeNode root) { // IMPORTANT: Please reset any member data you declared, as // the same Solution instance will be reused for each test case. ArrayList<ArrayList<Integer>> result = new ArrayList<ArrayList<Integer>>(); ArrayList<Integer> currentLevelValues = null; if (root == null) return result; Queue<TreeNode> currentLevel = new LinkedList<TreeNode>(); Queue<TreeNode> nextLevel = null; currentLevel.add(root); TreeNode currentNode = null; while (currentLevel.peek() != null) { currentLevelValues = new ArrayList<Integer>(); nextLevel = new LinkedList<TreeNode>(); while ((currentNode = currentLevel.poll()) != null) { currentLevelValues.add(currentNode.val); if (currentNode.left != null) nextLevel.add(currentNode.left); if (currentNode.right != null) nextLevel.add(currentNode.right); } result.add(currentLevelValues); currentLevel = nextLevel; } Collections.reverse(result); return result; } public class TreeNode { int val; TreeNode left; TreeNode right; TreeNode(int x) { val = x; } } }
[ "sdulijie2008@gmail.com" ]
sdulijie2008@gmail.com
63aeab685cd8f4b1d0c180ff3b25f147b8c5f3e2
b910ab013fa8ce483da2634e3cf8f11284ec35c8
/app/src/main/java/com/github/nekdenis/fragment/ResultFragment.java
6dd936cf3d4b6e045a546f1eaf9d4dc3f4aa7b8f
[]
no_license
nekdenis/Android-ColorDiff
40626c892718513f82a936c2c1e04f9a158411b6
e4f4fe5cefdddcd097038fe71d73b9ae80cc35ba
refs/heads/master
2016-09-06T20:01:47.591148
2014-03-10T09:34:21
2014-03-10T09:34:21
16,407,654
2
2
null
null
null
null
UTF-8
Java
false
false
4,365
java
package com.github.nekdenis.fragment; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.TextView; import com.androidplot.xy.*; import com.github.nekdenis.R; import com.github.nekdenis.activity.UserInfoActivity; import com.github.nekdenis.dto.ColorObj; import com.github.nekdenis.dto.ResultObj; import java.util.ArrayList; import java.util.List; /** * Fragments for showing results */ public class ResultFragment extends Fragment { public static final String EXTRA_RESULT_OBJECT = "EXTRA_RESULT_OBJECT"; private ResultObj resultObj; private TextView colorsText; private Button shareButton; private XYPlot leftPlot; private XYPlot rightPlot; public static ResultFragment newInstance(ResultObj resultObj) { ResultFragment fragment = new ResultFragment(); Bundle args = new Bundle(); args.putSerializable(EXTRA_RESULT_OBJECT, resultObj); fragment.setArguments(args); return fragment; } public ResultFragment() { } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); if (getArguments() != null) { resultObj = (ResultObj) getArguments().getSerializable(EXTRA_RESULT_OBJECT); } } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_result, container, false); colorsText = (TextView) view.findViewById(R.id.result_text); shareButton = (Button) view.findViewById(R.id.result_next_button); leftPlot = (XYPlot) view.findViewById(R.id.result_left_plot); rightPlot = (XYPlot) view.findViewById(R.id.result_right_plot); initPlot(); fillView(); initListeners(); return view; } private void initPlot() { List<Double> xs = new ArrayList<Double>(); List<Double> ys = new ArrayList<Double>(); for (ColorObj colorObj : resultObj.getModifiedColors()) { xs.add(colorObj.getA()); ys.add(colorObj.getB()); } //add first again for full cirle xs.add(xs.get(0)); ys.add(ys.get(0)); XYSeries series1 = new SimpleXYSeries(xs, ys, ""); LineAndPointFormatter series1Format = new LineAndPointFormatter(); series1Format.setPointLabelFormatter(new PointLabelFormatter()); series1Format.configure(getActivity(), R.xml.line_point_formatter_with_plf1); leftPlot.addSeries(series1, series1Format); leftPlot.setRangeLabel(""); leftPlot.setDomainLabel(""); leftPlot.setTitle(""); leftPlot.setTicksPerRangeLabel(3); leftPlot.getGraphWidget().setDomainLabelOrientation(-45); leftPlot.setDomainBoundaries(-128, 128, BoundaryMode.FIXED); leftPlot.setRangeBoundaries(-128, 128, BoundaryMode.FIXED); leftPlot.redraw(); rightPlot.addSeries(series1, series1Format); rightPlot.setRangeLabel(""); rightPlot.setDomainLabel(""); rightPlot.setTitle(""); rightPlot.setTicksPerRangeLabel(3); rightPlot.getGraphWidget().setDomainLabelOrientation(-45); rightPlot.redraw(); } @Override public void onViewCreated(View view, Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); } private void initListeners() { shareButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { onShare(); } }); } private void fillView() { StringBuilder sb = new StringBuilder(); sb.append("Original color: "); sb.append(resultObj.getOriginalColor().getLABString()).append("\n"); sb.append("Modified colors: "); for (ColorObj colorObj : resultObj.getModifiedColors()) { sb.append(colorObj.getLABString()).append("\n"); } colorsText.setText(sb.toString()); } private void onShare() { UserInfoActivity.startWithResultObject(getActivity(), resultObj); } }
[ "batman36@mail.ru" ]
batman36@mail.ru
641d4da9fb08f6b916b545b512f8aff7ce59959a
6629143df9feaed704b843276ea6044440d2f92a
/pyg_manage_web/src/main/java/com/pyg/manage/controller/LoginController.java
f94271219a0e7fe96397fd21e45c1769f5f8dcd0
[]
no_license
yeluoqiuping/pyg_parent
58d99f1a434eaf7a085647fb663e340916c772ad
3397bb6343d9577cdece271d867667683ca854dd
refs/heads/master
2020-04-11T18:21:41.970189
2018-12-17T00:44:28
2018-12-17T00:44:28
161,995,801
0
0
null
null
null
null
UTF-8
Java
false
false
669
java
package com.pyg.manage.controller; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.HashMap; import java.util.Map; /** * @author 获取登录用户名 * @date 2018/11/26 10:14 * @description */ @RestController public class LoginController { @RequestMapping("loginName") public Map loginName(){ Map map = new HashMap(); String username = SecurityContextHolder.getContext().getAuthentication().getName(); map.put("loginName",username); return map; } }
[ "2406347485@qq.com" ]
2406347485@qq.com
39a14f808c71b8e116f4e4539e4303700ebc4b2a
f0511b4bf683965112d406e97b781d78d4c5951a
/app/src/main/java/com/test/chuanyi/myapplication/TestActivity.java
1d1cb5a1509df0f57fbc8a0cdb09956d22d1dca1
[]
no_license
GodLike1113/App
1d919868a9f2daa5e13c52ad793cabac62c40513
9193e47ef80d2b4d0d7a141c08e3374908367ab7
refs/heads/master
2020-04-14T19:19:33.343438
2019-11-26T07:48:06
2019-11-26T07:48:06
164,053,508
0
0
null
null
null
null
UTF-8
Java
false
false
1,293
java
package com.test.chuanyi.myapplication; import android.app.Activity; import android.os.Bundle; import android.util.DisplayMetrics; import android.util.Log; /** * Author: zengfeng * Time : 2019/1/22 19:12 * Des : */ public class TestActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.test_activity_layout); DisplayMetrics metrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(metrics); int screenHeight = metrics.heightPixels;//屏幕高度像素 int screenWidth = metrics.widthPixels;//屏幕宽度像素 //density = densityDpi / 160 float density = metrics.density;// "屏幕密度"(0.75 / 1.0 / 1.5) int densityDpi = metrics.densityDpi;// 屏幕密度dpi(120 / 160 / 240)每一英寸的屏幕所包含的像素数.值越高的设备,其屏幕显示画面的效果也就越精细 // 屏幕宽度算法:屏幕宽度(像素)/"屏幕密度" px = dp * (dpi / 160) int height = (int) (screenHeight / density);//屏幕高度dp int width = (int) (screenWidth/density); Log.d("vivi","宽度dp:"+width+",高度dp:"+height); } }
[ "feng.zeng@transsnet.com" ]
feng.zeng@transsnet.com
6aafd062af755f643eb0556ef58d2b600e041fa8
ad95d90ab815abec30ed3bf74d3aacee09ea6e5e
/android/app/build/generated/not_namespaced_r_class_sources/debug/r/androidx/media/R.java
68e278fa0fe55c551f55b24eda1b84266b958285
[]
no_license
raduflorin95/react-native-features-app
f568de60afe8e0993532924300be74b218a1c5ba
0ea5d1c7f7cd528d3c22df323cfd022408840b06
refs/heads/main
2023-07-20T01:32:03.871764
2021-08-29T20:22:38
2021-08-29T20:22:38
318,559,734
0
0
null
null
null
null
UTF-8
Java
false
false
12,548
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package androidx.media; public final class R { private R() {} public static final class attr { private attr() {} public static final int alpha = 0x7f03002b; public static final int font = 0x7f03014b; public static final int fontProviderAuthority = 0x7f03014d; public static final int fontProviderCerts = 0x7f03014e; public static final int fontProviderFetchStrategy = 0x7f03014f; public static final int fontProviderFetchTimeout = 0x7f030150; public static final int fontProviderPackage = 0x7f030151; public static final int fontProviderQuery = 0x7f030152; public static final int fontStyle = 0x7f030153; public static final int fontVariationSettings = 0x7f030154; public static final int fontWeight = 0x7f030155; public static final int ttcIndex = 0x7f0302a6; } public static final class color { private color() {} public static final int notification_action_color_filter = 0x7f0500b1; public static final int notification_icon_bg_color = 0x7f0500b2; public static final int notification_material_background_media_default_color = 0x7f0500b3; public static final int primary_text_default_material_dark = 0x7f0500b8; public static final int ripple_material_light = 0x7f0500bd; public static final int secondary_text_default_material_dark = 0x7f0500be; public static final int secondary_text_default_material_light = 0x7f0500bf; } public static final class dimen { private dimen() {} public static final int compat_button_inset_horizontal_material = 0x7f060053; public static final int compat_button_inset_vertical_material = 0x7f060054; public static final int compat_button_padding_horizontal_material = 0x7f060055; public static final int compat_button_padding_vertical_material = 0x7f060056; public static final int compat_control_corner_material = 0x7f060057; public static final int compat_notification_large_icon_max_height = 0x7f060058; public static final int compat_notification_large_icon_max_width = 0x7f060059; public static final int notification_action_icon_size = 0x7f06012e; public static final int notification_action_text_size = 0x7f06012f; public static final int notification_big_circle_margin = 0x7f060130; public static final int notification_content_margin_start = 0x7f060131; public static final int notification_large_icon_height = 0x7f060132; public static final int notification_large_icon_width = 0x7f060133; public static final int notification_main_column_padding_top = 0x7f060134; public static final int notification_media_narrow_margin = 0x7f060135; public static final int notification_right_icon_size = 0x7f060136; public static final int notification_right_side_padding_top = 0x7f060137; public static final int notification_small_icon_background_padding = 0x7f060138; public static final int notification_small_icon_size_as_large = 0x7f060139; public static final int notification_subtext_size = 0x7f06013a; public static final int notification_top_pad = 0x7f06013b; public static final int notification_top_pad_large_text = 0x7f06013c; public static final int subtitle_corner_radius = 0x7f06013d; public static final int subtitle_outline_width = 0x7f06013e; public static final int subtitle_shadow_offset = 0x7f06013f; public static final int subtitle_shadow_radius = 0x7f060140; } public static final class drawable { private drawable() {} public static final int notification_action_background = 0x7f07009b; public static final int notification_bg = 0x7f07009c; public static final int notification_bg_low = 0x7f07009d; public static final int notification_bg_low_normal = 0x7f07009e; public static final int notification_bg_low_pressed = 0x7f07009f; public static final int notification_bg_normal = 0x7f0700a0; public static final int notification_bg_normal_pressed = 0x7f0700a1; public static final int notification_icon_background = 0x7f0700a2; public static final int notification_template_icon_bg = 0x7f0700a3; public static final int notification_template_icon_low_bg = 0x7f0700a4; public static final int notification_tile_bg = 0x7f0700a5; public static final int notify_panel_notification_icon_bg = 0x7f0700a6; } public static final class id { private id() {} public static final int action0 = 0x7f080034; public static final int action_container = 0x7f08003c; public static final int action_divider = 0x7f08003e; public static final int action_image = 0x7f08003f; public static final int action_text = 0x7f080045; public static final int actions = 0x7f080046; public static final int async = 0x7f08004f; public static final int blocking = 0x7f080052; public static final int cancel_action = 0x7f080055; public static final int chronometer = 0x7f080061; public static final int end_padder = 0x7f080083; public static final int forever = 0x7f080099; public static final int icon = 0x7f0800a4; public static final int icon_group = 0x7f0800a5; public static final int info = 0x7f0800a9; public static final int italic = 0x7f0800aa; public static final int line1 = 0x7f0800b0; public static final int line3 = 0x7f0800b1; public static final int media_actions = 0x7f0800b5; public static final int normal = 0x7f0800d8; public static final int notification_background = 0x7f0800d9; public static final int notification_main_column = 0x7f0800da; public static final int notification_main_column_container = 0x7f0800db; public static final int right_icon = 0x7f0800ed; public static final int right_side = 0x7f0800ee; public static final int status_bar_latest_event_content = 0x7f080121; public static final int tag_transition_group = 0x7f08012b; public static final int tag_unhandled_key_event_manager = 0x7f08012c; public static final int tag_unhandled_key_listeners = 0x7f08012d; public static final int text = 0x7f080131; public static final int text2 = 0x7f080132; public static final int time = 0x7f08013c; public static final int title = 0x7f08013d; } public static final class integer { private integer() {} public static final int cancel_button_image_alpha = 0x7f090004; public static final int status_bar_notification_info_maxnum = 0x7f090017; } public static final class layout { private layout() {} public static final int notification_action = 0x7f0b004f; public static final int notification_action_tombstone = 0x7f0b0050; public static final int notification_media_action = 0x7f0b0051; public static final int notification_media_cancel_action = 0x7f0b0052; public static final int notification_template_big_media = 0x7f0b0053; public static final int notification_template_big_media_custom = 0x7f0b0054; public static final int notification_template_big_media_narrow = 0x7f0b0055; public static final int notification_template_big_media_narrow_custom = 0x7f0b0056; public static final int notification_template_custom_big = 0x7f0b0057; public static final int notification_template_icon_group = 0x7f0b0058; public static final int notification_template_lines_media = 0x7f0b0059; public static final int notification_template_media = 0x7f0b005a; public static final int notification_template_media_custom = 0x7f0b005b; public static final int notification_template_part_chronometer = 0x7f0b005c; public static final int notification_template_part_time = 0x7f0b005d; } public static final class string { private string() {} public static final int status_bar_notification_info_overflow = 0x7f10009e; } public static final class style { private style() {} public static final int TextAppearance_Compat_Notification = 0x7f110161; public static final int TextAppearance_Compat_Notification_Info = 0x7f110162; public static final int TextAppearance_Compat_Notification_Info_Media = 0x7f110163; public static final int TextAppearance_Compat_Notification_Line2 = 0x7f110164; public static final int TextAppearance_Compat_Notification_Line2_Media = 0x7f110165; public static final int TextAppearance_Compat_Notification_Media = 0x7f110166; public static final int TextAppearance_Compat_Notification_Time = 0x7f110167; public static final int TextAppearance_Compat_Notification_Time_Media = 0x7f110168; public static final int TextAppearance_Compat_Notification_Title = 0x7f110169; public static final int TextAppearance_Compat_Notification_Title_Media = 0x7f11016a; public static final int Widget_Compat_NotificationActionContainer = 0x7f110251; public static final int Widget_Compat_NotificationActionText = 0x7f110252; } public static final class styleable { private styleable() {} public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f03002b }; public static final int ColorStateListItem_android_color = 0; public static final int ColorStateListItem_android_alpha = 1; public static final int ColorStateListItem_alpha = 2; public static final int[] FontFamily = { 0x7f03014d, 0x7f03014e, 0x7f03014f, 0x7f030150, 0x7f030151, 0x7f030152 }; public static final int FontFamily_fontProviderAuthority = 0; public static final int FontFamily_fontProviderCerts = 1; public static final int FontFamily_fontProviderFetchStrategy = 2; public static final int FontFamily_fontProviderFetchTimeout = 3; public static final int FontFamily_fontProviderPackage = 4; public static final int FontFamily_fontProviderQuery = 5; public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f03014b, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f0302a6 }; public static final int FontFamilyFont_android_font = 0; public static final int FontFamilyFont_android_fontWeight = 1; public static final int FontFamilyFont_android_fontStyle = 2; public static final int FontFamilyFont_android_ttcIndex = 3; public static final int FontFamilyFont_android_fontVariationSettings = 4; public static final int FontFamilyFont_font = 5; public static final int FontFamilyFont_fontStyle = 6; public static final int FontFamilyFont_fontVariationSettings = 7; public static final int FontFamilyFont_fontWeight = 8; public static final int FontFamilyFont_ttcIndex = 9; public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; public static final int GradientColor_android_startColor = 0; public static final int GradientColor_android_endColor = 1; public static final int GradientColor_android_type = 2; public static final int GradientColor_android_centerX = 3; public static final int GradientColor_android_centerY = 4; public static final int GradientColor_android_gradientRadius = 5; public static final int GradientColor_android_tileMode = 6; public static final int GradientColor_android_centerColor = 7; public static final int GradientColor_android_startX = 8; public static final int GradientColor_android_startY = 9; public static final int GradientColor_android_endX = 10; public static final int GradientColor_android_endY = 11; public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; public static final int GradientColorItem_android_color = 0; public static final int GradientColorItem_android_offset = 1; } }
[ "raduflorin95@MacBook-Air-Radu.local" ]
raduflorin95@MacBook-Air-Radu.local
fc51f0d4f1db1dfa1d664eade7a295ef01fdd97d
428be08e07038e1a7f22b125bd3c402b2ea9e7ef
/src/Compiler.java
11c278c793fed3a16fa7d4710608aa54215b85d9
[]
no_license
HenriqueRocha/LetsBuildACompiler
a5471cb7459c8330d1892577f0d4bec2a5d69bc7
659c2a667ccc9a002f5895fcf09343bba36a0fb8
refs/heads/master
2020-07-25T07:52:59.113025
2019-09-13T08:06:01
2019-09-13T08:06:11
208,221,490
0
0
null
null
null
null
UTF-8
Java
false
false
834
java
import java.io.IOException; public class Compiler { private static char lookahead; public static void main(String[] args) throws IOException { lookahead = (char) System.in.read(); try { expression(); } catch (ParseException e) { System.err.println(e.getMessage()); } } private static void expression() throws IOException, ParseException { System.out.println("mov $" + getNum() + ", %eax"); } private static char getNum() throws IOException, ParseException { if (!Character.isDigit(lookahead)) { throw new ParseException("Integer expected"); } return lookahead; } static class ParseException extends Exception { ParseException(String reason) { super(reason); } } }
[ "hmrocha@gmail.com" ]
hmrocha@gmail.com
0f7ac59714540107c808e579fad87ab34f8a5ea5
e08b2e31d47e5e069fbd18af1e1df25baa9f92ce
/Projects/PatternChecker.java
1245a66b5f0f48bfb07275e6b0ee4f7f1f6171e1
[]
no_license
lringleka/PRO180
5331d88f94b5f44d41e6e55dc9e7fb9117187f7a
247fb6062412cd621b5fb8edaf1ccfb1676e0841
refs/heads/master
2021-01-21T22:26:59.854292
2014-06-12T16:18:17
2014-06-12T16:18:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,309
java
package Projects; import java.util.regex.Matcher; import java.util.regex.Pattern; public class PatternChecker { private static final Pattern pattern1 = Pattern .compile("([KQNRBP])([ld])([a-h])([1-8])"); private static final Pattern pattern2 = Pattern .compile("([a-h])([1-8]) ([a-h])([1-8])"); private static final Pattern pattern3 = Pattern .compile("([a-h])([1-8]) ([a-h])([1-8])[*]"); private static final Pattern pattern4 = Pattern .compile("([a-h])([1-8]) ([a-h])([1-8]) ([a-h])([1-8]) ([a-h])([1-8])"); Matcher lastMatch; public boolean checkPlace(String line){ Matcher matchPlace = pattern1.matcher(line); if(matchPlace.find()){ lastMatch = matchPlace; return true; } return false; } public boolean checkMove(String line){ Matcher matchMove = pattern2.matcher(line); if(matchMove.find()){ lastMatch = matchMove; return true; } return false; } public boolean checkTake(String line){ Matcher matchTake = pattern3.matcher(line); if(matchTake.find()){ lastMatch = matchTake; return true; } return false; } public boolean checkDubMove(String line){ Matcher matchDubMove = pattern4.matcher(line); if(matchDubMove.find()){ lastMatch = matchDubMove; return true; } return false; } public String getGroup(int group){ return lastMatch.group(group); } }
[ "leviringleka@gmail.com" ]
leviringleka@gmail.com
eb97fde438a246ec6a73bee691112d796f47be04
ad583d3f2eaba1f7e0c753c4084bc2bb4b9e2150
/src/com/tarkiflettes/main/Crystal.java
9cfb8443c853aaf3ccf83f50a266d06b958d81a6
[ "MIT" ]
permissive
Tarkiflettes/TarkiReflect
ee1f507d26c8129d3289468044dfeb0d78f8d1d3
a4808d6556cfb2181523f65f0fea5705893b53bb
refs/heads/master
2021-01-10T15:09:08.211938
2018-09-21T16:05:03
2018-09-21T16:11:09
50,242,478
0
0
null
null
null
null
UTF-8
Java
false
false
1,264
java
package com.tarkiflettes.main; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Polygon; import java.awt.geom.Point2D; import com.tarkiflettes.game.Game; public class Crystal extends Element { private LaserColor color; private boolean isActive = false; public Crystal(int x, int y, int defaultAngle, LaserColor color) { super(x, y, new Polygon(new int[]{x * 32 + 6, x * 32 + 26, x * 32 + 26, x * 32 + 6}, new int[]{y * 32 + 6, y * 32 + 6, y * 32 + 26, y * 32 + 26}, 4), defaultAngle); this.color = color; } @Override public void handleLaser(Laser laser, Line line, Point2D.Double point) { if(color == laser.getLaserColor()) { isActive = true; } } public LaserColor getColor() { return color; } @Override public void draw(Graphics g) { g.setColor(LaserColor.getColor(color)); g.fillPolygon(getPolygon()); Graphics2D g2d = (Graphics2D) g; g2d.rotate(Math.toRadians(getRotation()), getX() * 32 + 16, getY() * 32 + 16); g.drawImage(Game.hexagon, getX() * 32, getY() * 32, null); g2d.rotate(-Math.toRadians(getRotation()), getX() * 32 + 16, getY() * 32 + 16); } public boolean isActive() { return isActive; } public void setActive(boolean isActive) { this.isActive = isActive; } }
[ "lionel.jouin@outlook.com" ]
lionel.jouin@outlook.com
2dbda3d1589b25885779fec08089716370ec93b6
ca4ef52553d871898a88dccdaf5e42220d8d70c8
/src/main/java/com/controller/ZY_waitController.java
76bd5c0f5d0e2a325e45c18950106e7020667a3b
[]
no_license
wxwhowever/Outpatient
f4460d85e04b9d8784f52716749e3e3ced011225
559b6d46e87f00e694d1daa5aec6200670463d1d
refs/heads/master
2021-09-09T22:29:12.598508
2018-03-20T01:56:46
2018-03-20T01:56:46
118,853,589
0
2
null
null
null
null
UTF-8
Java
false
false
2,498
java
package com.controller; import com.biz.ZY_waitBiz; import com.entity.ZY_wait; import com.fasterxml.jackson.databind.ObjectMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import javax.servlet.http.HttpServletRequest; import java.io.IOException; import java.util.Map; @Controller public class ZY_waitController { @Autowired ZY_waitBiz zy_waitBiz; @ResponseBody @RequestMapping("queryMap-zy_wait") public Map<String,Object> queryMap(HttpServletRequest request){ String search = request.getParameter("search"); String page = request.getParameter("page"); String count = request.getParameter("count"); String sql = ""; int begin = 0; int end = 5; if(page != null && page != ""){ begin = (Integer.parseInt(page)-1)*end; } if(search != null && search != ""){ sql = search; } if(count != null && count!= ""){ end = Integer.parseInt(count); } Map<String,Object> map = zy_waitBiz.queryMap(sql,begin, end); return map; } @ResponseBody @RequestMapping("queryById-zy_wait") public ZY_wait queryById(HttpServletRequest request){ ZY_wait zy_wait = zy_waitBiz.queryById(Integer.parseInt(request.getParameter("id"))); return zy_wait; } @ResponseBody @RequestMapping("updateZy_wait") public String update(HttpServletRequest request) throws IOException { // 候诊ID int waitId = Integer.parseInt(request.getParameter("waitId")); // 选择调整的等级 String level = request.getParameter("level"); String result = ""; // 根据得到 id 调整队列,设置优先级 ZY_wait zy_wait = zy_waitBiz.queryById(waitId); zy_wait.setLevel(level); boolean update = zy_waitBiz.update(zy_wait); if(update) { result = "success"; } return result; } @ResponseBody @RequestMapping("deleteZy_wait") public String delete(HttpServletRequest request) throws IOException { String result = ""; boolean delete = zy_waitBiz.delete(Integer.parseInt(request.getParameter("id"))); if(delete) { result = "success"; } return result; } }
[ "1799197002@qq.com" ]
1799197002@qq.com
cdbe0738535c170177eb32c26ef6407385df9b11
f920408af229f34f55c622ed059c31c0aa23657c
/pyg_parent/interface/src/main/java/cn/itcast/core/service/SellerService.java
910577dce24c29b5999fcfa6b8f49b6b1c8c12cb
[]
no_license
w821079448/pyg
b44f1a9e6cfc3166c1ea5cb9c273a2d268bbe1d8
3569b05875e518c51f665876e7d413be85155cfa
refs/heads/master
2022-12-23T19:23:44.698922
2019-11-07T07:45:35
2019-11-07T07:45:35
219,627,324
0
0
null
2022-12-16T07:15:51
2019-11-05T01:03:42
JavaScript
UTF-8
Java
false
false
341
java
package cn.itcast.core.service; import cn.itcast.core.pojo.entity.PageResult; import cn.itcast.core.pojo.seller.Seller; public interface SellerService { void add(Seller seller); PageResult search(Seller seller, Integer page, Integer rows); Seller findOne(String id); void updateStatus(String sellerId, String status); }
[ "821079448@qq.com" ]
821079448@qq.com
fb2162313de6fdf6532547502288ca0d6401b790
d125d66b96996a62a9ca8f7546eb80534fc30cdc
/jps/model-api/src/org/jetbrains/jps/model/java/JpsJavaExtensionService.java
6609a760c49e2b6f5439d0953171c81aa4c755e6
[ "Apache-2.0" ]
permissive
bolinfest/intellij-community
a39664fc138def4db31fdadf658edca2dea40ad7
c700754a823a50af192fce509e5cb51ffcccbd61
refs/heads/master
2020-12-25T17:05:46.117944
2012-08-13T14:37:12
2012-08-13T15:55:25
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,486
java
package org.jetbrains.jps.model.java; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import org.jetbrains.jps.model.JpsProject; import org.jetbrains.jps.model.module.JpsDependencyElement; import org.jetbrains.jps.model.module.JpsModule; import org.jetbrains.jps.model.module.JpsModuleReference; import org.jetbrains.jps.service.JpsServiceManager; import java.util.List; /** * @author nik */ public abstract class JpsJavaExtensionService { @NotNull public abstract JpsProductionModuleOutputPackagingElement createProductionModuleOutput(@NotNull JpsModuleReference moduleReference); @NotNull public abstract JpsTestModuleOutputPackagingElement createTestModuleOutput(@NotNull JpsModuleReference moduleReference); public static JpsJavaExtensionService getInstance() { return JpsServiceManager.getInstance().getService(JpsJavaExtensionService.class); } public static JpsJavaDependenciesEnumerator dependencies(JpsModule module) { return getInstance().enumerateDependencies(module); } protected abstract JpsJavaDependenciesEnumerator enumerateDependencies(JpsModule module); @NotNull public abstract JpsJavaProjectExtension getOrCreateProjectExtension(@NotNull JpsProject project); @Nullable public abstract JpsJavaProjectExtension getProjectExtension(@NotNull JpsProject project); @NotNull public abstract JpsJavaModuleExtension getOrCreateModuleExtension(@NotNull JpsModule module); @Nullable public abstract JpsJavaModuleExtension getModuleExtension(@NotNull JpsModule module); @NotNull public abstract JpsJavaDependencyExtension getOrCreateDependencyExtension(@NotNull JpsDependencyElement dependency); @Nullable public abstract JpsJavaDependencyExtension getDependencyExtension(@NotNull JpsDependencyElement dependency); @Nullable public abstract ExplodedDirectoryModuleExtension getExplodedDirectoryExtension(@NotNull JpsModule module); @NotNull public abstract ExplodedDirectoryModuleExtension getOrCreateExplodedDirectoryExtension(@NotNull JpsModule module); @NotNull public abstract List<JpsDependencyElement> getDependencies(JpsModule module, JpsJavaClasspathKind classpathKind, boolean exportedOnly); @Nullable public abstract LanguageLevel getLanguageLevel(JpsModule module); @Nullable public abstract String getOutputUrl(JpsModule module, boolean forTests); @Nullable public abstract String getSourcePrefix(JpsModule module, String rootUrl); }
[ "Nikolay.Chashnikov@jetbrains.com" ]
Nikolay.Chashnikov@jetbrains.com
84175c722232c670b6c2a629971ab85b06eefb3d
dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9
/data_defect4j/preprossed_method_corpus/Math/56/org/apache/commons/math/transform/FastSineTransformer_transform_82.java
1b71e5e867f0172d782569ecefe46be110ec07b8
[]
no_license
hvdthong/NetML
dca6cf4d34c5799b400d718e0a6cd2e0b167297d
9bb103da21327912e5a29cbf9be9ff4d058731a5
refs/heads/master
2021-06-30T15:03:52.618255
2020-10-07T01:58:48
2020-10-07T01:58:48
150,383,588
1
1
null
2018-09-26T07:08:45
2018-09-26T07:08:44
null
UTF-8
Java
false
false
1,265
java
org apach common math transform implement href http document wolfram add on link onslink standard packag standardpackag linear algebra linearalgebra fourier trig fouriertrig html fast sine transform transform dimension data set refer fast fourier transform isbn chapter fst invers multipli depend convent equat list comment method similar fft requir length data set power addit element enforc function transform sampl version longer serializ version revis date fast sine transform fastsinetransform real transform realtransform transform real function sampl interv formula sum sin param function sampl transform param min lower bound interv param max upper bound interv param number sampl point real transform arrai math user except mathuserexcept function evalu point illeg argument except illegalargumentexcept paramet invalid transform univari real function univariaterealfunct min max math user except mathuserexcept illeg argument except illegalargumentexcept data fast fourier transform fastfouriertransform sampl min max data fst data
[ "hvdthong@gmail.com" ]
hvdthong@gmail.com
438c1d094bf3cffc549949151cfc927fea15b0c1
c4fe097fda72300b27665e732d841f7ea546779f
/src/main/java/pl/mycalories/model/Role.java
b03f3bcedfe817cefc0787541a395f317bdb00a4
[ "MIT" ]
permissive
BartoszDabek/MyCalories
0d8bb94cfbf319ebdc578e915a2c0eb45e213c60
e3a32de73f8541adc857c07be74f226343446cdf
refs/heads/master
2022-12-12T07:38:29.601505
2019-12-16T20:49:10
2019-12-19T19:56:45
102,086,100
0
0
MIT
2022-12-11T17:51:16
2017-09-01T07:29:18
Java
UTF-8
Java
false
false
964
java
package pl.mycalories.model; import javax.persistence.Entity; import javax.persistence.SequenceGenerator; @Entity @SequenceGenerator(name = "idgen", sequenceName = "roles_id_seq", allocationSize = 1) public class Role extends AbstractModel { private String roleName; public String getRoleName() { return roleName; } public void setRoleName(String roleName) { this.roleName = roleName; } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof Role)) return false; if (!super.equals(o)) return false; Role role = (Role) o; return roleName != null ? roleName.equals(role.roleName) : role.roleName == null; } @Override public int hashCode() { int result = super.hashCode(); result = 31 * result + (roleName != null ? roleName.hashCode() : 0); return result; } }
[ "bartek50600@wp.pl" ]
bartek50600@wp.pl
b5b1c908121c5dcf1996292beb553647f53b3c70
657d31d0320df68140619a9b506f4e841ca0c3ec
/src/java/com/thinkgem/jeesite/modules/msa/service/MyTask.java
5a0caaeb1bffc8ce9d03664ce026413612ed849f
[ "MIT" ]
permissive
wingcarl/zjgmsa
fb167a0ef375bd8b0283986ae6583368afcf5270
caf1970658753f32832809b2172de13623fff8df
refs/heads/master
2021-05-13T17:36:11.228204
2018-01-26T08:55:50
2018-01-26T08:55:50
116,826,475
1
0
null
null
null
null
UTF-8
Java
false
false
1,453
java
package com.thinkgem.jeesite.modules.msa.service; import java.util.HashMap; import java.util.Map; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; import us.codecraft.webmagic.Request; import us.codecraft.webmagic.Spider; import us.codecraft.webmagic.utils.HttpConstant; @Component public class MyTask { //@Scheduled(cron="0 15 * * * ? ") @Scheduled(cron="0 0 9,14,16,18 * * ? ") public void taskCycle(){ //cron="06 29 10,11,13,17 * * ? " //System.out.println("hello-world ,my scrapy happy new year!"); /*for(int i=8;i<24;i++){ Spider.create(new Crawel()).addUrl("http://198.17.64.9/zjghsjnw/Pages/showinfo/Moreinfo.aspx?categorynum=001001&page="+i).thread(5).run(); }*/ Spider.create(new Crawel()).addUrl("http://198.17.64.9/zjghsjnw/Pages/showinfo/Moreinfo.aspx?categorynum=001001").thread(5).run(); //Spider.create(new Crawel()).addUrl("http://198.17.64.9/zjghsjnw/Pages/showinfo/Moreinfo.aspx?categorynum=001001").thread(5).run(); //0 0 9,11,15,17 * * ? //System.out.println("start"); //Request request = new Request("http://shipping.js-msa.gov.cn/loginAction.do;jsessionid=vfb6xifdh5xhEBAgBQ"); //request.setMethod(HttpConstant.Method.POST); //Map<String,Object> nameValuePair = new HashMap<String,Object>(); //NameValuePair[] values = new NameValue //request.s //Spider.create(new CrawelOfJsweb()).addRequest(request).thread(5).run(); } }
[ "191131600@qq.com" ]
191131600@qq.com
c67af6c8af488b1fb143e7672dc8ea7afe141ea2
05742a5e6a42df13fa7f04e260611387dcb082cd
/katalogfilm/app/src/main/java/com/madukubah/katalogfilm2/view/activity/setting/SettingsActivity.java
b52504b14a5f2c3c76fb24f5cfea8082296c2ae4
[]
no_license
madukubah/dicoding
498260e64507cbc9037bffe10097021e9a1197e3
335c27c653785d7ac74002e35c872a7bf356d8e3
refs/heads/master
2020-04-27T20:14:27.863645
2019-03-09T05:06:54
2019-03-09T05:06:54
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,245
java
package com.madukubah.katalogfilm2.view.activity.setting; import android.annotation.SuppressLint; import android.content.Intent; import android.content.SharedPreferences; import android.preference.Preference; import android.preference.PreferenceFragment; import android.provider.Settings; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Switch; import android.widget.Toast; import com.madukubah.katalogfilm2.R; import com.madukubah.katalogfilm2.service.AlarmReceiver; import com.madukubah.katalogfilm2.service.SchedulerTask; import butterknife.BindString; import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnCheckedChanged; import butterknife.OnClick; public class SettingsActivity extends AppCompatActivity { private AlarmReceiver alarmReceiver = new AlarmReceiver(); private SchedulerTask schedulerTask; public static final String KEY_HEADER_UPCOMING_REMINDER = "upcomingReminder"; public static final String KEY_HEADER_DAILY_REMINDER = "dailyReminder"; public static final String KEY_FIELD_UPCOMING_REMINDER = "checkedUpcoming"; public static final String KEY_FIELD_DAILY_REMINDER = "checkedDaily"; @BindView(R.id.daily_reminder) Switch dailyReminder; @BindView(R.id.release_Reminder) Switch releaseReminder; public SharedPreferences sReleaseReminder, sDailyReminder; public SharedPreferences.Editor editorReleaseReminder, editorDailyReminder; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_settings); ButterKnife.bind(this); getSupportActionBar().setTitle(R.string.action_settings); schedulerTask = new SchedulerTask( this ); setPreference(); } // @OnClick(R.id.local_setting) // public void onViewClicked(View view) { // Intent mIntent = new Intent(Settings.ACTION_LOCALE_SETTINGS); // startActivity(mIntent); // } @OnCheckedChanged(R.id.daily_reminder) public void setDailyReminder(boolean isChecked) { editorDailyReminder = sDailyReminder.edit(); if (isChecked) { editorDailyReminder.putBoolean(KEY_FIELD_DAILY_REMINDER, true); editorDailyReminder.commit(); alarmReceiver.setRepeatingAlarm(this, alarmReceiver.TYPE_REPEATING, "07:00", getString(R.string.label_alarm_daily_reminder)); } else { editorDailyReminder.putBoolean(KEY_FIELD_DAILY_REMINDER, false); editorDailyReminder.commit(); alarmReceiver.cancelAlarm(this, alarmReceiver.TYPE_REPEATING); } Toast.makeText(SettingsActivity.this, getString(R.string.label_daily_reminder) + " " + (isChecked ? getString(R.string.label_activated) : getString(R.string.label_deactivated)), Toast.LENGTH_SHORT).show(); } @OnCheckedChanged(R.id.release_Reminder) public void setReleaseReminder(boolean isChecked) { editorReleaseReminder = sReleaseReminder.edit(); if (isChecked) { editorReleaseReminder.putBoolean(KEY_FIELD_UPCOMING_REMINDER, true); editorReleaseReminder.commit(); schedulerTask.createPeriodicTask(); } else { editorReleaseReminder.putBoolean(KEY_FIELD_UPCOMING_REMINDER, false); editorReleaseReminder.commit(); schedulerTask.cancelPeriodicTask(); } Toast.makeText(SettingsActivity.this, getString(R.string.label_upcoming_reminder) + " " + (isChecked ? getString(R.string.label_activated) : getString(R.string.label_deactivated)), Toast.LENGTH_SHORT).show(); } private void setPreference() { sReleaseReminder = getSharedPreferences(KEY_HEADER_UPCOMING_REMINDER, MODE_PRIVATE); sDailyReminder = getSharedPreferences(KEY_HEADER_DAILY_REMINDER, MODE_PRIVATE); boolean checkUpcomingReminder = sReleaseReminder.getBoolean(KEY_FIELD_UPCOMING_REMINDER, false); releaseReminder.setChecked(checkUpcomingReminder); boolean checkDailyReminder = sDailyReminder.getBoolean(KEY_FIELD_DAILY_REMINDER, false); dailyReminder.setChecked(checkDailyReminder); } }
[ "muhalfalah1998@gmail.com.com" ]
muhalfalah1998@gmail.com.com
a92d2c699bbb5b142b5886f18d450e701884548d
02882692cd711f1cb796d9d695a60b04313d4043
/src/main/java/tv/amwa/maj/model/DescriptiveMarker.java
36438e2b7f190f285c6496a2d8b2587c29cba978
[ "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
AMWA-TV/maj
ca6bfb6a1d207129f5b6ad3105d68b235eeb7bb6
899715f25e7e736aa42523e4ad8068ea1698e0dd
refs/heads/master
2022-08-07T20:00:46.572062
2016-02-23T15:18:38
2016-02-23T15:18:38
51,018,227
18
16
Apache-2.0
2021-11-10T10:30:32
2016-02-03T17:45:14
HTML
UTF-8
Java
false
false
11,749
java
/* * Copyright 2016 Richard Cartwright * * 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. */ /* * $Log: DescriptiveMarker.java,v $ * Revision 1.3 2011/10/05 17:14:27 vizigoth * Added support for application metadata plugins, package markers and dynamic metadictionary extraction from AAF files. * * Revision 1.2 2011/01/13 17:44:26 vizigoth * Major refactor of the industrial area and improved front-end documentation. * * Revision 1.1 2011/01/04 10:39:02 vizigoth * Refactor all package names to simpler forms more consistent with typical Java usage. * * Revision 1.6 2009/05/14 16:15:13 vizigoth * Major refactor to remove dependency on JPA and introduce better interface and implementation separation. Removed all setPropertiesFromInterface and castFromInterface methods. * * Revision 1.5 2009/03/30 09:04:50 vizigoth * Refactor to use SMPTE harmonized names and add early KLV file support. * * Revision 1.4 2008/02/28 12:50:34 vizigoth * Minor comment edits and fixes. * * Revision 1.3 2008/02/08 12:44:28 vizigoth * Comment linking fix. * * Revision 1.2 2008/01/27 11:07:29 vizigoth * Edited comments to a release standard. * * Revision 1.1 2007/11/13 22:08:30 vizigoth * Public release of MAJ API. */ package tv.amwa.maj.model; import java.util.Collection; import java.util.HashSet; import java.util.Iterator; import java.util.NoSuchElementException; import java.util.Set; import tv.amwa.maj.exception.PropertyNotPresentException; import tv.amwa.maj.integer.UInt32; import tv.amwa.maj.meta.ExtensionScheme; import tv.amwa.maj.misctype.TrackID; import tv.amwa.maj.record.AUID; /** * <p>Specifies descriptive metadata associated with a point in time and the {@linkplain Track tracks} that * the description refers to. A descriptive marker may contain a {@linkplain DescriptiveFramework descriptive framework} * that specifies the metadata.</p> * * <p>If a descriptive marker refers to a {@linkplain StaticTrack static track}, the extent of the description * is for the entire {@linkplain Package package}.</p> * * * * @see DescriptiveFramework * @see DescriptiveClip */ public interface DescriptiveMarker extends CommentMarker { /** <p>Default value for the described tracks parameter. This value is a set that contains all track * indexes from <code>0</code> to <code>Integer.MAX_VALUE</code>.</p> */ public final static Set<Integer> AllTracksDescribed = new AllTracksDescribed(); /** * <p>No tracks are described by the marker.</p> */ public final static Set<Integer> NoTracksDescribed = new HashSet<Integer>(0); /** * <p>Contrived inner class that represents the set of all positive integers and zero. This represents * the default value for described sets as specified in section&nbsp;7.10 of the * <a href="http://www.amwa.tv/html/specs/aafobjectspec-v1.1.pdf">AAF object specification</a>.</p> * */ final static class AllTracksDescribed implements java.util.Set<Integer> { AllTracksDescribed() { } public boolean add( Integer o) { return false; } public boolean addAll( Collection<? extends Integer> c) { return false; } public void clear() { } public boolean contains( Object o) { if (!(o instanceof Number)) return false; if (((Number) o).intValue() < 0) return false; else return true; } public boolean containsAll( Collection<?> c) { for ( Object o : c ) { if (!(contains(o))) return false; } return true; } public boolean isEmpty() { return false; } /** * * <p>Contrived inner class of an iterator over all positive integers and zero. Any implementation * that uses this may go off on a wild goose chase!</p> * */ final static class AllIntsIterator implements java.util.Iterator<Integer> { int value = 0; AllIntsIterator() { } public boolean hasNext() { return (value < Integer.MAX_VALUE); } public Integer next() throws NoSuchElementException { if (value < Integer.MAX_VALUE) return value++; else throw new NoSuchElementException("Reached the end of this iterator over positive integers."); } public void remove() { // Does nothing } } public Iterator<Integer> iterator() { return new AllIntsIterator(); } public boolean remove( Object o) { return false; } public boolean removeAll( Collection<?> c) { return false; } public boolean retainAll( Collection<?> c) { return false; } public int size() { return Integer.MAX_VALUE; } public Object[] toArray() { return null; } public <T> T[] toArray( T[] a) { return null; } public int hashCode() { return Integer.MAX_VALUE; } public boolean equals(Object o) { if (o == this) return true; return false; } } /** * <p>Specifies the {@linkplain tv.amwa.maj.misctype.TrackID track ids} in the {@linkplain Package package} to which * this descriptive marker refers. Set this optional property to <code>null</code> to * omit it, which indicates that all tracks are described. Set to {@link #NoTracksDescribed} * to indicate that the marker does not refer to any tracks.</p> * * @param describedTrackIDs Track id for the tracks in the associated package that this * descriptive marker describes. * * @throws IllegalArgumentException One or more of the track ids in the given set is negative. * * @see #AllTracksDescribed * @see Track */ public void setDescribedTrackIDs( @TrackID Set<Integer> describedTrackIDs) throws IllegalArgumentException; /** * <p>Returns the set of described track ids that are referenced by this descriptive marker. If the value returned * is equal to {@link #AllTracksDescribed}, this descriptive marker describes all tracks in the * associated {@linkplain Package package}.</p> * * @return Track ids in this package that this descriptive marker describes. * * @throws PropertyNotPresentException The optional described tracks property is not present in this * descriptive marker. */ public @TrackID Set<Integer> getDescribedTrackIDs() throws PropertyNotPresentException; /** * <p>Returns the number of {@linkplain tv.amwa.maj.misctype.TrackID track ids} referred to by this descriptive * marker.</p. * * <p>Note that the default value is {@link #AllTracksDescribed}, which has <code>Integer.MAX_VALUE</code> * track ids. Care should be taken not to end up iterating over all of these entries!</p> * * @return Number of track ids stored. * * @throws PropertyNotPresentException The optional described tracks property is not present in this * descriptive marker. */ public @UInt32 int getDescribedTrackIDsSize() throws PropertyNotPresentException; /** * <p>Sets the {@link DescriptiveFramework descriptive framework} that specifies the metadata for * this descriptive marker. Set this optional property to <code>null</code> to omit it.</p> * * @param descriptiveFramework Specifies the descriptive framework. * * @see DescriptiveFramework */ public void setDescriptiveFrameworkObject( DescriptiveFramework descriptiveFramework); /** * <p>Returns the {@link DescriptiveFramework descriptive framework} that specifies the metadata for * this descriptive marker.</p> * * @return The associated descriptive framework. * * @throws PropertyNotPresentException The optional descriptive framework property is not present * in this descriptive marker. * * @see DescriptiveFramework */ public DescriptiveFramework getDescriptiveFrameworkObject() throws PropertyNotPresentException; /** * <p>Returns the immutable identifier for this descriptive metadata plugin instance.</p> * * @return Immutable identifier for this descriptive metadata plugin instance. * * @throws PropertyNotPresentException The optional descriptive metadata plugin identifier * is not present for this descriptive marker. */ public AUID getDescriptiveMetadataPluginID() throws PropertyNotPresentException; /** * <p>Sets the immutable identifier for this descriptive metadata plugin instance.</p> * * @param descriptiveMetadataPluginID Immutable identifier for this descriptive metadata plugin * instance. */ public void setDescriptiveMetadataPluginID( AUID descriptiveMetadataPluginID); /** * <p>Returns the descriptive metadata scheme that is referenced by the descriptive framework * object. A descriptive metadata scheme is represented by an * {@linkplain tv.amwa.maj.meta.ExtensionScheme extension scheme}. This is an optional property.</p> * * @return Descriptive metadata scheme that is referenced by the descriptive framework * object. * * @throws PropertyNotPresentException The optional descriptive metadata scheme property is * not present for this descriptive marker. * * @see #getDescriptiveFrameworkObject() * @see tv.amwa.maj.meta.Root#getRootExtensions() */ public ExtensionScheme getDescriptiveMetadataScheme() throws PropertyNotPresentException; /** * <p>Sets the descriptive metadata scheme that is referenced by the descriptive framework * object. A descriptive metadata scheme is represented by an * {@linkplain tv.amwa.maj.meta.ExtensionScheme extension scheme}. Set this optional property * to <code>null</code> to omit it.</p> * * @param extensionScheme Descriptive metadata scheme that is referenced by the descriptive framework * object. * * @see #setDescriptiveFrameworkObject(DescriptiveFramework) */ public void setDescriptiveMetadataScheme( ExtensionScheme extensionScheme); /** * <p>Returns the application environment identifier, an <a href="http://www.ietf.org/rfc/rfc3986.txt">Uniform * Resource Identifier (RFC 3986)</a> that identifies the application to which the information in this plugin * object applies. This is an optional property.</p> * * @return Application environment identifier. * * @throws PropertyNotPresentException The optional descriptive metadata application environment identifier * is not present for this descriptive marker. */ public String getDescriptiveMetadataApplicationEnvironmentID() throws PropertyNotPresentException; /** * <p>Sets the application environment identifier, an <a href="http://www.ietf.org/rfc/rfc3986.txt">Uniform * Resource Identifier (RFC 3986)</a> that identifies the application to which the information in this plugin * object applies. Set this optional property to <code>null</code> to omit it.</p> * * @param descriptiveMetadataApplicationEnvironmentID Application environment identifier. */ public void setDescriptiveMetadataApplicationEnvironmentID( String descriptiveMetadataApplicationEnvironmentID); /** * <p>Create a cloned copy of this descriptive marker.</p> * * @return Cloned copy of this descriptive marker. */ public DescriptiveMarker clone(); }
[ "richard.cartwright@quantel.com" ]
richard.cartwright@quantel.com
ac1930e97787e8c848d739fe8e4c5e3954b447ca
a1a1a3bc19f6f0df6df050b8e00d41d318dbcc65
/src/view/LoginFrame.java
246b0cb35d5289897340383fc51343dd7097968a
[]
no_license
steveboris/rentcar
949e17f910708f33a72776c2769417620e4bc214
c3616988a6f7c20db4e07bc20363d08ef35292e3
refs/heads/master
2021-01-02T20:21:11.895193
2020-02-28T08:38:39
2020-02-28T08:38:39
239,784,069
0
0
null
null
null
null
UTF-8
Java
false
false
4,622
java
/** * @author Steve */ package view; import java.awt.Color; import java.awt.Container; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.util.Arrays; import javax.swing.Box; import javax.swing.BoxLayout; import javax.swing.JButton; import javax.swing.JComponent; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JPasswordField; import javax.swing.JTextField; import javax.swing.border.LineBorder; import exception.CRException; public class LoginFrame extends JFrame implements ActionListener { /** * */ private static final long serialVersionUID = 1L; private JButton okBtn; private JButton cancelBtn; private JTextField tfUser; private JPasswordField tfPwd; private JLabel lblError; private final static String USERNAME = "admin"; private final static char[] PWD = {'G', 'e', 't', 'm', 'e', 'i', 'n', '2', '0', '2', '0'}; public LoginFrame() { super("Login"); Container contentPane = getContentPane(); ((JComponent) contentPane).setBorder(new LineBorder(Color.CYAN, 1)); setContentPane(contentPane); // main windows panel JPanel mainpanel = new JPanel(); mainpanel.setLayout(new BoxLayout(mainpanel, BoxLayout.Y_AXIS)); // Panel to define the layout. JPanel panel = new JPanel(new GridBagLayout()); // Constraints for the layout GridBagConstraints constr = new GridBagConstraints(); constr.insets = new Insets(5, 5, 5, 5); constr.anchor = GridBagConstraints.WEST; // Label to display the action JPanel header = new JPanel(); JLabel lblTitle = new JLabel("Anmelden zur Verwltung"); lblTitle.setForeground(Color.WHITE); header.add(lblTitle); // Set the initial grid values to 0,0 constr.gridx = 0; constr.gridy = 0; // Fields tfUser = new JTextField(20); tfUser.setText("Benutzername"); tfUser.addMouseListener(new MouseAdapter() { public void mouseClicked(MouseEvent me) { tfUser.setText(""); } public void mouseExited(MouseEvent me) { if (tfUser.getText().contentEquals("")) tfUser.setText("Benutzername"); } }); tfPwd = new JPasswordField(20); tfPwd.setText("Password"); tfPwd.setEchoChar('*'); tfPwd.addMouseListener(new MouseAdapter() { public void mouseClicked(MouseEvent me) { tfPwd.setText(""); } public void mouseExited(MouseEvent me) { if (tfPwd.getPassword().length == 0) { tfPwd.setText("Password"); } } }); // Adding labels and fields to the panel panel.add(tfUser, constr); constr.gridx = 0; constr.gridy = 1; panel.add(tfPwd, constr); constr.gridy = 2; constr.anchor = GridBagConstraints.CENTER; // Button with text "Anmelden" okBtn = new JButton("Anmelden"); okBtn.addActionListener(this); // Button with text "Abbrechen" cancelBtn = new JButton("Abbrechen"); cancelBtn.addActionListener(this); // Add label and button to panel Box hbox = Box.createHorizontalBox(); hbox.add(okBtn); hbox.add(Box.createHorizontalStrut(5)); hbox.add(cancelBtn); panel.add(hbox, constr); constr.gridy = 3; // add panel for error JPanel panelError = new JPanel(); lblError = new JLabel(); lblError.setForeground(Color.RED); panelError.add(lblError); // Panels customizing header.setBackground(new Color(0, 153, 204)); panel.setBackground(Color.LIGHT_GRAY); panelError.setBackground(new Color(0, 153, 204)); // Adding panels on the main panel to be showing mainpanel.add(header); mainpanel.add(panel); mainpanel.add(panelError); contentPane.add(mainpanel); // Main frame customizing setUndecorated(true); pack(); setSize(320, 400); setLocationRelativeTo(null); } @Override public void actionPerformed(ActionEvent e) { if (e.getSource() == okBtn) { if (tfUser.getText().contentEquals("") || tfUser.getText()==null) { lblError.setText("Geben Sie bitte Ihren Benutzername"); } else if (!tfUser.getText().toString().contentEquals(USERNAME)) { lblError.setText("Den Benutzername stimmt nicht"); } else if (!Arrays.equals(tfPwd.getPassword(), PWD)) { lblError.setText("Das Password stimmt nicht"); } else { try { RentalWindow frame = new RentalWindow(); frame = new RentalWindow(); frame.setVisible(true); // close the login window LoginFrame.this.dispose(); } catch (CRException e1) { } } } else { LoginFrame.this.dispose(); } } }
[ "b.steve189@hotmail.com" ]
b.steve189@hotmail.com
cd62e25accd42e8901a3c5f2906c415ba64bfb48
be5f7e8608df21a9aad0f23ff38293561f584550
/scribble/scribble-ast/src/main/java/org/scribble/ast/local/LDisconnect.java
cc529195da49377ce93bb2be351aeb1f194e5a86
[ "Apache-2.0" ]
permissive
sessionstar/sessionstar
93ec455780d539f67112ff19770eb44539379df5
9649edc7c864a2bb15a46ab7633ffa391667b068
refs/heads/master
2023-04-15T12:58:08.878631
2020-05-15T11:22:17
2020-05-15T11:22:17
256,245,295
0
0
Apache-2.0
2021-04-26T20:15:12
2020-04-16T14:51:05
Java
UTF-8
Java
false
false
1,621
java
/** * Copyright 2008 The Scribble 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.scribble.ast.local; import org.antlr.runtime.Token; import org.scribble.ast.DisconnectAction; import org.scribble.ast.name.simple.RoleNode; import org.scribble.core.type.kind.Local; import org.scribble.del.DelFactory; import org.scribble.util.Constants; public class LDisconnect extends DisconnectAction<Local> implements LSimpleSessionNode { // ScribTreeAdaptor#create constructor public LDisconnect(Token t) { super(t); } // Tree#dupNode constructor public LDisconnect(LDisconnect node) { super(node); } // Cf. core LDisconnect public RoleNode getSelfChild() { return getLeftChild(); } public RoleNode getPeerChild() { return getRightChild(); } @Override public void decorateDel(DelFactory df) { df.LDisconnect(this); } @Override public LDisconnect dupNode() { return new LDisconnect(this); } @Override public String toString() { return Constants.DISCONNECT_KW + " " + getRightChild() + ";"; // FIXME: make explicit, using right as peer (cf. core.type) } }
[ "sessionstar2020@gmail.com" ]
sessionstar2020@gmail.com
abf28231f48627a032c9b96acdab0a943f7cbe24
b7f4328949b48211cbe2a930287ab106b62f0c65
/utils/src/main/java/com/wikison/utils/ViewUtils.java
c083f6bfb7eac64a3b9c8502e5c8ac471696014b
[]
no_license
wikison/android_integration
1422f2aa7d996f0c834d0df3b49a8d6a99f44ae5
cea6dac461693c0c58f5ffac2f8ecc5876307df9
refs/heads/master
2020-12-03T09:38:27.507686
2017-06-28T06:19:59
2017-06-28T06:19:59
95,635,481
0
0
null
null
null
null
UTF-8
Java
false
false
17,636
java
package com.wikison.utils; import android.annotation.TargetApi; import android.content.Context; import android.graphics.Point; import android.graphics.Rect; import android.os.Build; import android.text.Editable; import android.text.Selection; import android.text.Spannable; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.view.ViewTreeObserver; import android.widget.AbsListView; import android.widget.EditText; import android.widget.GridView; import android.widget.LinearLayout; import android.widget.ListAdapter; import android.widget.ListView; import android.widget.RelativeLayout; import android.widget.RelativeLayout.LayoutParams; import android.widget.TextView; import java.lang.reflect.Field; import java.util.ArrayList; import java.util.List; /** * Created by Wikison on 2017/6/28. * 视图工具箱 */ public class ViewUtils { private static final String CLASS_NAME_GRID_VIEW = "android.widget.GridView"; private static final String FIELD_NAME_VERTICAL_SPACING = "mVerticalSpacing"; private ViewUtils() { throw new AssertionError(); } /** * get ListView height according to every children * * @param view view * @return int */ public static int getListViewHeightBasedOnChildren(ListView view) { int height = getAbsListViewHeightBasedOnChildren(view); ListAdapter adapter; int adapterCount; if (view != null && (adapter = view.getAdapter()) != null && (adapterCount = adapter.getCount()) > 0) { height += view.getDividerHeight() * (adapterCount - 1); } return height; } /** * get GridView vertical spacing * * @param view view * @return int */ public static int getGridViewVerticalSpacing(GridView view) { // get mVerticalSpacing by android.widget.GridView Class<?> demo = null; int verticalSpacing = 0; try { demo = Class.forName(CLASS_NAME_GRID_VIEW); Field field = demo.getDeclaredField(FIELD_NAME_VERTICAL_SPACING); field.setAccessible(true); verticalSpacing = (Integer) field.get(view); return verticalSpacing; } catch (Exception e) { /** * accept all exception, include ClassNotFoundException, NoSuchFieldException, InstantiationException, * IllegalArgumentException, IllegalAccessException, NullPointException */ e.printStackTrace(); } return verticalSpacing; } /** * get AbsListView height according to every children * * @param view view * @return int */ public static int getAbsListViewHeightBasedOnChildren(AbsListView view) { ListAdapter adapter; if (view == null || (adapter = view.getAdapter()) == null) { return 0; } int height = 0; for (int i = 0; i < adapter.getCount(); i++) { View item = adapter.getView(i, null, view); if (item instanceof ViewGroup) { item.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); } item.measure(0, 0); height += item.getMeasuredHeight(); } height += view.getPaddingTop() + view.getPaddingBottom(); return height; } /** * set view height * * @param view view * @param height height */ public static void setViewHeight(View view, int height) { if (view == null) { return; } ViewGroup.LayoutParams params = view.getLayoutParams(); params.height = height; } /** * @param view listview */ public static void setListViewHeightBasedOnChildren(ListView view) { setViewHeight(view, getListViewHeightBasedOnChildren(view)); } /** * @param view AbsListView */ public static void setAbsListViewHeightBasedOnChildren(AbsListView view) { setViewHeight(view, getAbsListViewHeightBasedOnChildren(view)); } /** * set SearchView OnClickListener * * @param v set SearchView OnClickListener * @param listener set SearchView OnClickListener */ public static void setSearchViewOnClickListener(View v, OnClickListener listener) { if (v instanceof ViewGroup) { ViewGroup group = (ViewGroup) v; int count = group.getChildCount(); for (int i = 0; i < count; i++) { View child = group.getChildAt(i); if (child instanceof LinearLayout || child instanceof RelativeLayout) { setSearchViewOnClickListener(child, listener); } if (child instanceof TextView) { TextView text = (TextView) child; text.setFocusable(false); } child.setOnClickListener(listener); } } } /** * get descended views from parent. * * @param <T> 泛型 * @param parent ViewGroup * @param filter Type of views which will be returned. * @param includeSubClass Whether returned list will include views which * are * subclass of filter or not. * @return View */ public static <T extends View> List<T> getDescendants(ViewGroup parent, Class<T> filter, boolean includeSubClass) { List<T> descendedViewList = new ArrayList<T>(); int childCount = parent.getChildCount(); for (int i = 0; i < childCount; i++) { View child = parent.getChildAt(i); Class<? extends View> childsClass = child.getClass(); if ((includeSubClass && filter.isAssignableFrom(childsClass)) || (!includeSubClass && childsClass == filter)) { descendedViewList.add(filter.cast(child)); } if (child instanceof ViewGroup) { descendedViewList.addAll( getDescendants((ViewGroup) child, filter, includeSubClass)); } } return descendedViewList; } /** * 手动测量布局大小 * * @param view 被测量的布局 * @param width 布局默认宽度 * @param height 布局默认高度 * 示例: measureView(view, ViewGroup.LayoutParams.MATCH_PARENT, * ViewGroup.LayoutParams.WRAP_CONTENT); */ public static void measureView(View view, int width, int height) { ViewGroup.LayoutParams params = view.getLayoutParams(); if (params == null) { params = new ViewGroup.LayoutParams(width, height); } int mWidth = ViewGroup.getChildMeasureSpec(0, 0, params.width); int mHeight; int tempHeight = params.height; if (tempHeight > 0) { mHeight = View.MeasureSpec.makeMeasureSpec(tempHeight, View.MeasureSpec.EXACTLY); } else { mHeight = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED); } view.measure(mWidth, mHeight); } //*****设置外边距相关函数******************************************************************************* /** * 设置View的左侧外边距 * * @param view 要设置外边距的View * @param left 左侧外边距 */ public static void setMarginLeft(View view, int left) { setMargins(view, left, 0, 0, 0); } /** * 设置View的顶部外边距 * * @param view 要设置外边距的View * @param top 顶部外边距 */ public static void setMarginTop(View view, int top) { setMargins(view, 0, top, 0, 0); } /** * 设置View的右侧外边距 * * @param view 要设置外边距的View * @param right 右侧外边距 */ public static void setMarginRight(View view, int right) { setMargins(view, 0, 0, right, 0); } /** * 设置View的底部外边距 * * @param view 要设置外边距的View * @param bottom 底部外边距 */ public static void setMarginBottom(View view, int bottom) { setMargins(view, 0, 0, 0, bottom); } /** * 设置View的外边距(Margins) * * @param view 要设置外边距的View * @param left 左侧外边距 * @param top 顶部外边距 * @param right 右侧外边距 * @param bottom 底部外边距 */ public static void setMargins(View view, int left, int top, int right, int bottom) { if (view.getLayoutParams() instanceof ViewGroup.MarginLayoutParams) { ViewGroup.MarginLayoutParams p = (ViewGroup.MarginLayoutParams) view .getLayoutParams(); p.setMargins(left, top, right, bottom); view.requestLayout(); //请求重绘 } } /** * 获取一个LinearLayout * * @param context 上下文 * @param orientation 流向 * @param width 宽 * @param height 高 * @return LinearLayout */ public static LinearLayout createLinearLayout(Context context, int orientation, int width, int height) { LinearLayout linearLayout = new LinearLayout(context); linearLayout.setOrientation(orientation); linearLayout.setLayoutParams( new LinearLayout.LayoutParams(width, height)); return linearLayout; } /** * 获取一个LinearLayout * * @param context 上下文 * @param orientation 流向 * @param width 宽 * @param height 高 * @param weight 权重 * @return LinearLayout */ public static LinearLayout createLinearLayout(Context context, int orientation, int width, int height, int weight) { LinearLayout linearLayout = new LinearLayout(context); linearLayout.setOrientation(orientation); linearLayout.setLayoutParams( new LinearLayout.LayoutParams(width, height, weight)); return linearLayout; } /** * 根据ListView的所有子项的高度设置其高度 */ public static void setListViewHeightByAllChildrenViewHeight(ListView listView) { ListAdapter listAdapter = listView.getAdapter(); if (listAdapter != null) { int totalHeight = 0; for (int i = 0; i < listAdapter.getCount(); i++) { View listItem = listAdapter.getView(i, null, listView); listItem.measure(0, 0); totalHeight += listItem.getMeasuredHeight(); } ViewGroup.LayoutParams params = listView.getLayoutParams(); params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1)); ((ViewGroup.MarginLayoutParams) params).setMargins(10, 10, 10, 10); listView.setLayoutParams(params); } } /** * 将给定视图的高度增加一点 * * @param view 给定的视图 * @param increasedAmount 增加多少 */ public static void addViewHeight(View view, int increasedAmount) { ViewGroup.LayoutParams headerLayoutParams = (ViewGroup.LayoutParams) view.getLayoutParams(); headerLayoutParams.height += increasedAmount; view.setLayoutParams(headerLayoutParams); } /** * 设置给定视图的宽度 * * @param view 给定的视图 * @param newWidth 新的宽度 */ public static void setViewWidth(View view, int newWidth) { ViewGroup.LayoutParams headerLayoutParams = (ViewGroup.LayoutParams) view.getLayoutParams(); headerLayoutParams.width = newWidth; view.setLayoutParams(headerLayoutParams); } /** * 将给定视图的宽度增加一点 * * @param view 给定的视图 * @param increasedAmount 增加多少 */ public static void addViewWidth(View view, int increasedAmount) { ViewGroup.LayoutParams headerLayoutParams = (ViewGroup.LayoutParams) view.getLayoutParams(); headerLayoutParams.width += increasedAmount; view.setLayoutParams(headerLayoutParams); } /** * 获取流布局的底部外边距 */ public static int getLinearLayoutBottomMargin(LinearLayout linearLayout) { return ((LinearLayout.LayoutParams) linearLayout.getLayoutParams()).bottomMargin; } /** * 设置流布局的底部外边距 */ public static void setLinearLayoutBottomMargin(LinearLayout linearLayout, int newBottomMargin) { LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) linearLayout.getLayoutParams(); lp.bottomMargin = newBottomMargin; linearLayout.setLayoutParams(lp); } /** * 获取流布局的高度 */ public static int getLinearLayoutHiehgt(LinearLayout linearLayout) { return ((LinearLayout.LayoutParams) linearLayout.getLayoutParams()).height; } /** * 设置输入框的光标到末尾 */ public static final void setEditTextSelectionToEnd(EditText editText) { Editable editable = editText.getEditableText(); Selection.setSelection((Spannable) editable, editable.toString().length()); } /** * 执行测量,执行完成之后只需调用View的getMeasuredXXX()方法即可获取测量结果 */ public static final View measure(View view) { ViewGroup.LayoutParams p = view.getLayoutParams(); if (p == null) { p = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT); } int childWidthSpec = ViewGroup.getChildMeasureSpec(0, 0 + 0, p.width); int lpHeight = p.height; int childHeightSpec; if (lpHeight > 0) { childHeightSpec = View.MeasureSpec.makeMeasureSpec(lpHeight, View.MeasureSpec.EXACTLY); } else { childHeightSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED); } view.measure(childWidthSpec, childHeightSpec); return view; } /** * 获取给定视图的测量高度 */ public static final int getMeasuredHeight(View view) { return measure(view).getMeasuredHeight(); } /** * 获取给定视图的测量宽度 */ public static final int getMeasuredWidth(View view) { return measure(view).getMeasuredWidth(); } /** * 获取视图1相对于视图2的位置,注意在屏幕上看起来视图1应该被视图2包含,但是视图1和视图并不一定是绝对的父子关系也可以是兄弟关系,只是一个大一个小而已 */ public static final Rect getRelativeRect(View view1, View view2) { Rect childViewGlobalRect = new Rect(); Rect parentViewGlobalRect = new Rect(); view1.getGlobalVisibleRect(childViewGlobalRect); view2.getGlobalVisibleRect(parentViewGlobalRect); return new Rect(childViewGlobalRect.left - parentViewGlobalRect.left, childViewGlobalRect.top - parentViewGlobalRect.top, childViewGlobalRect.right - parentViewGlobalRect.left, childViewGlobalRect.bottom - parentViewGlobalRect.top); } /** * 删除监听器 */ @SuppressWarnings("deprecation") @TargetApi(Build.VERSION_CODES.JELLY_BEAN) public static final void removeOnGlobalLayoutListener(ViewTreeObserver viewTreeObserver, ViewTreeObserver.OnGlobalLayoutListener onGlobalLayoutListener) { if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) { viewTreeObserver.removeGlobalOnLayoutListener( onGlobalLayoutListener); } else { viewTreeObserver.removeOnGlobalLayoutListener( onGlobalLayoutListener); } } /** * 缩放视图 */ public static void zoomView(View view, float scaleX, float scaleY, Point originalSize) { int width = (int) (originalSize.x * scaleX); int height = (int) (originalSize.y * scaleY); ViewGroup.LayoutParams viewGroupParams = view.getLayoutParams(); if (viewGroupParams != null) { viewGroupParams.width = width; viewGroupParams.height = height; } else { viewGroupParams = new ViewGroup.LayoutParams(width, height); } view.setLayoutParams(viewGroupParams); } /** * 缩放视图 */ public static void zoomView(View view, float scaleX, float scaleY) { zoomView(view, scaleX, scaleY, new Point(view.getWidth(), view.getHeight())); } /** * 缩放视图 * * @param scale 比例 */ public static void zoomView(View view, float scale, Point originalSize) { zoomView(view, scale, scale, originalSize); } /** * 缩放视图 */ public static void zoomView(View view, float scale) { zoomView(view, scale, scale, new Point(view.getWidth(), view.getHeight())); } }
[ "wikison@foxmail.com" ]
wikison@foxmail.com
1270ad93d9fa5a4226be0288f9f512960d97cf45
88955ed8ceeda0ac6f81ed7f55f78a1d3a348c49
/android/app/src/debug/java/com/todoapp/ReactNativeFlipper.java
360517c3d888bc44fd2d0b24e779716b6dc40c76
[]
no_license
MichaelRand0/react-native-todo
2580a0421d78ba80ec9c4239fb3f88ab4269a1ee
d0175218ac75e9bc941def09eff067a8a2124cb6
refs/heads/master
2023-07-23T08:22:52.561094
2021-08-31T11:08:01
2021-08-31T11:08:01
401,671,945
1
0
null
null
null
null
UTF-8
Java
false
false
3,258
java
/** * Copyright (c) Facebook, Inc. and its affiliates. * * <p>This source code is licensed under the MIT license found in the LICENSE file in the root * directory of this source tree. */ package com.todoapp; import android.content.Context; import com.facebook.flipper.android.AndroidFlipperClient; import com.facebook.flipper.android.utils.FlipperUtils; import com.facebook.flipper.core.FlipperClient; import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin; import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin; import com.facebook.flipper.plugins.inspector.DescriptorMapping; import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin; import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor; import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; import com.facebook.flipper.plugins.react.ReactFlipperPlugin; import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; import com.facebook.react.ReactInstanceManager; import com.facebook.react.bridge.ReactContext; import com.facebook.react.modules.network.NetworkingModule; import okhttp3.OkHttpClient; public class ReactNativeFlipper { public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { if (FlipperUtils.shouldEnableFlipper(context)) { final FlipperClient client = AndroidFlipperClient.getInstance(context); client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); client.addPlugin(new ReactFlipperPlugin()); client.addPlugin(new DatabasesFlipperPlugin(context)); client.addPlugin(new SharedPreferencesFlipperPlugin(context)); client.addPlugin(CrashReporterPlugin.getInstance()); NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin(); NetworkingModule.setCustomClientBuilder( new NetworkingModule.CustomClientBuilder() { @Override public void apply(OkHttpClient.Builder builder) { builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin)); } }); client.addPlugin(networkFlipperPlugin); client.start(); // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized // Hence we run if after all native modules have been initialized ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); if (reactContext == null) { reactInstanceManager.addReactInstanceEventListener( new ReactInstanceManager.ReactInstanceEventListener() { @Override public void onReactContextInitialized(ReactContext reactContext) { reactInstanceManager.removeReactInstanceEventListener(this); reactContext.runOnNativeModulesQueueThread( new Runnable() { @Override public void run() { client.addPlugin(new FrescoFlipperPlugin()); } }); } }); } else { client.addPlugin(new FrescoFlipperPlugin()); } } } }
[ "mihailstepanov.stepanoff2015@yandex.ru" ]
mihailstepanov.stepanoff2015@yandex.ru
6a807e9fbf336cde596c8a3d26a21f9bcaf32e66
6eea6b343c8c81b9ca18f2eb505376f2d62cfe9d
/app/src/main/java/com/taxi/taxiapp/model/TaxiApi.java
dcc73f5c2248373842266f22d72c2ddc7ebf8e62
[]
no_license
Urizel/-Sklyarova-Taxi
0eec362a50170b8e21dc48004cd30ca894a57303
b64576a3bf6c322026bb7ddfab46dad598015eae
refs/heads/master
2021-01-15T13:13:19.336395
2016-09-16T13:32:26
2016-09-16T13:32:26
68,382,296
0
0
null
null
null
null
UTF-8
Java
false
false
2,732
java
package com.taxi.taxiapp.model; import com.google.gson.JsonArray; import com.taxi.taxiapp.BuildConfig; import java.io.IOException; import java.util.concurrent.TimeUnit; import okhttp3.Interceptor; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; import okhttp3.ResponseBody; import retrofit2.Call; import retrofit2.Retrofit; import retrofit2.adapter.rxjava.RxJavaCallAdapterFactory; import retrofit2.converter.gson.GsonConverterFactory; import retrofit2.http.GET; import retrofit2.http.Path; import rx.Observable; import rx.Scheduler; import rx.schedulers.Schedulers; /** * Created by kristina on 06.09.16. */ public interface TaxiApi { @GET("orders.json") Observable<JsonArray> getTaxiOrders(); @GET("images/{imageName}") Observable<ResponseBody> getImage(@Path("imageName") String imageName); class InitApiService { private static TaxiApi mTaxiService; private static Scheduler mSubscribeScheduler; public static TaxiApi getTaxiApi() { if (mTaxiService == null) { mTaxiService = TaxiApi.Factory.create(); } return mTaxiService; } public static Scheduler subscribeScheduler() { if (mSubscribeScheduler == null) { mSubscribeScheduler = Schedulers.io(); } return mSubscribeScheduler; } } class Factory { public static TaxiApi create() { OkHttpClient client = new OkHttpClient .Builder() .addNetworkInterceptor(chain -> { Request.Builder builder = chain.request().newBuilder(); builder.addHeader("Accept", "application/json"); builder.addHeader("Content-type", "application/json; charset=UTF-8"); Request request = builder.build(); try { Response response = chain.proceed(request); return response; } catch (Exception e) { throw e; } }) .connectTimeout(180, TimeUnit.SECONDS) .readTimeout(180, TimeUnit.SECONDS) .build(); Retrofit retrofit = new Retrofit.Builder() .baseUrl(BuildConfig.BASE_URL) .addCallAdapterFactory(RxJavaCallAdapterFactory.create()) .addConverterFactory(GsonConverterFactory.create()) .client(client) .build(); return retrofit.create(TaxiApi.class); } } }
[ "romanenkodv@ekassir.com" ]
romanenkodv@ekassir.com
a006431f926137864992e7b6cca155f455026f41
0af8b92686a58eb0b64e319b22411432aca7a8f3
/single-large-project/src/main/java/org/gradle/test/performancenull_182/Productionnull_18114.java
d5cc2bf8f4df771b5bed7716f73c2a54d4ef01bf
[]
no_license
gradle/performance-comparisons
b0d38db37c326e0ce271abebdb3c91769b860799
e53dc7182fafcf9fedf07920cbbea8b40ee4eef4
refs/heads/master
2023-08-14T19:24:39.164276
2022-11-24T05:18:33
2022-11-24T05:18:33
80,121,268
17
15
null
2022-09-30T08:04:35
2017-01-26T14:25:33
null
UTF-8
Java
false
false
588
java
package org.gradle.test.performancenull_182; public class Productionnull_18114 { private final String property; public Productionnull_18114(String param) { this.property = param; } public String getProperty() { return property; } private String prop0; public String getProp0() { return prop0; } public void setProp0(String value) { prop0 = value; } private String prop1; public String getProp1() { return prop1; } public void setProp1(String value) { prop1 = value; } }
[ "cedric.champeau@gmail.com" ]
cedric.champeau@gmail.com
e6a39e306ba76a8f0bcb23a5305edfc402b117b5
e0191754b112ceafbd46b5f4f6e5f6dbafa252cf
/app/src/main/java/com/rackluxury/rollsroyce/reddit/bottomsheetfragments/SetAsWallpaperBottomSheetFragment.java
e944f70f3cb5e49dee18d597ba7b107f864fcec8
[]
no_license
HarshAProgrammer/RollsRoyce4
2699de0ae513af7c60096bb73b75f5b094a0d5e0
748a3bdec05705494dd93e1ea26232af770dcfdd
refs/heads/main
2023-08-22T10:29:49.118285
2021-10-10T16:38:32
2021-10-10T16:38:32
396,972,712
0
0
null
null
null
null
UTF-8
Java
false
false
2,824
java
package com.rackluxury.rollsroyce.reddit.bottomsheetfragments; import android.app.Activity; import android.content.Context; import android.os.Build; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import androidx.annotation.NonNull; import com.deishelon.roundedbottomsheet.RoundedBottomSheetDialogFragment; import butterknife.BindView; import butterknife.ButterKnife; import com.rackluxury.rollsroyce.R; import com.rackluxury.rollsroyce.reddit.SetAsWallpaperCallback; public class SetAsWallpaperBottomSheetFragment extends RoundedBottomSheetDialogFragment { public static final String EXTRA_VIEW_PAGER_POSITION = "EVPP"; @BindView(R.id.home_screen_text_view_set_as_wallpaper_bottom_sheet_fragment) TextView homeScreenTextvView; @BindView(R.id.lock_screen_text_view_set_as_wallpaper_bottom_sheet_fragment) TextView lockScreenTextView; @BindView(R.id.both_text_view_set_as_wallpaper_bottom_sheet_fragment) TextView bothTextView; private Activity mActivity; public SetAsWallpaperBottomSheetFragment() { // Required empty public constructor } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_set_as_wallpaper_bottom_sheet, container, false); ButterKnife.bind(this, rootView); Bundle bundle = getArguments(); int viewPagerPosition = bundle == null ? -1 : bundle.getInt(EXTRA_VIEW_PAGER_POSITION); bothTextView.setOnClickListener(view -> { if (mActivity instanceof SetAsWallpaperCallback) { ((SetAsWallpaperCallback) mActivity).setToBoth(viewPagerPosition); } dismiss(); }); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { homeScreenTextvView.setVisibility(View.VISIBLE); lockScreenTextView.setVisibility(View.VISIBLE); homeScreenTextvView.setOnClickListener(view -> { if (mActivity instanceof SetAsWallpaperCallback) { ((SetAsWallpaperCallback) mActivity).setToHomeScreen(viewPagerPosition); } dismiss(); }); lockScreenTextView.setOnClickListener(view -> { if (mActivity instanceof SetAsWallpaperCallback) { ((SetAsWallpaperCallback) mActivity).setToLockScreen(viewPagerPosition); } dismiss(); }); } return rootView; } @Override public void onAttach(@NonNull Context context) { super.onAttach(context); this.mActivity = (Activity) context; } }
[ "app.lavishly@gmail.com" ]
app.lavishly@gmail.com
485461d200307e5b4f12c01000065390c93c803e
5a4e0cfb47d7cb6197facd4fd0d50c1df9a24881
/src/dispatch.java
f9c46ba2f4685a5c8f97c1725980cbc6ca390063
[]
no_license
AnshdeepSingh123/Spring
9da817c7e51f736ecbbdc40b06395b99a5eb1995
32330f218ebbadec3d1e432b0ab1fc519e9e6f7e
refs/heads/master
2020-03-22T00:39:13.474798
2018-06-30T15:54:12
2018-06-30T15:54:12
139,256,975
0
0
null
null
null
null
WINDOWS-1252
Java
false
false
11,484
java
import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.FocusAdapter; import java.awt.event.FocusEvent; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.sql.Statement; import java.text.Format; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.concurrent.TimeUnit; import java.awt.*; import java.awt.print.*; import javax.swing.*; import javax.swing.table.JTableHeader; import javax.swing.table.TableColumn; import javax.swing.text.DefaultFormatterFactory; import javax.swing.text.*; import java.util.*; public class dispatch extends JFrame implements ActionListener { JLabel copyright=new JLabel("Copyright © SahibLabs"); JLabel name=new JLabel("Name"); Color c=new Color(250,250,250); Font f=new Font("Arial",Font.PLAIN,28) ; Font f1=new Font("Arial",Font.BOLD,20); Font f2=new Font("Arial",Font.BOLD,80); JButton dis=new JButton("Dispatch"); //JButton find=new JButton("Find Items"); JButton home =new JButton("Home"); JButton logout =new JButton("Logout"); JButton generate =new JButton("Generate Bill"); JComboBox name1=new JComboBox(); //JComboBox item1=new JComboBox(); Vector Columnname= new Vector(); Vector data= new Vector(); JPanel panel = new JPanel(); float temp=0; int p=0, o=0; int sr=0; String ws; Connection con; Statement s,sq,s1,s2,s3,s4; ResultSet rs1,rs,rs2,rs3,rs4,rs5,rsn,rsn1,rsn2,rsn3; ImageIcon img = new ImageIcon("C:\\C.jpg"); public dispatch() { this.setIconImage(img.getImage()); this.getRootPane().setDefaultButton(dis); try { Class.forName("com.mysql.jdbc.Driver"); con=DriverManager.getConnection("jdbc:mysql://localhost:3306/ganpati","root","root"); s=con.createStatement(); s1=con.createStatement(); sq=con.createStatement(); s2=con.createStatement(); s3=con.createStatement(); s4=con.createStatement(); } catch(Exception e) { JOptionPane.showMessageDialog(null,e.getMessage()); } try { rsn=s1.executeQuery("select Billno from tempbill"); while(rsn.next()) { p=Integer.parseInt(rsn.getString(1)); } o=p+1; } catch(Exception e) { JOptionPane.showMessageDialog(null,e.getMessage()); } setDefaultCloseOperation( EXIT_ON_CLOSE ); this.setVisible(true); //this.setExtendedState(MAXIMIZED_BOTH); this.setLayout(null); this.setTitle("Dispatch"); add(copyright); add(name); //add(item); //add(item1); add(name1); add(panel); add(dis); //add(find); add(home); add(logout); add(generate); //add(l1); // add(l2); //add(l11); //add(l21); name.setBounds(350,580,350,30); name.setFont(f1); //item.setBounds(700,580,350,30); //item.setFont(f1); // l1.setBounds(1050,580,50,30); //l1.setFont(f1); // l2.setBounds(1200,580,50,30); // l2.setFont(f1); // l21.setBounds(1250,580,50,30); // l11.setBounds(1100,580,50,30); //find.setBounds(450,640,200,30); dis.setBounds(450,640,200,30); generate.setBounds(1100,640,200,30); name1.setBounds(450,580,200,30); // item1.setBounds(800,580,200,30); home.setBounds(0,20,150,40); logout.setBounds(150,20,150,40); dis.setFont(f1); // find.setFont(f1); generate.setFont(f1); dis.setBackground(new Color(135,206,250)); dis.addActionListener(this); generate.setBackground(new Color(135,206,250)); generate.addActionListener(this); //find.setBackground(new Color(135,206,250)); //find.addActionListener(this); home.setFont(f1); home.setBackground(new Color(135,206,250)); home.addActionListener(this); logout.setFont(f1); logout.setBackground(new Color(135,206,250)); logout.addActionListener(this); this.getContentPane().setBackground(c); //copyright.setBounds(45,200,350,30); //panel copyright copyright.setBounds(550,680,350,30); copyright.setFont(f1); try { String months[]={"01","02","03","04","05","06","07","08","09","10","11","12"}; String d[]={"00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31"}; GregorianCalendar g=new GregorianCalendar(); ws=d[g.get(Calendar.DATE)]+"/"+months[g.get(Calendar.MONTH)]+"/"+g.get(Calendar.YEAR); } catch(Exception e) { JOptionPane.showMessageDialog(null, e.getMessage()); } Columnname.clear(); data.clear(); try { rs=s.executeQuery("select * from sales where State='Ready To Dispatch' AND Transaction='Done'"); ResultSetMetaData md= rs.getMetaData(); int columns= md.getColumnCount(); for(int i=1;i<=columns;i++) { Columnname.addElement(md.getColumnName(i)); } while(rs.next()) { Vector row= new Vector(columns); data.addElement(row); for(int i=1;i<=columns;i++) { row.addElement(rs.getObject(i)); } } JTable table = new JTable(data,Columnname); table.setEnabled(false); TableColumn col; for( int i=0; i< table.getColumnCount();i++) { col=table.getColumnModel().getColumn(i); col.setMinWidth(30); table.setRowHeight(30); } JTableHeader header = table.getTableHeader(); header.setBackground(Color.WHITE); JScrollPane pane = new JScrollPane(table); pane.setPreferredSize(new Dimension(1100,510)); panel.setBounds(30, 60, 1100, 520); table.setPreferredScrollableViewportSize(table.getPreferredSize()); table.setFillsViewportHeight(true); pane.getViewport().setBackground(Color.WHITE); panel.add(pane); panel.setBackground(Color.white); //setExtendedState(MAXIMIZED_BOTH); getContentPane().setBackground(Color.white); //setVisible(true); } catch(Exception ex) { JOptionPane.showMessageDialog(null,ex.getMessage()); } this.setBounds(0,0,1366,768); this.setResizable(false); name1.removeAllItems(); name1.addItem("Select"); try { rs1=s.executeQuery("select name from sales where State='Ready To Dispatch' AND Transaction='Done'"); name1.removeAllItems(); name1.addItem("Select"); while(rs1.next()) { if(((DefaultComboBoxModel)name1.getModel()).getIndexOf(rs1.getString(1)) == -1) { name1.addItem(rs1.getString(1) ); } } } catch(Exception ex) { JOptionPane.showMessageDialog(null,ex.getMessage()); } //dis.setVisible(false); //item.setVisible(false); //item1.setVisible(false); generate.setVisible(false); //l1.setVisible(false); //l2.setVisible(false); //l11.setVisible(false); //l21.setVisible(false); } public static void main(String[] args) { new dispatch(); } public void actionPerformed(ActionEvent ar) { if(ar.getSource()==generate) { try{ Process p = Runtime.getRuntime().exec("iReport-5.2.0\\bin\\ireport.exe"); //C:\\Users\\Anshdeep\\Desktop\\Ganpati Final\\ } catch(Exception e) { e.printStackTrace(); } try { rsn=s1.executeQuery("select Billno from tempbill"); while(rsn.next()) { p=Integer.parseInt(rsn.getString(1)); } s1.executeUpdate("update current set bno='"+p+"'"); o=p+1; } catch(Exception e) { JOptionPane.showMessageDialog(null,e.getMessage()); } } if(ar.getSource()==home) { new adminmain(); try { s.close(); con.close(); } catch(Exception e) { JOptionPane.showMessageDialog(null,e.getMessage()); } this.dispose(); } if(ar.getSource()==logout) { new login(); try { s.close(); con.close(); } catch(Exception e) { JOptionPane.showMessageDialog(null,e.getMessage()); } this.dispose(); } if(ar.getSource()==dis) { if(name1.getSelectedItem()=="Select") { JOptionPane.showMessageDialog(null,"Select Item Name"); } else { try { this.rsn1 = this.sq.executeQuery("select * from party where Customername='" + this.name1.getSelectedItem() + "'"); this.rsn3 = this.s4.executeQuery("select * from sales where Name='" + this.name1.getSelectedItem() + "' AND State='Ready To Dispatch'"); if(rsn1.next()) { while(rsn3.next()) { this.s2.executeUpdate("insert into tempbill values('" + this.o + "','" + this.rsn1.getString(1) + "','" + this.rsn1.getString(2) + "','" + this.rsn1.getString(3) + "','" + this.rsn1.getString(4) + "','" + this.rsn1.getString(5) + "','" + this.rsn3.getString(2) + "','" + this.rsn3.getString(7) + "','" + (Float.valueOf(this.rsn3.getString(5)).floatValue() * Float.valueOf(this.rsn3.getString(6)).floatValue() / Float.valueOf(144.0F).floatValue())*Integer.parseInt(rsn3.getString(7)) + "','" + this.rsn3.getString(8) + "','" + this.rsn3.getString(9)+ "','" + this.ws + "')"); } } s.executeUpdate("update sales set State='Dispatched' where Name='"+name1.getSelectedItem()+"'"); } catch(Exception e) { JOptionPane.showMessageDialog(null,e.getMessage()); } name1.removeAllItems(); name1.addItem("Select"); try { rs1=s.executeQuery("select name from sales where State='Ready To Dispatch' AND Transaction='Done'"); name1.removeAllItems(); name1.addItem("Select"); while(rs1.next()) { if(((DefaultComboBoxModel)name1.getModel()).getIndexOf(rs1.getString(1)) == -1) { name1.addItem(rs1.getString(1) ); } } } catch(Exception ex) { JOptionPane.showMessageDialog(null,ex.getMessage()); } //dis.setVisible(false); //item.setVisible(false); //item1.setVisible(false); //find.setVisible(true); name1.setEnabled(true); //l1.setVisible(false); //l2.setVisible(false); //l11.setVisible(false); //l21.setVisible(false); generate.setVisible(true); // this.getRootPane().setDefaultButton(find); } Columnname.clear(); data.clear(); try { rs5=s.executeQuery("select * from sales where State='Ready To Dispatch' AND Transaction='Done'"); ResultSetMetaData md= rs5.getMetaData(); int columns= md.getColumnCount(); for(int i=1;i<=columns;i++) { Columnname.addElement(md.getColumnName(i)); } while(rs5.next()) { Vector row= new Vector(columns); data.addElement(row); for(int i=1;i<=columns;i++) { row.addElement(rs5.getObject(i)); } } JTable table = new JTable(data,Columnname); table.setEnabled(false); TableColumn col; for( int i=0; i< table.getColumnCount();i++) { col=table.getColumnModel().getColumn(i); col.setMinWidth(30); table.setRowHeight(30); } JTableHeader header = table.getTableHeader(); header.setBackground(Color.WHITE); JScrollPane pane = new JScrollPane(table); pane.setPreferredSize(new Dimension(1100,510)); panel.setBounds(30, 60, 1100, 520); table.setPreferredScrollableViewportSize(table.getPreferredSize()); table.setFillsViewportHeight(true); pane.getViewport().setBackground(Color.WHITE); panel.add(pane); panel.setBackground(Color.white); //setExtendedState(MAXIMIZED_BOTH); getContentPane().setBackground(Color.white); } catch(Exception ex) { JOptionPane.showMessageDialog(null,ex.getMessage()); } } } }
[ "lovinglysahib" ]
lovinglysahib
4849cf5ba6654cdbf0f12fc3395aa3c8187585a2
237064ebc63adeed0a874779b009c025260cc013
/src/io/houf/dungeoncrawler/command/impl/PackCommand.java
14e0949fe203f1949742a590d8cdf0f429c76ee2
[]
no_license
houfio/dungeoncrawler
562143d11b0fbb7db1d4655119a2f3bd0e16164f
1474cde831177f2f0c102afec3861b12ac431cf5
refs/heads/master
2021-10-16T08:31:19.988244
2019-02-09T14:03:59
2019-02-09T14:03:59
168,928,924
0
0
null
null
null
null
UTF-8
Java
false
false
1,072
java
package io.houf.dungeoncrawler.command.impl; import io.houf.dungeoncrawler.Game; import io.houf.dungeoncrawler.argument.Argument; import io.houf.dungeoncrawler.argument.ArgumentMap; import io.houf.dungeoncrawler.command.Command; import io.houf.dungeoncrawler.ui.LogLine; import java.awt.*; import java.util.stream.Collectors; public class PackCommand implements Command { @Override public String getName() { return "pack"; } @Override public Argument<?>[] getArguments() { return new Argument[0]; } @Override public LogLine execute(Game game, ArgumentMap arguments) { // Get all item names from backpack var items = game.getCurrent().player.backpack .stream() .map(i -> i.name) .collect(Collectors.toList()); if (items.size() == 0) { return new LogLine("Your backpack is completely empty.", Color.RED); } return new LogLine("You have the following items in your backpack: " + String.join(", ", items) + ".", Color.PINK); } }
[ "lexhoufio@gmail.com" ]
lexhoufio@gmail.com
338524ba1fb4e465ed83f8b32f2da26408457e83
d683003bfec3418e795eafbc27b7cbe80676fd3f
/src/main/java/QA/QaManual.java
2099cd354de6510d66b25c1716045487692f2ca9
[]
no_license
pist92/MentoringProgram
d73f9ba4602e52d4a512c80ebfb9986d5af74753
c2b4867ce590b95903061ad2611e91f08cac41c3
refs/heads/master
2023-06-22T19:42:29.865062
2021-07-26T11:37:24
2021-07-26T11:37:24
389,611,379
0
0
null
null
null
null
UTF-8
Java
false
false
239
java
package QA; public class QaManual extends QaEngineer{ int yearsOfExperienceInMobileTesting = 5; String position = "MiddleQA"; boolean certificateISQTB = false; char levelOfSalary = 'C'; double daysOfVacation = 17.5; }
[ "kutsenkoserhii@gmail.com" ]
kutsenkoserhii@gmail.com
3aa1c26c297189d5c666dc94f3da620743ebd6d3
be557d35fd10c362fc57528406d32b17ec82b3a7
/generic-sql/src/main/java/com/assignment/sql/dtos/ReportRequest.java
d3ef597c853c03ede75c60fc86b3cd5f94391c24
[]
no_license
ragnar-lothbrok/bonzai-assignment
d06492977e560c1f574c21b38da3e89a668e0865
c0c353f2285f66e833413b5547745b65939cbc24
refs/heads/master
2021-01-22T10:39:50.213894
2017-02-16T07:25:55
2017-02-16T07:25:55
82,022,975
0
0
null
null
null
null
UTF-8
Java
false
false
796
java
package com.assignment.sql.dtos; import java.io.Serializable; public class ReportRequest implements Serializable { private static final long serialVersionUID = 1L; private String startdate; private String enddate; private String dimension; private String metrics; public String getStartdate() { return startdate; } public void setStartdate(String startdate) { this.startdate = startdate; } public String getEnddate() { return enddate; } public void setEnddate(String enddate) { this.enddate = enddate; } public String getDimension() { return dimension; } public void setDimension(String dimension) { this.dimension = dimension; } public String getMetrics() { return metrics; } public void setMetrics(String metrics) { this.metrics = metrics; } }
[ "raghunandan.gupta@exclusively.com" ]
raghunandan.gupta@exclusively.com
43b96e37201214ffd324ba02b898158d32ce7689
85e989edf54c946b8e251e30e6e7026ca637ebef
/rpc-spring-boot-starter-autoconfigure/src/main/java/com/potato/rpc/register/RegistryFactory.java
387a7eb415cfbac5a0f4308eb501f4f964a3918a
[]
no_license
lizhifuabc/tomato-rpc
2ccf40b7a5f6a16c5162e0f3812938512df1b8ce
3cae4f91ffa3326372af5ab66644f291bcd92f8f
refs/heads/main
2023-07-20T01:17:41.422784
2021-07-22T03:13:14
2021-07-22T03:13:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,554
java
package com.potato.rpc.register; import com.potato.rpc.base.Destroyable; import com.potato.rpc.config.RegistryConfig; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; /** * 注册工厂 * * @author lizhifu * @date 2021/7/8 */ public class RegistryFactory { private final static Logger logger = LoggerFactory.getLogger(RegistryFactory.class); static { Runtime.getRuntime().addShutdownHook(new Thread() { @Override public void run() { RegistryFactory.destroy(); } }); } /** * 保存全部的配置和注册中心实例 */ private final static ConcurrentMap<RegistryConfig, Destroyable> ALL_REGISTRIES = new ConcurrentHashMap<RegistryConfig, Destroyable>(); public synchronized static void put(RegistryConfig registryConfig,Destroyable serviceRegistry){ ALL_REGISTRIES.put(registryConfig,serviceRegistry); } /** * 注册中心关闭 */ public static void destroy() { for (Map.Entry<RegistryConfig, Destroyable> entry : ALL_REGISTRIES.entrySet()) { RegistryConfig config = entry.getKey(); Destroyable registry = entry.getValue(); try { logger.info("service destroy config:{}",config); registry.destroy(); ALL_REGISTRIES.remove(config); } catch (Exception e) { } } } }
[ "lizhifuabc@163.com" ]
lizhifuabc@163.com
5ba800248f018661f8253f464671752361567113
8befcc3f7d0f88b7b6324e84779dfeaf4e8dc06d
/src/main/java/pl/klobut/take_credit/mapper/CreditMapper.java
497d6252b8568029468f521bc05c5437935240d6
[]
no_license
Ewelina1994/take_credit
98bce7f0af14e94349892ca92b53fef930f60d29
6642cbd3c434fa6fdae04dfcb67af00eb971530b
refs/heads/master
2023-03-19T16:19:35.647273
2021-03-03T23:23:58
2021-03-03T23:23:58
344,077,634
0
0
null
null
null
null
UTF-8
Java
false
false
940
java
package pl.klobut.take_credit.mapper; import org.springframework.stereotype.Component; import pl.klobut.take_credit.domain.entities.CreditEntity; import pl.klobut.take_credit.domain.models.Credit; import java.util.List; @Component public class CreditMapper implements EntityMapper<Credit, CreditEntity> { @Override public CreditEntity toEntity(Credit credit) { CreditEntity creditEntity= new CreditEntity(); creditEntity.setCreditName(credit.getCreditName()); return creditEntity; } @Override public Credit toDto(CreditEntity creditEntity) { Credit credit= new Credit(); credit.setCreditName(creditEntity.getCreditName()); return credit; } @Override public List<CreditEntity> toEntityList(List<Credit> credits) { return null; } @Override public List<Credit> toDtoList(List<CreditEntity> creditEntities) { return null; } }
[ "ewelinakobut@gmail.com" ]
ewelinakobut@gmail.com
436aaad863edb8bddde055c59d025c51400d793f
a4667335a8b7639a0f21a1010a849ddd0562bc8c
/src/test/java/by/iba/vfapi/services/PipelineServiceTest.java
edb8c9a2112cc75adde76fbb930d2a67a3aa6510
[ "Apache-2.0" ]
permissive
Ranganaths/Visual-Flow-backend
a98d6cfc1e4bd8b397e919cc415b09b4b5d06345
24f8ce6e944eff13f3a1a64a23c9f426189bbb22
refs/heads/main
2023-05-05T16:30:19.418437
2021-05-13T13:14:00
2021-05-13T13:14:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
32,619
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 by.iba.vfapi.services; import by.iba.vfapi.dto.Constants; import by.iba.vfapi.dto.pipelines.CronPipelineDto; import by.iba.vfapi.dto.pipelines.PipelineOverviewDto; import by.iba.vfapi.dto.pipelines.PipelineOverviewListDto; import by.iba.vfapi.dto.pipelines.PipelineResponseDto; import by.iba.vfapi.exceptions.ArgoClientException; import by.iba.vfapi.exceptions.BadRequestException; import by.iba.vfapi.model.argo.Arguments; import by.iba.vfapi.model.argo.CronWorkflow; import by.iba.vfapi.model.argo.CronWorkflowSpec; import by.iba.vfapi.model.argo.DagTask; import by.iba.vfapi.model.argo.DagTemplate; import by.iba.vfapi.model.argo.NodeStatus; import by.iba.vfapi.model.argo.Parameter; import by.iba.vfapi.model.argo.Template; import by.iba.vfapi.model.argo.Workflow; import by.iba.vfapi.model.argo.WorkflowStatus; import by.iba.vfapi.model.argo.WorkflowTemplate; import by.iba.vfapi.model.argo.WorkflowTemplateSpec; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import io.argoproj.workflow.ApiException; import io.argoproj.workflow.apis.WorkflowServiceApi; import io.argoproj.workflow.models.WorkflowRetryRequest; import io.argoproj.workflow.models.WorkflowTerminateRequest; import io.fabric8.kubernetes.api.model.ObjectMetaBuilder; import io.fabric8.kubernetes.client.ResourceNotFoundException; import java.io.IOException; import java.util.List; import java.util.Map; import java.util.stream.Collectors; import org.apache.commons.codec.binary.Base64; import org.joda.time.DateTime; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.Mock; import org.mockito.junit.jupiter.MockitoExtension; import static by.iba.vfapi.dto.Constants.NODE_TYPE_POD; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.anyString; import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.doNothing; import static org.mockito.Mockito.never; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; @ExtendWith(MockitoExtension.class) class PipelineServiceTest { private static JsonNode GRAPH; static { try { GRAPH = new ObjectMapper().readTree("{\n" + " \"graph\": [\n" + " {\n" + " \"value\": {\n" + " \"jobId\": \"cm1\"\n" + " },\n" + " \"id\": \"jRjFu5yR\",\n" + " \"vertex\": true\n" + " },\n" + " {\n" + " \"value\": {\n" + " \"jobId\": \"cm2\"\n" + " },\n" + " \"id\": \"cyVyU8Xfw\",\n" + " \"vertex\": true\n" + " },\n" + " {\n" + " \"value\": {\n" + " \"successPath\": true\n" + " },\n" + " \"source\": \"jRjFu5yR\",\n" + " \"target\": \"cyVyU8Xfw\"\n" + " }\n" + " ]\n" + "}"); } catch (JsonProcessingException e) { e.printStackTrace(); } } @Mock private ArgoKubernetesService argoKubernetesService; @Mock private WorkflowServiceApi apiInstance; private PipelineService pipelineService; @BeforeEach void setUp() { this.pipelineService = new PipelineService("sparkImage", "sparkMaster", "spark", "pullSecret", "slackImage", argoKubernetesService, apiInstance); } @Test void testCreate() { when(argoKubernetesService.getWorkflowTemplate(eq("projectId"), anyString())).thenThrow(new ResourceNotFoundException("")); doNothing() .when(argoKubernetesService) .createOrReplaceWorkflowTemplate(eq("projectId"), any(WorkflowTemplate.class)); pipelineService.create("projectId", "name", GRAPH); verify(argoKubernetesService).createOrReplaceWorkflowTemplate(anyString(), any(WorkflowTemplate.class)); } @Test void testCreateNotUniqueName() { when(argoKubernetesService.getWorkflowTemplatesByLabels("projectId", Map.of(Constants.NAME, "name"))).thenReturn(List.of(new WorkflowTemplate(), new WorkflowTemplate())); assertThrows(BadRequestException.class, () -> pipelineService.create("projectId", "name", GRAPH), "Expected exception must be thrown"); verify(argoKubernetesService, never()).createOrReplaceWorkflowTemplate(anyString(), any(WorkflowTemplate.class)); } @Test void testGetById() throws IOException { WorkflowTemplate workflowTemplate = new WorkflowTemplate(); workflowTemplate.setMetadata(new ObjectMetaBuilder() .withName("id") .addToLabels(Constants.NAME, "name") .addToAnnotations(Constants.DEFINITION, Base64.encodeBase64String(GRAPH.toString().getBytes())) .addToAnnotations(Constants.LAST_MODIFIED, "lastModified") .build()); workflowTemplate.setSpec(new WorkflowTemplateSpec().templates(List.of(new Template() .name("dagTemplate") .dag(new DagTemplate().addTasksItem( new DagTask()))))); when(argoKubernetesService.getWorkflowTemplate("projectId", "id")).thenReturn(workflowTemplate); when(argoKubernetesService.getWorkflow("projectId", "id")).thenThrow(ResourceNotFoundException.class); when(argoKubernetesService.isAccessible("projectId", "workflowtemplates", "argoproj.io", Constants.UPDATE_ACTION)).thenReturn(true); when(argoKubernetesService.isAccessible("projectId", "workflows", "argoproj.io", Constants.CREATE_ACTION)).thenReturn(true); PipelineResponseDto expected = ((PipelineResponseDto) new PipelineResponseDto() .id("id") .name("name") .lastModified("lastModified") .status("Draft") .runnable(true)).definition(new ObjectMapper().readTree(GRAPH.toString().getBytes())).editable(true); assertEquals(expected, pipelineService.getById("projectId", "id"), "Pipeline must be equals to expected"); } @Test void testGetAllInProject() { WorkflowTemplate workflowTemplate = new WorkflowTemplate(); workflowTemplate.setMetadata(new ObjectMetaBuilder() .withName("id1") .addToLabels(Constants.NAME, "name1") .addToAnnotations(Constants.DEFINITION, Base64.encodeBase64String(GRAPH.toString().getBytes())) .addToAnnotations(Constants.LAST_MODIFIED, "lastModified") .build()); workflowTemplate.setSpec(new WorkflowTemplateSpec().templates(List.of(new Template() .name("dagTemplate") .dag(new DagTemplate().addTasksItem( new DagTask() .arguments(new Arguments() .addParametersItem( new Parameter() .name( "configMap") .value( "id1"))) .name("name")))))); List<WorkflowTemplate> workflowTemplates = List.of(workflowTemplate); Workflow workflow = new Workflow(); WorkflowStatus status = new WorkflowStatus(); status.setFinishedAt(DateTime.parse("2020-10-27T10:14:46Z")); status.setStartedAt(DateTime.parse("2020-10-27T10:14:46Z")); status.setPhase("Running"); NodeStatus nodeStatus1 = new NodeStatus(); nodeStatus1.setDisplayName("pipeline"); nodeStatus1.setPhase("Running"); nodeStatus1.setFinishedAt(DateTime.parse("2021-10-28T07:37:46Z")); nodeStatus1.setTemplateName("sparkTemplate"); nodeStatus1.setType(NODE_TYPE_POD); NodeStatus nodeStatus2 = new NodeStatus(); nodeStatus2.setDisplayName("pipeline-2681521834"); nodeStatus2.setPhase("Pending"); nodeStatus2.setFinishedAt(DateTime.parse("2021-10-28T07:37:46Z")); nodeStatus2.setTemplateName("notificationTemplate"); nodeStatus2.setType(NODE_TYPE_POD); status.setNodes(List .of(nodeStatus1, nodeStatus2) .stream() .collect(Collectors.toMap(NodeStatus::getDisplayName, ns -> ns))); DagTemplate dagTemplate = new DagTemplate(); dagTemplate.setTasks(List.of(new DagTask() .arguments(new Arguments().addParametersItem(new Parameter() .name("graphId") .value("1"))) .name("pipeline") .template("sparkTemplate"), new DagTask() .arguments(new Arguments().addParametersItem(new Parameter() .name("graphId") .value("2"))) .name("pipeline-2681521834") .template("notificationTemplate"))); status.setStoredTemplates(Map.of("dagTemplate", new Template() .name(Constants.DAG_TEMPLATE_NAME) .dag(dagTemplate) .name("dagTemplate"), "notificationTemplate", new Template().name(PipelineService.NOTIFICATION_TEMPLATE_NAME), "sparkTemplate", new Template().name(PipelineService.SPARK_TEMPLATE_NAME))); workflow.setStatus(status); when(argoKubernetesService.getAllWorkflowTemplates("projectId")).thenReturn(workflowTemplates); when(argoKubernetesService.getWorkflow("projectId", "id1")).thenReturn(workflow); when(argoKubernetesService.getCronWorkflow("projectId", "id1")).thenThrow(ResourceNotFoundException.class); when(argoKubernetesService.isAccessible("projectId", "workflowtemplates", "argoproj.io", Constants.UPDATE_ACTION)).thenReturn(true); when(argoKubernetesService.isAccessible("projectId", "workflows", "argoproj.io", Constants.CREATE_ACTION)).thenReturn(true); PipelineOverviewListDto pipelines = pipelineService.getAll("projectId"); PipelineOverviewDto expected = new PipelineOverviewDto() .id("id1") .name("name1") .lastModified("lastModified") .startedAt("2020-10-27 10:14:46 +0000") .finishedAt("2020-10-27 10:14:46 +0000") .status("Running") .progress(0.0f) .cron(false) .runnable(true) .jobsStatuses(Map.of("1", "Running", "2", "Pending")); assertEquals(expected, pipelines.getPipelines().get(0), "Pipeline must be equals to expected"); assertTrue(pipelines.isEditable(), "Must be true"); } @Test void testGetAllInProjectCron() { WorkflowTemplate workflowTemplate = new WorkflowTemplate(); workflowTemplate.setMetadata(new ObjectMetaBuilder() .withName("id1") .addToLabels(Constants.NAME, "name1") .addToAnnotations(Constants.DEFINITION, Base64.encodeBase64String(GRAPH.toString().getBytes())) .addToAnnotations(Constants.LAST_MODIFIED, "lastModified") .build()); workflowTemplate.setSpec(new WorkflowTemplateSpec().templates(List.of(new Template() .name("dagTemplate") .dag(new DagTemplate().addTasksItem( new DagTask() .arguments(new Arguments() .addParametersItem( new Parameter() .name( "configMap") .value( "id1"))) .name("name")))))); List<WorkflowTemplate> workflowTemplates = List.of(workflowTemplate); Workflow workflow = new Workflow(); CronWorkflow cronWorkflow = new CronWorkflow(); WorkflowStatus status = new WorkflowStatus(); status.setFinishedAt(DateTime.parse("2020-10-27T10:14:46Z")); status.setStartedAt(DateTime.parse("2020-10-27T10:14:46Z")); status.setPhase("Running"); NodeStatus nodeStatus1 = new NodeStatus(); nodeStatus1.setDisplayName("pipeline"); nodeStatus1.setPhase("Running"); nodeStatus1.setFinishedAt(DateTime.parse("2021-10-28T07:37:46Z")); nodeStatus1.setTemplateName("sparkTemplate"); nodeStatus1.setType(NODE_TYPE_POD); NodeStatus nodeStatus2 = new NodeStatus(); nodeStatus2.setDisplayName("pipeline-2681521834"); nodeStatus2.setPhase("Pending"); nodeStatus2.setFinishedAt(DateTime.parse("2021-10-28T07:37:46Z")); nodeStatus2.setTemplateName("notificationTemplate"); nodeStatus2.setType(NODE_TYPE_POD); status.setNodes(List .of(nodeStatus1, nodeStatus2) .stream() .collect(Collectors.toMap(NodeStatus::getDisplayName, ns -> ns))); DagTemplate dagTemplate = new DagTemplate(); dagTemplate.setTasks(List.of(new DagTask() .arguments(new Arguments().addParametersItem(new Parameter() .name("graphId") .value("1"))) .name("pipeline") .template("sparkTemplate"), new DagTask() .arguments(new Arguments().addParametersItem(new Parameter() .name("graphId") .value("2"))) .name("pipeline-2681521834") .template("notificationTemplate"))); status.setStoredTemplates(Map.of("dagTemplate", new Template() .name(Constants.DAG_TEMPLATE_NAME) .dag(dagTemplate) .name("dagTemplate"), "notificationTemplate", new Template().name(PipelineService.NOTIFICATION_TEMPLATE_NAME), "sparkTemplate", new Template().name(PipelineService.SPARK_TEMPLATE_NAME))); workflow.setStatus(status); when(argoKubernetesService.getAllWorkflowTemplates("projectId")).thenReturn(workflowTemplates); when(argoKubernetesService.getWorkflow("projectId", "id1")).thenReturn(workflow); when(argoKubernetesService.getCronWorkflow("projectId", "id1")).thenReturn(cronWorkflow); when(argoKubernetesService.isAccessible("projectId", "workflowtemplates", "argoproj.io", Constants.UPDATE_ACTION)).thenReturn(true); when(argoKubernetesService.isAccessible("projectId", "workflows", "argoproj.io", Constants.CREATE_ACTION)).thenReturn(true); PipelineOverviewListDto pipelines = pipelineService.getAll("projectId"); PipelineOverviewDto expected = new PipelineOverviewDto() .id("id1") .name("name1") .lastModified("lastModified") .startedAt("2020-10-27 10:14:46 +0000") .finishedAt("2020-10-27 10:14:46 +0000") .status("Running") .progress(0.0f) .runnable(true) .jobsStatuses(Map.of("1", "Running", "2", "Pending")) .cron(true); assertEquals(expected, pipelines.getPipelines().get(0), "Pipeline must be equals to expected"); assertTrue(pipelines.isEditable(), "Must be true"); } @Test void testGetAllInProjectWithoutWorkflow() { WorkflowTemplate workflowTemplate = new WorkflowTemplate(); workflowTemplate.setMetadata(new ObjectMetaBuilder() .withName("id1") .addToLabels(Constants.NAME, "name1") .addToAnnotations(Constants.DEFINITION, Base64.encodeBase64String(GRAPH.toString().getBytes())) .addToAnnotations(Constants.LAST_MODIFIED, "lastModified") .build()); workflowTemplate.setSpec(new WorkflowTemplateSpec().templates(List.of(new Template() .name("dagTemplate") .dag(new DagTemplate().addTasksItem( new DagTask()))))); List<WorkflowTemplate> workflowTemplates = List.of(workflowTemplate); when(argoKubernetesService.getAllWorkflowTemplates("projectId")).thenReturn(workflowTemplates); when(argoKubernetesService.getWorkflow("projectId", "id1")).thenThrow(ResourceNotFoundException.class); when(argoKubernetesService.getCronWorkflow("projectId", "id1")).thenThrow(ResourceNotFoundException.class); when(argoKubernetesService.isAccessible("projectId", "workflowtemplates", "argoproj.io", Constants.UPDATE_ACTION)).thenReturn(true); when(argoKubernetesService.isAccessible("projectId", "workflows", "argoproj.io", Constants.CREATE_ACTION)).thenReturn(true); PipelineOverviewListDto pipelines = pipelineService.getAll("projectId"); PipelineOverviewDto expected = new PipelineOverviewDto() .id("id1") .name("name1") .status("Draft") .lastModified("lastModified") .cron(false) .runnable(true); assertEquals(expected, pipelines.getPipelines().get(0), "Pipeline must be equals to expected"); assertTrue(pipelines.isEditable(), "Must be true"); } @Test void testGetAllInProjectWithoutWorkflowCron() { WorkflowTemplate workflowTemplate = new WorkflowTemplate(); CronWorkflow cronWorkflow = new CronWorkflow(); workflowTemplate.setMetadata(new ObjectMetaBuilder() .withName("id1") .addToLabels(Constants.NAME, "name1") .addToAnnotations(Constants.DEFINITION, Base64.encodeBase64String(GRAPH.toString().getBytes())) .addToAnnotations(Constants.LAST_MODIFIED, "lastModified") .build()); workflowTemplate.setSpec(new WorkflowTemplateSpec().templates(List.of(new Template() .name("dagTemplate") .dag(new DagTemplate().addTasksItem( new DagTask()))))); List<WorkflowTemplate> workflowTemplates = List.of(workflowTemplate); when(argoKubernetesService.getAllWorkflowTemplates("projectId")).thenReturn(workflowTemplates); when(argoKubernetesService.getWorkflow("projectId", "id1")).thenThrow(ResourceNotFoundException.class); when(argoKubernetesService.getCronWorkflow("projectId", "id1")).thenReturn(cronWorkflow); when(argoKubernetesService.isAccessible("projectId", "workflowtemplates", "argoproj.io", Constants.UPDATE_ACTION)).thenReturn(true); when(argoKubernetesService.isAccessible("projectId", "workflows", "argoproj.io", Constants.CREATE_ACTION)).thenReturn(true); PipelineOverviewListDto pipelines = pipelineService.getAll("projectId"); PipelineOverviewDto expected = new PipelineOverviewDto() .id("id1") .name("name1") .status("Draft") .lastModified("lastModified") .runnable(true) .cron(true); assertEquals(expected, pipelines.getPipelines().get(0), "Pipeline must be equals to expected"); assertTrue(pipelines.isEditable(), "Must be true"); } @Test void testUpdate() { doNothing() .when(argoKubernetesService) .createOrReplaceWorkflowTemplate(eq("projectId"), any(WorkflowTemplate.class)); pipelineService.update("projectId", "id", GRAPH, "newName"); verify(argoKubernetesService).createOrReplaceWorkflowTemplate(anyString(), any(WorkflowTemplate.class)); } @Test void testDelete() { doNothing().when(argoKubernetesService).deleteWorkflowTemplate("projectId", "id"); doNothing().when(argoKubernetesService).deleteWorkflow("projectId", "id"); pipelineService.delete("projectId", "id"); verify(argoKubernetesService).deleteWorkflowTemplate("projectId", "id"); verify(argoKubernetesService).deleteWorkflow("projectId", "id"); } @Test void testRun() { doNothing().when(argoKubernetesService).createOrReplaceWorkflow(eq("projectId"), any(Workflow.class)); WorkflowTemplate workflowTemplate = new WorkflowTemplate(); workflowTemplate.setMetadata(new ObjectMetaBuilder() .withName("id") .addToLabels(Constants.NAME, "name") .addToAnnotations(Constants.DEFINITION, Base64.encodeBase64String(GRAPH.toString().getBytes())) .addToAnnotations(Constants.LAST_MODIFIED, "lastModified") .build()); workflowTemplate.setSpec(new WorkflowTemplateSpec().templates(List.of(new Template() .name(Constants.DAG_TEMPLATE_NAME) .dag(new DagTemplate())))); when(argoKubernetesService.getWorkflowTemplate(anyString(), anyString())).thenReturn(workflowTemplate); pipelineService.run("projectId", "id"); verify(argoKubernetesService).createOrReplaceWorkflow(eq("projectId"), any(Workflow.class)); } @Test void testStop() throws ApiException { when(apiInstance.workflowServiceTerminateWorkflow(eq("projectId"), eq("id"), any(WorkflowTerminateRequest.class))).thenReturn(null); pipelineService.stop("projectId", "id"); verify(apiInstance).workflowServiceTerminateWorkflow(anyString(), anyString(), any(WorkflowTerminateRequest.class)); } @Test void testStopFailure() throws ApiException { when(apiInstance.workflowServiceTerminateWorkflow(eq("projectId"), eq("id"), any(WorkflowTerminateRequest.class))).thenThrow( ApiException.class); assertThrows(ArgoClientException.class, () -> pipelineService.stop("projectId", "id"), "Expected exception must be thrown"); verify(apiInstance).workflowServiceTerminateWorkflow(anyString(), anyString(), any(WorkflowTerminateRequest.class)); } @Test void testResume() throws ApiException { when(apiInstance.workflowServiceRetryWorkflow(eq("projectId"), eq("id"), any(WorkflowRetryRequest.class))).thenReturn( null); pipelineService.resume("projectId", "id"); verify(apiInstance).workflowServiceRetryWorkflow(anyString(), anyString(), any(WorkflowRetryRequest.class)); } @Test void testCreateCron() { CronPipelineDto cronPipelineDto = new CronPipelineDto(); doNothing() .when(argoKubernetesService) .createOrReplaceCronWorkflow(eq("projectId"), any(CronWorkflow.class)); pipelineService.createCron("projectId", "id", cronPipelineDto); verify(argoKubernetesService).createOrReplaceCronWorkflow(eq("projectId"), any(CronWorkflow.class)); } @Test void testDeleteCron() { doNothing().when(argoKubernetesService).deleteCronWorkflow("projectId", "id"); pipelineService.deleteCron("projectId", "id"); verify(argoKubernetesService).deleteCronWorkflow("projectId", "id"); } @Test void testGetCronById() { CronPipelineDto expected = CronPipelineDto.builder().build(); CronWorkflow cronWorkflow = new CronWorkflow(); cronWorkflow.setSpec(new CronWorkflowSpec()); when(argoKubernetesService.getCronWorkflow("projectId", "id")).thenReturn(cronWorkflow); assertEquals(expected.getSchedule(), pipelineService.getCronById("projectId", "id").getSchedule(), "Schedule must be equals to expected"); } }
[ "sklimau@gomel.iba.by" ]
sklimau@gomel.iba.by
fde3f084b4146f06bcd7346aa180e199217fafa1
6fbe600832172a8cc559f41833bef2c054ccbbf4
/app/src/main/java/com/agrictech/techrice/NetworkConnection.java
604bede978c40aa3a666ff60ebad4601666a0282
[]
no_license
alumichael/TechRice
9e7b0d733710b00f1ef56b574983d1b9c4396526
0c2f4f96c073ac439a9c646cb59a680287689cbf
refs/heads/master
2022-12-14T11:09:25.565370
2020-09-14T11:59:17
2020-09-14T11:59:17
289,782,631
1
0
null
null
null
null
UTF-8
Java
false
false
1,191
java
package com.agrictech.techrice; import android.content.Context; import android.net.ConnectivityManager; import android.net.Network; import android.net.NetworkCapabilities; import android.net.NetworkInfo; import android.os.Build; public class NetworkConnection { public boolean isNetworkConnected(Context context) { final ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); if (cm != null) { if (Build.VERSION.SDK_INT < 23) { final NetworkInfo ni = cm.getActiveNetworkInfo(); if (ni != null) { return (ni.isConnected() && (ni.getType() == ConnectivityManager.TYPE_WIFI || ni.getType() == ConnectivityManager.TYPE_MOBILE)); } } else { final Network n = cm.getActiveNetwork(); if (n != null) { final NetworkCapabilities nc = cm.getNetworkCapabilities(n); return (nc.hasTransport(NetworkCapabilities.TRANSPORT_CELLULAR) || nc.hasTransport(NetworkCapabilities.TRANSPORT_WIFI)); } } } return false; } }
[ "alumichael9@gmail.com" ]
alumichael9@gmail.com
c9431542f5f6abf916311e59ab89e8f33be32744
8edbf37e84be2751eb1d18811ced2554cbafc816
/test/src/erchatree/Tree.java
9062f7ffd547b186a1be74f146199f28c0ec57bf
[]
no_license
yuchtao/Java-dataStructure-arithmetic
3eb1ab06a50f211b775bf4ef39f32af3511a2d3b
0b3b8d8ebd463ac536df18b9e2e3471db7e0d7de
refs/heads/master
2021-01-10T00:56:33.246014
2016-01-26T05:37:59
2016-01-26T05:37:59
50,405,831
0
0
null
null
null
null
GB18030
Java
false
false
3,264
java
package erchatree; public class Tree { private Node root; public Node find(int key){ Node curNode = root; while (curNode.iData != key) { if (key <curNode.iData) { curNode = curNode.leftChild; }else { curNode = curNode.rightChild; } if (curNode == null) { return null; } } return curNode; } public void insert(int id, double dd){ Node newNode = new Node(); newNode.iData = id; newNode.fData = dd; if (root == null) { root = newNode; }else{ Node current = root; Node parent; while (true) { parent = current; if (id < current.iData) { current = current.leftChild; if (current == null) { parent.leftChild = newNode; return; } }else { current = current.rightChild; if (current == null) { parent.rightChild = newNode; return; } } } } } public void inOrder(Node localRoot){ if (localRoot != null) { inOrder(localRoot.leftChild); System.out.println(localRoot.iData+" "); inOrder(localRoot.rightChild); } } public Node minimum(){ Node current,last = null; current = root; while (current != null) { last = current; current = current.leftChild; } return last; } public boolean delete(int key){ Node current = root; Node parent = root; boolean isLeftChild = true; while (current.iData != key) { parent = current; if (key < current.iData) { isLeftChild = true; current = current.leftChild; }else { isLeftChild = false; current = current.rightChild; } if (current == null) { return false; } } //删除没有子节点的及节点 if (current.leftChild == null && current.rightChild == null) { if (current == root) { root = null; }else if (isLeftChild) { parent.leftChild = null; } else { parent.rightChild = null; } }else if (current.rightChild == null) {//删除 有一个子节点的节点 if (current == root) { root = current.leftChild; }else if(isLeftChild){ parent.leftChild = current.leftChild; }else { parent.rightChild = current.leftChild; } }else if (current.leftChild == null) { if (current == root) { root = current.rightChild; }else if(isLeftChild){ parent.leftChild = current.rightChild; }else { parent.rightChild = current.rightChild; } }else{ //删除有两个子节点的节点 Node successor =getSuccessor(current); if (current == root) { root = successor; }else if (isLeftChild) { parent.leftChild =successor; }else { parent.rightChild = successor; } successor.leftChild = current.leftChild; } return true; } //找后继节点 private Node getSuccessor(Node delNode){ Node successorParent = delNode; Node successor = delNode; Node current = delNode.rightChild; while (current != null) { successorParent = successor; successor = current; current = current.leftChild; } if (successor != delNode.rightChild) { successorParent.leftChild = successor.rightChild; successor.rightChild = delNode.rightChild; } return successor; } }
[ "275558426@qq.com" ]
275558426@qq.com
2e651fd08836010bf6083e6e0a4672b376042a74
64506a9008a1cef32604a93864ca07281af7f0d1
/XACML/src/com/att/research/xacml/std/datatypes/Base64Binary.java
9d7cb611208e65c5f92cdc602f0baa1a70c296ad
[ "MIT" ]
permissive
tt3868/XACML
637e2f3f1df0b879168bc63284a4323d6afafcb8
255107dbb0b273d49a17b88b21ea2ef07a241db3
refs/heads/master
2020-05-29T12:22:30.807653
2014-09-26T13:13:57
2014-09-26T13:13:57
25,593,633
4
1
null
null
null
null
UTF-8
Java
false
false
3,220
java
/* * AT&T - PROPRIETARY * THIS FILE CONTAINS PROPRIETARY INFORMATION OF * AT&T AND IS NOT TO BE DISCLOSED OR USED EXCEPT IN * ACCORDANCE WITH APPLICABLE AGREEMENTS. * * Copyright (c) 2013 AT&T Knowledge Ventures * Unpublished and Not for Publication * All Rights Reserved */ package com.att.research.xacml.std.datatypes; import java.util.Arrays; import org.apache.commons.codec.DecoderException; import org.apache.commons.codec.binary.Base64; import com.att.research.xacml.api.SemanticString; import com.att.research.xacml.util.StringUtils; /** * Base64Binary provides utilities for converting the XACML base64Binary data type to and from <code>String</code> values. * * @author car * @version $Revision: 1.1 $ */ public class Base64Binary implements SemanticString { private byte[] data; /** * Creates a <code>Base64Binary</code> object from an array of <code>byte</code>s. * * @param dataIn the array of <code>byte</code>s */ public Base64Binary(byte[] dataIn) { this.data = dataIn; } /** * Creates a new <code>Base64Binary</code> by parsing the given <code>String</code> as hex binary data. * * @param stringBase64Binary the <code>String</code> to convert * @return a new <code>Base64Binary</code> from the converted <code>String</code>. */ public static Base64Binary newInstance(String stringBase64Binary) throws DecoderException { if (stringBase64Binary == null) { return null; } byte[] base64Bytes = (byte[])new Base64().decode(stringBase64Binary); return new Base64Binary(base64Bytes); } /** * Gets the array of <code>byte</code>s for this <code>Base64Binary</code>. * * @return the array of <code>byte</code>s for this <code>Base64Binary</code>. */ public byte[] getData() { return this.data; } @Override public int hashCode() { return (this.getData() == null ? 0 : this.getData().hashCode()); } @Override public boolean equals(Object obj) { if (obj == null || !(obj instanceof Base64Binary)) { return false; } else if (obj == this) { return true; } else { Base64Binary hexBinaryObj = (Base64Binary)obj; if (this.getData() == null) { if (hexBinaryObj.getData() == null) { return true; } else { return false; } } else { if (hexBinaryObj.getData() == null) { return false; } else { return Arrays.equals(this.getData(), hexBinaryObj.getData()); } } } } /** * Gets the <code>String</code> Base 64 binary representation of this <code>Base64Binary</code> object. * * @return the <code>String</code> Base 64 binary representation of this <code>Base64Binary</code> object. */ public String stringValue() { if (this.getData() == null) { return null; } else { return Base64.encodeBase64String(this.getData()); } } @Override public String toString() { StringBuilder stringBuilder = new StringBuilder("{"); byte[] thisData = this.getData(); if (thisData != null) { stringBuilder.append("data="); stringBuilder.append(StringUtils.toString(thisData)); } stringBuilder.append("}"); return stringBuilder.toString(); } }
[ "pam.dragosh@gmail.com" ]
pam.dragosh@gmail.com
78daebd31255e5cf4a646140b093903aa2e233b3
3eb6182027f1889f87964bb11db67ad6796ef6a7
/intramirror-root/intramirror-product-service/intramirror-product-service-api/src/main/java/com/intramirror/product/api/model/Promotion.java
9a82f89cb73d9b355660f9e88e935ab605ec2154
[]
no_license
1187717503/BoutiquePortal
dce23cc8913a4345182f36d840141c27e16c9e00
b0042ea16cd964dc57e97165cbe0ddf989bce57e
refs/heads/release_boutique
2022-12-23T17:32:13.735834
2019-07-18T13:56:57
2019-07-18T13:56:57
197,595,020
1
3
null
2022-12-16T09:15:57
2019-07-18T13:43:30
Java
UTF-8
Java
false
false
8,783
java
package com.intramirror.product.api.model; import java.util.Date; public class Promotion { /** * This field was generated by MyBatis Generator. * This field corresponds to the database column t_promotion.promotion_id * * @mbggenerated */ private Long promotionId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column t_promotion.banner_id * * @mbggenerated */ private Long bannerId; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column t_promotion.promotion_name * * @mbggenerated */ private String promotionName; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column t_promotion.start_time * * @mbggenerated */ private Date startTime; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column t_promotion.banner_img * * @mbggenerated */ private String bannerImg; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column t_promotion.poster_img * * @mbggenerated */ private String posterImg; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column t_promotion.created_at * * @mbggenerated */ private Date createdAt; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column t_promotion.updated_at * * @mbggenerated */ private Date updatedAt; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column t_promotion.enabled * * @mbggenerated */ private Boolean enabled; /** * This field was generated by MyBatis Generator. * This field corresponds to the database column t_promotion.description * * @mbggenerated */ private String description; /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_promotion.promotion_id * * @return the value of t_promotion.promotion_id * * @mbggenerated */ public Long getPromotionId() { return promotionId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_promotion.promotion_id * * @param promotionId the value for t_promotion.promotion_id * * @mbggenerated */ public void setPromotionId(Long promotionId) { this.promotionId = promotionId; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_promotion.banner_id * * @return the value of t_promotion.banner_id * * @mbggenerated */ public Long getBannerId() { return bannerId; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_promotion.banner_id * * @param bannerId the value for t_promotion.banner_id * * @mbggenerated */ public void setBannerId(Long bannerId) { this.bannerId = bannerId; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_promotion.promotion_name * * @return the value of t_promotion.promotion_name * * @mbggenerated */ public String getPromotionName() { return promotionName; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_promotion.promotion_name * * @param promotionName the value for t_promotion.promotion_name * * @mbggenerated */ public void setPromotionName(String promotionName) { this.promotionName = promotionName == null ? null : promotionName.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_promotion.start_time * * @return the value of t_promotion.start_time * * @mbggenerated */ public Date getStartTime() { return startTime; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_promotion.start_time * * @param startTime the value for t_promotion.start_time * * @mbggenerated */ public void setStartTime(Date startTime) { this.startTime = startTime; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_promotion.banner_img * * @return the value of t_promotion.banner_img * * @mbggenerated */ public String getBannerImg() { return bannerImg; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_promotion.banner_img * * @param bannerImg the value for t_promotion.banner_img * * @mbggenerated */ public void setBannerImg(String bannerImg) { this.bannerImg = bannerImg == null ? null : bannerImg.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_promotion.poster_img * * @return the value of t_promotion.poster_img * * @mbggenerated */ public String getPosterImg() { return posterImg; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_promotion.poster_img * * @param posterImg the value for t_promotion.poster_img * * @mbggenerated */ public void setPosterImg(String posterImg) { this.posterImg = posterImg == null ? null : posterImg.trim(); } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_promotion.created_at * * @return the value of t_promotion.created_at * * @mbggenerated */ public Date getCreatedAt() { return createdAt; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_promotion.created_at * * @param createdAt the value for t_promotion.created_at * * @mbggenerated */ public void setCreatedAt(Date createdAt) { this.createdAt = createdAt; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_promotion.updated_at * * @return the value of t_promotion.updated_at * * @mbggenerated */ public Date getUpdatedAt() { return updatedAt; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_promotion.updated_at * * @param updatedAt the value for t_promotion.updated_at * * @mbggenerated */ public void setUpdatedAt(Date updatedAt) { this.updatedAt = updatedAt; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_promotion.enabled * * @return the value of t_promotion.enabled * * @mbggenerated */ public Boolean getEnabled() { return enabled; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_promotion.enabled * * @param enabled the value for t_promotion.enabled * * @mbggenerated */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** * This method was generated by MyBatis Generator. * This method returns the value of the database column t_promotion.description * * @return the value of t_promotion.description * * @mbggenerated */ public String getDescription() { return description; } /** * This method was generated by MyBatis Generator. * This method sets the value of the database column t_promotion.description * * @param description the value for t_promotion.description * * @mbggenerated */ public void setDescription(String description) { this.description = description == null ? null : description.trim(); } }
[ "jian.shang@intramirror.com" ]
jian.shang@intramirror.com
9365f6452367c94f6a2406a994235fda041eb51c
82e4eecc2957aa470b04013286b027be46457ebc
/app/src/main/java/com/example/uai/MainActivity.java
a0f084c9950d6bcc4ec8dd54e983f80aaf0ed2de
[]
no_license
bayupangestu/test
79fdc5c15508c69899b790dde8875573005f0147
dee870c3706220805330c0451dbd1ebcb587d228
refs/heads/master
2020-04-19T00:34:14.170320
2019-01-26T13:45:05
2019-01-26T13:45:05
167,850,671
0
0
null
null
null
null
UTF-8
Java
false
false
9,548
java
package com.example.uai; import android.app.DatePickerDialog; import android.app.ProgressDialog; import android.graphics.Color; import android.graphics.drawable.ColorDrawable; import android.os.Bundle; import android.support.design.widget.FloatingActionButton; import android.support.design.widget.Snackbar; import android.util.Log; import android.view.View; import android.support.design.widget.NavigationView; import android.support.v4.view.GravityCompat; import android.support.v4.widget.DrawerLayout; import android.support.v7.app.ActionBarDrawerToggle; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.view.Menu; import android.view.MenuItem; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.CheckBox; import android.widget.DatePicker; import android.widget.EditText; import android.widget.ImageButton; import android.widget.LinearLayout; import android.widget.ProgressBar; import android.widget.Spinner; import android.widget.Toast; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import com.android.volley.RequestQueue; import com.android.volley.toolbox.StringRequest; import com.android.volley.toolbox.Volley; import java.util.ArrayList; import java.util.Calendar; public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener { private static final String TAG = "MainActivity"; //buat date di datepicker private LinearLayout tambah; Spinner spAgama,spjaket,sppilihan1,sppilihan2,spjalur,sptahun; private EditText tanggallahir; private DatePickerDialog.OnDateSetListener mDateSetListener; private CheckBox checkbox; NavigationView navigationView; private String URLstring="https://studentdesk.uai.ac.id/rest/index.php/api/camaru/getProdi/format/json"; //API private static ProgressBar mprogressBar; //API private ArrayList<GoodModel> goodModelArrayList; //API private ArrayList<String> names = new ArrayList<String>();//API @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); spAgama = (Spinner) findViewById(R.id.spinneragama); spAgama = (Spinner) findViewById(R.id.spinneragama); spjaket = (Spinner) findViewById(R.id.spinnerjaket); sppilihan1 = (Spinner) findViewById(R.id.spinerpilihan1); sppilihan2 = (Spinner) findViewById(R.id.spinerpilihan2); spjalur = (Spinner) findViewById(R.id.spinnerjalurmasuk); sptahun = (Spinner) findViewById(R.id.spinnertahun); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); getSupportActionBar().setTitle("Pendaftaran Test On Site"); retrieveJSON(); //spinner android ArrayAdapter<String> myAdapter = new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_1, getResources().getStringArray(R.array.agama)); //ambil dari string.xml myAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); spAgama.setAdapter(myAdapter); ArrayAdapter<String> Adapterjaket = new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_1, getResources().getStringArray(R.array.jaket));//ambil dari string.xml Adapterjaket.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); spjaket.setAdapter(Adapterjaket); ArrayAdapter<String> Adapterpilihan1 = new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_1, getResources().getStringArray(R.array.pilihan)); //ambil dari string.xml Adapterjaket.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); sppilihan1.setAdapter(Adapterpilihan1); ArrayAdapter<String> Adapterpilihan2 = new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_1, getResources().getStringArray(R.array.pilihan));//ambil dari string.xml Adapterjaket.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); sppilihan2.setAdapter(Adapterpilihan2); ArrayAdapter<String> Adapterjalurmasuk = new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_1, getResources().getStringArray(R.array.masuk));//ambil dari string.xml Adapterjalurmasuk.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); spjalur.setAdapter(Adapterjalurmasuk); ArrayAdapter<String> Adaptertahun = new ArrayAdapter<String>(MainActivity.this, android.R.layout.simple_list_item_1, getResources().getStringArray(R.array.tahun));//ambil dari string.xml Adaptertahun.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); sptahun.setAdapter(Adaptertahun); tanggallahir = (EditText) findViewById(R.id.etxtanggallahir); tanggallahir.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Calendar cal = Calendar.getInstance(); int year = cal.get(Calendar.YEAR); int month = cal.get(Calendar.MONTH); int day = cal.get(Calendar.DAY_OF_MONTH); DatePickerDialog dialog = new DatePickerDialog( MainActivity.this, android.R.style.Theme_Material_Dialog_MinWidth, mDateSetListener, year, month, day); dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT)); dialog.show(); } }); mDateSetListener = new DatePickerDialog.OnDateSetListener() { @Override public void onDateSet(DatePicker view, int year, int month, int day) { month = month + 1; Log.d(TAG, "onDateSet: mm/dd/yyy" + month + "/" + day + "/" + year); String date = month + "/" + day + "/" + year; tanggallahir.setText(date); } }; checkbox = (CheckBox) findViewById(R.id.cbcek); tambah = (LinearLayout) findViewById(R.id.layouttambahsekolah); checkbox.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if (checkbox.isChecked()) { tambah.setVisibility(View.VISIBLE); } else if (!checkbox.isChecked()) { tambah.setVisibility(View.GONE); } } }); //default dari drawer layout DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); ActionBarDrawerToggle toggle = new ActionBarDrawerToggle( this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close); drawer.addDrawerListener(toggle); toggle.syncState(); NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view); navigationView.setNavigationItemSelectedListener(this); } private void retrieveJSON(){ }//API @Override//default dari drawer layout public void onBackPressed() { DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); if (drawer.isDrawerOpen(GravityCompat.START)) { drawer.closeDrawer(GravityCompat.START); } else { super.onBackPressed(); } } @Override //default dari drawer layout public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { //default dari drawer layout // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement return super.onOptionsItemSelected(item); } @SuppressWarnings("StatementWithEmptyBody") @Override //default dari drawer layout public boolean onNavigationItemSelected(MenuItem item) { // Handle navigation view item clicks here. int id = item.getItemId(); if (id == R.id.halamanutama) { Toast.makeText(getApplicationContext(),"halaman utama",Toast.LENGTH_LONG).show(); } else if (id == R.id.formulirpendaftaran) { Toast.makeText(getApplicationContext(),"formulir pendaftara",Toast.LENGTH_LONG).show(); } else if (id == R.id.biayaperkuliahan) { Toast.makeText(getApplicationContext(),"biaya perkuliahan",Toast.LENGTH_LONG).show(); } else if (id == R.id.potonganbiaya) { Toast.makeText(getApplicationContext(),"potongan biaya",Toast.LENGTH_LONG).show(); } else if (id == R.id.jalurmasuk) { Toast.makeText(getApplicationContext(),"jalur masuk",Toast.LENGTH_LONG).show(); } else if (id == R.id.faq) { Toast.makeText(getApplicationContext(),"FAQ",Toast.LENGTH_LONG).show(); } DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); drawer.closeDrawer(GravityCompat.START); return true; } }
[ "bayupangestu21@gmail.com" ]
bayupangestu21@gmail.com
410e1c59be39a4c409a80bd91ebf519a48f23963
8904f46f739f3c562e924e3862661ec9ea00eb8c
/gra2/UI.java
e7aec7fd9b7f61c29fbb40d2e17e30d21f2b06b7
[]
no_license
MarekOleksik/ZDA
d291d8d46e95694aa9a3e8982b2632a68824118b
472c42bde6ef3ecf5a21cf8bd22bc792306fee9b
refs/heads/master
2022-02-06T02:24:19.307768
2019-01-23T19:32:59
2019-01-23T19:32:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,406
java
package samplesGUI.gra2; import java.awt.Color; import java.awt.event.ComponentEvent; import java.util.Scanner; import javax.swing.BorderFactory; import javax.swing.JLabel; import javax.swing.JPanel; import javafx.scene.layout.Border; import javafx.scene.layout.BorderStroke; public class UI extends JPanel{ private Mechanics m; private boolean [] result; private GameInvoker [] cups; private JLabel score; private JLabel msg; UI(Mechanics mech){ m = mech; result = new boolean[m.nrCups]; score = new JLabel("Wynik:"); score.setBounds(10, 100,200, 50); add(score); msg = new JLabel("Kliknij na wybrany kubek lub wymieszaj kółkiem myszy"); msg.setBounds(10, 150, 200, 50); add(msg); setLayout(null); setBounds(0, 0, 350, 450); cups = new GameInvoker[m.nrCups]; for(int i=0;i<m.nrCups;i++){ cups[i] = new GameInvoker(); cups[i].addGameListener(new CupListener(i)); cups[i].addKeyboardListeners(this); add(cups[i]); } printCups(); } // metody pomocnicze private void printCups(){ for(int i=0;i<cups.length;i++){ cups[i].setBounds(10+i*60, 10, 50, 50); cups[i].setBackground(Color.MAGENTA); cups[i].setBorder(BorderFactory.createEmptyBorder()); } } private void printCupsResult(int nr){ for(int i=0;i<cups.length;i++){ cups[i].setBounds(10+i*60, 10, 50, 50); cups[i].setBorder(BorderFactory.createEmptyBorder()); if(result[i]) cups[i].setBackground(Color.CYAN); else cups[i].setBackground(Color.MAGENTA); } cups[nr].setBorder(BorderFactory.createLineBorder(Color.black)); } class CupListener implements GameListener{ private int nr; CupListener(int n){ nr = n; } @Override public void pick(GameEvent e){ try { result = m.checkCup(nr); printCupsResult(nr); score.setText("Wynik:"+m.getScore()); msg.setText(result[nr]?"Trafiłeś!":"Pudło!"); } catch (CupNrOutOfRange e1) { msg.setText("Zbyt duża liczba: podaj liczbę z zakresu 1:" + (m.nrCups)); } } @Override public void shuffle(GameEvent e){ printCups(); m.shuffle(); } @Override public void newGame(GameEvent e){ System.out.println("Podaj liczbę kubków"); Scanner s = new Scanner(System.in); int nr = s.nextInt(); s.close(); m.newGame(nr); System.out.println("NOWA GRA"); } @Override public void end(GameEvent e){ System.exit(0); } } }
[ "marek@pw.edu.pl" ]
marek@pw.edu.pl
eea92e53e54147ed142b40c2aa57d98896f52a88
f11b5b872e815ff0f56960be62c2e6598f5ebd9b
/api/src/main/java/ntk/base/api/file/model/FileShareMainAdminSettingDeleteRequest.java
b3a70eb1a58676130040aaa97f7e2982d7edade3
[]
no_license
akaravi/Ntk.Android.CpanelBase
fe973273584cfd064f77d5dfe021914e4c568573
6d12ca51ec3d0d5273824446de27ce73362542ff
refs/heads/master
2021-06-14T23:36:21.185613
2021-05-29T07:40:43
2021-05-29T07:40:43
193,188,179
0
0
null
null
null
null
UTF-8
Java
false
false
184
java
package ntk.base.api.file.model; import ntk.base.api.file.entity.FileShareMainAdminSetting; public class FileShareMainAdminSettingDeleteRequest extends FileShareMainAdminSetting { }
[ "zsdg98@gmail.com" ]
zsdg98@gmail.com
b751b2d5199a62815f3e25cf1881c914c9a2c04f
bf514d7436713db1d097670c47297aba625fef65
/mall-product/src/main/java/com/lhf/mall/product/dao/CategoryDao.java
b4a2ebdbde3e35a81ee6f334fcc6ae172f1c54c0
[]
no_license
2450010211/mall2020
192a4342cf075328f5b96e14d11aa375297c99ed
5f49bdb39e4e58e27bad9af184e120afa5eb7a18
refs/heads/master
2023-02-06T21:32:26.647677
2020-12-08T14:09:36
2020-12-08T14:09:36
301,375,516
0
0
null
null
null
null
UTF-8
Java
false
false
376
java
package com.lhf.mall.product.dao; import com.lhf.mall.product.entity.CategoryEntity; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** * 商品三级分类 * * @author lhf * @email luohai521@foxmail.com * @date 2020-10-06 15:40:42 */ @Mapper public interface CategoryDao extends BaseMapper<CategoryEntity> { }
[ "2450010211@qq.com" ]
2450010211@qq.com
ea758204c55e5494a27da6ac7638034ed1a9cd71
e4df275122fb94288c739a6c318cf90d0a257790
/git-models/src/main/java/nl/tudelft/ewi/git/models/CreateRepositoryModel.java
eb61635555f6f3b054f4aedd88959cbb8247f133
[ "Apache-2.0" ]
permissive
devhub-tud/git-server
845641024a798df7f79dbceb547be445a477496f
57a6e994e25ef28ba1cb90c0bcb2f7fdb63b9396
refs/heads/master
2020-04-06T03:49:35.525716
2017-06-21T15:24:31
2017-06-21T15:24:31
16,220,429
5
2
null
2017-06-21T15:24:33
2014-01-24T23:41:45
Java
UTF-8
Java
false
false
338
java
package nl.tudelft.ewi.git.models; import lombok.Data; import lombok.EqualsAndHashCode; /** * This model represents a view of a repository in the Gitolite config. * * @author michael */ @Data @EqualsAndHashCode(callSuper = true) public class CreateRepositoryModel extends RepositoryModel { private String templateRepository; }
[ "michaelj@minicom.nl" ]
michaelj@minicom.nl
0c6e23789930463973b49970e582b44ba0d8b308
4b20470bf09a16bd90ec3069022a9ea9741e6274
/NewDaviznProject/src/main/java/kr/or/davizn/handler/LoginSuccessHandler.java
ace15ccef3f1047555c31c17e56c15c3dde868da
[]
no_license
DaviznDeveloper/DaviznProject
2f6ec12aa09d838404dd617cc7cce4c7d788062e
ae6ccea4d88c6821be405976430001c9346720e8
refs/heads/master
2021-01-21T14:09:26.342614
2016-06-10T05:47:09
2016-06-10T05:47:09
59,130,475
0
0
null
2016-06-09T05:11:26
2016-05-18T15:55:18
JavaScript
UTF-8
Java
false
false
815
java
package kr.or.davizn.handler; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.security.core.Authentication; import org.springframework.security.web.authentication.AuthenticationSuccessHandler; import org.springframework.stereotype.Component; public class LoginSuccessHandler implements AuthenticationSuccessHandler{ @Override public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication auth) throws IOException, ServletException { //로그인 성공 후 경로 response.sendRedirect(request.getContextPath() + "/index.dvn"); System.out.println("로그인 성공"); } }
[ "sklee690@gmail.com" ]
sklee690@gmail.com
7d01dc2518e5b26c8f75fac74f5f17f9bb7fbf76
0643fc1d290445abfeabd2db4c20a2a3ba4c5550
/google-api-grpc/proto-google-cloud-video-intelligence-v1beta2/src/main/java/com/google/cloud/videointelligence/v1beta2/FaceAnnotation.java
f664947e565e6e926249af5bd7736e1a0240910d
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
SanowerTamjit/google-cloud-java
98d507530e2e0cf6f5b277d1b8d93e05ebb8eec2
28fab80ed42dcdf56bac22f67b6e262e3ad54cd2
refs/heads/master
2020-04-05T04:08:53.424185
2018-11-07T00:38:35
2018-11-07T00:38:35
156,539,437
1
0
Apache-2.0
2018-11-07T11:55:22
2018-11-07T11:55:22
null
UTF-8
Java
false
true
47,514
java
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/cloud/videointelligence/v1beta2/video_intelligence.proto package com.google.cloud.videointelligence.v1beta2; /** * <pre> * Face annotation. * </pre> * * Protobuf type {@code google.cloud.videointelligence.v1beta2.FaceAnnotation} */ public final class FaceAnnotation extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.videointelligence.v1beta2.FaceAnnotation) FaceAnnotationOrBuilder { private static final long serialVersionUID = 0L; // Use FaceAnnotation.newBuilder() to construct. private FaceAnnotation(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) { super(builder); } private FaceAnnotation() { thumbnail_ = com.google.protobuf.ByteString.EMPTY; segments_ = java.util.Collections.emptyList(); frames_ = java.util.Collections.emptyList(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private FaceAnnotation( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } int mutable_bitField0_ = 0; com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { thumbnail_ = input.readBytes(); break; } case 18: { if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) { segments_ = new java.util.ArrayList<com.google.cloud.videointelligence.v1beta2.FaceSegment>(); mutable_bitField0_ |= 0x00000002; } segments_.add( input.readMessage(com.google.cloud.videointelligence.v1beta2.FaceSegment.parser(), extensionRegistry)); break; } case 26: { if (!((mutable_bitField0_ & 0x00000004) == 0x00000004)) { frames_ = new java.util.ArrayList<com.google.cloud.videointelligence.v1beta2.FaceFrame>(); mutable_bitField0_ |= 0x00000004; } frames_.add( input.readMessage(com.google.cloud.videointelligence.v1beta2.FaceFrame.parser(), extensionRegistry)); break; } default: { if (!parseUnknownFieldProto3( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) { segments_ = java.util.Collections.unmodifiableList(segments_); } if (((mutable_bitField0_ & 0x00000004) == 0x00000004)) { frames_ = java.util.Collections.unmodifiableList(frames_); } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.videointelligence.v1beta2.VideoIntelligenceServiceProto.internal_static_google_cloud_videointelligence_v1beta2_FaceAnnotation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.videointelligence.v1beta2.VideoIntelligenceServiceProto.internal_static_google_cloud_videointelligence_v1beta2_FaceAnnotation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.videointelligence.v1beta2.FaceAnnotation.class, com.google.cloud.videointelligence.v1beta2.FaceAnnotation.Builder.class); } private int bitField0_; public static final int THUMBNAIL_FIELD_NUMBER = 1; private com.google.protobuf.ByteString thumbnail_; /** * <pre> * Thumbnail of a representative face view (in JPEG format). * </pre> * * <code>bytes thumbnail = 1;</code> */ public com.google.protobuf.ByteString getThumbnail() { return thumbnail_; } public static final int SEGMENTS_FIELD_NUMBER = 2; private java.util.List<com.google.cloud.videointelligence.v1beta2.FaceSegment> segments_; /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public java.util.List<com.google.cloud.videointelligence.v1beta2.FaceSegment> getSegmentsList() { return segments_; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public java.util.List<? extends com.google.cloud.videointelligence.v1beta2.FaceSegmentOrBuilder> getSegmentsOrBuilderList() { return segments_; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public int getSegmentsCount() { return segments_.size(); } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceSegment getSegments(int index) { return segments_.get(index); } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceSegmentOrBuilder getSegmentsOrBuilder( int index) { return segments_.get(index); } public static final int FRAMES_FIELD_NUMBER = 3; private java.util.List<com.google.cloud.videointelligence.v1beta2.FaceFrame> frames_; /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public java.util.List<com.google.cloud.videointelligence.v1beta2.FaceFrame> getFramesList() { return frames_; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public java.util.List<? extends com.google.cloud.videointelligence.v1beta2.FaceFrameOrBuilder> getFramesOrBuilderList() { return frames_; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public int getFramesCount() { return frames_.size(); } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceFrame getFrames(int index) { return frames_.get(index); } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceFrameOrBuilder getFramesOrBuilder( int index) { return frames_.get(index); } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!thumbnail_.isEmpty()) { output.writeBytes(1, thumbnail_); } for (int i = 0; i < segments_.size(); i++) { output.writeMessage(2, segments_.get(i)); } for (int i = 0; i < frames_.size(); i++) { output.writeMessage(3, frames_.get(i)); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!thumbnail_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(1, thumbnail_); } for (int i = 0; i < segments_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, segments_.get(i)); } for (int i = 0; i < frames_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, frames_.get(i)); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.cloud.videointelligence.v1beta2.FaceAnnotation)) { return super.equals(obj); } com.google.cloud.videointelligence.v1beta2.FaceAnnotation other = (com.google.cloud.videointelligence.v1beta2.FaceAnnotation) obj; boolean result = true; result = result && getThumbnail() .equals(other.getThumbnail()); result = result && getSegmentsList() .equals(other.getSegmentsList()); result = result && getFramesList() .equals(other.getFramesList()); result = result && unknownFields.equals(other.unknownFields); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + THUMBNAIL_FIELD_NUMBER; hash = (53 * hash) + getThumbnail().hashCode(); if (getSegmentsCount() > 0) { hash = (37 * hash) + SEGMENTS_FIELD_NUMBER; hash = (53 * hash) + getSegmentsList().hashCode(); } if (getFramesCount() > 0) { hash = (37 * hash) + FRAMES_FIELD_NUMBER; hash = (53 * hash) + getFramesList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(com.google.cloud.videointelligence.v1beta2.FaceAnnotation prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * <pre> * Face annotation. * </pre> * * Protobuf type {@code google.cloud.videointelligence.v1beta2.FaceAnnotation} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements // @@protoc_insertion_point(builder_implements:google.cloud.videointelligence.v1beta2.FaceAnnotation) com.google.cloud.videointelligence.v1beta2.FaceAnnotationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.videointelligence.v1beta2.VideoIntelligenceServiceProto.internal_static_google_cloud_videointelligence_v1beta2_FaceAnnotation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.videointelligence.v1beta2.VideoIntelligenceServiceProto.internal_static_google_cloud_videointelligence_v1beta2_FaceAnnotation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.videointelligence.v1beta2.FaceAnnotation.class, com.google.cloud.videointelligence.v1beta2.FaceAnnotation.Builder.class); } // Construct using com.google.cloud.videointelligence.v1beta2.FaceAnnotation.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getSegmentsFieldBuilder(); getFramesFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); thumbnail_ = com.google.protobuf.ByteString.EMPTY; if (segmentsBuilder_ == null) { segments_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); } else { segmentsBuilder_.clear(); } if (framesBuilder_ == null) { frames_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000004); } else { framesBuilder_.clear(); } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.videointelligence.v1beta2.VideoIntelligenceServiceProto.internal_static_google_cloud_videointelligence_v1beta2_FaceAnnotation_descriptor; } @java.lang.Override public com.google.cloud.videointelligence.v1beta2.FaceAnnotation getDefaultInstanceForType() { return com.google.cloud.videointelligence.v1beta2.FaceAnnotation.getDefaultInstance(); } @java.lang.Override public com.google.cloud.videointelligence.v1beta2.FaceAnnotation build() { com.google.cloud.videointelligence.v1beta2.FaceAnnotation result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.videointelligence.v1beta2.FaceAnnotation buildPartial() { com.google.cloud.videointelligence.v1beta2.FaceAnnotation result = new com.google.cloud.videointelligence.v1beta2.FaceAnnotation(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; result.thumbnail_ = thumbnail_; if (segmentsBuilder_ == null) { if (((bitField0_ & 0x00000002) == 0x00000002)) { segments_ = java.util.Collections.unmodifiableList(segments_); bitField0_ = (bitField0_ & ~0x00000002); } result.segments_ = segments_; } else { result.segments_ = segmentsBuilder_.build(); } if (framesBuilder_ == null) { if (((bitField0_ & 0x00000004) == 0x00000004)) { frames_ = java.util.Collections.unmodifiableList(frames_); bitField0_ = (bitField0_ & ~0x00000004); } result.frames_ = frames_; } else { result.frames_ = framesBuilder_.build(); } result.bitField0_ = to_bitField0_; onBuilt(); return result; } @java.lang.Override public Builder clone() { return (Builder) super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return (Builder) super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.cloud.videointelligence.v1beta2.FaceAnnotation) { return mergeFrom((com.google.cloud.videointelligence.v1beta2.FaceAnnotation)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.videointelligence.v1beta2.FaceAnnotation other) { if (other == com.google.cloud.videointelligence.v1beta2.FaceAnnotation.getDefaultInstance()) return this; if (other.getThumbnail() != com.google.protobuf.ByteString.EMPTY) { setThumbnail(other.getThumbnail()); } if (segmentsBuilder_ == null) { if (!other.segments_.isEmpty()) { if (segments_.isEmpty()) { segments_ = other.segments_; bitField0_ = (bitField0_ & ~0x00000002); } else { ensureSegmentsIsMutable(); segments_.addAll(other.segments_); } onChanged(); } } else { if (!other.segments_.isEmpty()) { if (segmentsBuilder_.isEmpty()) { segmentsBuilder_.dispose(); segmentsBuilder_ = null; segments_ = other.segments_; bitField0_ = (bitField0_ & ~0x00000002); segmentsBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getSegmentsFieldBuilder() : null; } else { segmentsBuilder_.addAllMessages(other.segments_); } } } if (framesBuilder_ == null) { if (!other.frames_.isEmpty()) { if (frames_.isEmpty()) { frames_ = other.frames_; bitField0_ = (bitField0_ & ~0x00000004); } else { ensureFramesIsMutable(); frames_.addAll(other.frames_); } onChanged(); } } else { if (!other.frames_.isEmpty()) { if (framesBuilder_.isEmpty()) { framesBuilder_.dispose(); framesBuilder_ = null; frames_ = other.frames_; bitField0_ = (bitField0_ & ~0x00000004); framesBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getFramesFieldBuilder() : null; } else { framesBuilder_.addAllMessages(other.frames_); } } } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { com.google.cloud.videointelligence.v1beta2.FaceAnnotation parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.google.cloud.videointelligence.v1beta2.FaceAnnotation) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private com.google.protobuf.ByteString thumbnail_ = com.google.protobuf.ByteString.EMPTY; /** * <pre> * Thumbnail of a representative face view (in JPEG format). * </pre> * * <code>bytes thumbnail = 1;</code> */ public com.google.protobuf.ByteString getThumbnail() { return thumbnail_; } /** * <pre> * Thumbnail of a representative face view (in JPEG format). * </pre> * * <code>bytes thumbnail = 1;</code> */ public Builder setThumbnail(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } thumbnail_ = value; onChanged(); return this; } /** * <pre> * Thumbnail of a representative face view (in JPEG format). * </pre> * * <code>bytes thumbnail = 1;</code> */ public Builder clearThumbnail() { thumbnail_ = getDefaultInstance().getThumbnail(); onChanged(); return this; } private java.util.List<com.google.cloud.videointelligence.v1beta2.FaceSegment> segments_ = java.util.Collections.emptyList(); private void ensureSegmentsIsMutable() { if (!((bitField0_ & 0x00000002) == 0x00000002)) { segments_ = new java.util.ArrayList<com.google.cloud.videointelligence.v1beta2.FaceSegment>(segments_); bitField0_ |= 0x00000002; } } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.videointelligence.v1beta2.FaceSegment, com.google.cloud.videointelligence.v1beta2.FaceSegment.Builder, com.google.cloud.videointelligence.v1beta2.FaceSegmentOrBuilder> segmentsBuilder_; /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public java.util.List<com.google.cloud.videointelligence.v1beta2.FaceSegment> getSegmentsList() { if (segmentsBuilder_ == null) { return java.util.Collections.unmodifiableList(segments_); } else { return segmentsBuilder_.getMessageList(); } } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public int getSegmentsCount() { if (segmentsBuilder_ == null) { return segments_.size(); } else { return segmentsBuilder_.getCount(); } } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceSegment getSegments(int index) { if (segmentsBuilder_ == null) { return segments_.get(index); } else { return segmentsBuilder_.getMessage(index); } } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public Builder setSegments( int index, com.google.cloud.videointelligence.v1beta2.FaceSegment value) { if (segmentsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSegmentsIsMutable(); segments_.set(index, value); onChanged(); } else { segmentsBuilder_.setMessage(index, value); } return this; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public Builder setSegments( int index, com.google.cloud.videointelligence.v1beta2.FaceSegment.Builder builderForValue) { if (segmentsBuilder_ == null) { ensureSegmentsIsMutable(); segments_.set(index, builderForValue.build()); onChanged(); } else { segmentsBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public Builder addSegments(com.google.cloud.videointelligence.v1beta2.FaceSegment value) { if (segmentsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSegmentsIsMutable(); segments_.add(value); onChanged(); } else { segmentsBuilder_.addMessage(value); } return this; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public Builder addSegments( int index, com.google.cloud.videointelligence.v1beta2.FaceSegment value) { if (segmentsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureSegmentsIsMutable(); segments_.add(index, value); onChanged(); } else { segmentsBuilder_.addMessage(index, value); } return this; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public Builder addSegments( com.google.cloud.videointelligence.v1beta2.FaceSegment.Builder builderForValue) { if (segmentsBuilder_ == null) { ensureSegmentsIsMutable(); segments_.add(builderForValue.build()); onChanged(); } else { segmentsBuilder_.addMessage(builderForValue.build()); } return this; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public Builder addSegments( int index, com.google.cloud.videointelligence.v1beta2.FaceSegment.Builder builderForValue) { if (segmentsBuilder_ == null) { ensureSegmentsIsMutable(); segments_.add(index, builderForValue.build()); onChanged(); } else { segmentsBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public Builder addAllSegments( java.lang.Iterable<? extends com.google.cloud.videointelligence.v1beta2.FaceSegment> values) { if (segmentsBuilder_ == null) { ensureSegmentsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, segments_); onChanged(); } else { segmentsBuilder_.addAllMessages(values); } return this; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public Builder clearSegments() { if (segmentsBuilder_ == null) { segments_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); } else { segmentsBuilder_.clear(); } return this; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public Builder removeSegments(int index) { if (segmentsBuilder_ == null) { ensureSegmentsIsMutable(); segments_.remove(index); onChanged(); } else { segmentsBuilder_.remove(index); } return this; } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceSegment.Builder getSegmentsBuilder( int index) { return getSegmentsFieldBuilder().getBuilder(index); } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceSegmentOrBuilder getSegmentsOrBuilder( int index) { if (segmentsBuilder_ == null) { return segments_.get(index); } else { return segmentsBuilder_.getMessageOrBuilder(index); } } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public java.util.List<? extends com.google.cloud.videointelligence.v1beta2.FaceSegmentOrBuilder> getSegmentsOrBuilderList() { if (segmentsBuilder_ != null) { return segmentsBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(segments_); } } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceSegment.Builder addSegmentsBuilder() { return getSegmentsFieldBuilder().addBuilder( com.google.cloud.videointelligence.v1beta2.FaceSegment.getDefaultInstance()); } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceSegment.Builder addSegmentsBuilder( int index) { return getSegmentsFieldBuilder().addBuilder( index, com.google.cloud.videointelligence.v1beta2.FaceSegment.getDefaultInstance()); } /** * <pre> * All video segments where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceSegment segments = 2;</code> */ public java.util.List<com.google.cloud.videointelligence.v1beta2.FaceSegment.Builder> getSegmentsBuilderList() { return getSegmentsFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.videointelligence.v1beta2.FaceSegment, com.google.cloud.videointelligence.v1beta2.FaceSegment.Builder, com.google.cloud.videointelligence.v1beta2.FaceSegmentOrBuilder> getSegmentsFieldBuilder() { if (segmentsBuilder_ == null) { segmentsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.videointelligence.v1beta2.FaceSegment, com.google.cloud.videointelligence.v1beta2.FaceSegment.Builder, com.google.cloud.videointelligence.v1beta2.FaceSegmentOrBuilder>( segments_, ((bitField0_ & 0x00000002) == 0x00000002), getParentForChildren(), isClean()); segments_ = null; } return segmentsBuilder_; } private java.util.List<com.google.cloud.videointelligence.v1beta2.FaceFrame> frames_ = java.util.Collections.emptyList(); private void ensureFramesIsMutable() { if (!((bitField0_ & 0x00000004) == 0x00000004)) { frames_ = new java.util.ArrayList<com.google.cloud.videointelligence.v1beta2.FaceFrame>(frames_); bitField0_ |= 0x00000004; } } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.videointelligence.v1beta2.FaceFrame, com.google.cloud.videointelligence.v1beta2.FaceFrame.Builder, com.google.cloud.videointelligence.v1beta2.FaceFrameOrBuilder> framesBuilder_; /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public java.util.List<com.google.cloud.videointelligence.v1beta2.FaceFrame> getFramesList() { if (framesBuilder_ == null) { return java.util.Collections.unmodifiableList(frames_); } else { return framesBuilder_.getMessageList(); } } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public int getFramesCount() { if (framesBuilder_ == null) { return frames_.size(); } else { return framesBuilder_.getCount(); } } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceFrame getFrames(int index) { if (framesBuilder_ == null) { return frames_.get(index); } else { return framesBuilder_.getMessage(index); } } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public Builder setFrames( int index, com.google.cloud.videointelligence.v1beta2.FaceFrame value) { if (framesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFramesIsMutable(); frames_.set(index, value); onChanged(); } else { framesBuilder_.setMessage(index, value); } return this; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public Builder setFrames( int index, com.google.cloud.videointelligence.v1beta2.FaceFrame.Builder builderForValue) { if (framesBuilder_ == null) { ensureFramesIsMutable(); frames_.set(index, builderForValue.build()); onChanged(); } else { framesBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public Builder addFrames(com.google.cloud.videointelligence.v1beta2.FaceFrame value) { if (framesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFramesIsMutable(); frames_.add(value); onChanged(); } else { framesBuilder_.addMessage(value); } return this; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public Builder addFrames( int index, com.google.cloud.videointelligence.v1beta2.FaceFrame value) { if (framesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFramesIsMutable(); frames_.add(index, value); onChanged(); } else { framesBuilder_.addMessage(index, value); } return this; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public Builder addFrames( com.google.cloud.videointelligence.v1beta2.FaceFrame.Builder builderForValue) { if (framesBuilder_ == null) { ensureFramesIsMutable(); frames_.add(builderForValue.build()); onChanged(); } else { framesBuilder_.addMessage(builderForValue.build()); } return this; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public Builder addFrames( int index, com.google.cloud.videointelligence.v1beta2.FaceFrame.Builder builderForValue) { if (framesBuilder_ == null) { ensureFramesIsMutable(); frames_.add(index, builderForValue.build()); onChanged(); } else { framesBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public Builder addAllFrames( java.lang.Iterable<? extends com.google.cloud.videointelligence.v1beta2.FaceFrame> values) { if (framesBuilder_ == null) { ensureFramesIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, frames_); onChanged(); } else { framesBuilder_.addAllMessages(values); } return this; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public Builder clearFrames() { if (framesBuilder_ == null) { frames_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); } else { framesBuilder_.clear(); } return this; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public Builder removeFrames(int index) { if (framesBuilder_ == null) { ensureFramesIsMutable(); frames_.remove(index); onChanged(); } else { framesBuilder_.remove(index); } return this; } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceFrame.Builder getFramesBuilder( int index) { return getFramesFieldBuilder().getBuilder(index); } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceFrameOrBuilder getFramesOrBuilder( int index) { if (framesBuilder_ == null) { return frames_.get(index); } else { return framesBuilder_.getMessageOrBuilder(index); } } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public java.util.List<? extends com.google.cloud.videointelligence.v1beta2.FaceFrameOrBuilder> getFramesOrBuilderList() { if (framesBuilder_ != null) { return framesBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(frames_); } } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceFrame.Builder addFramesBuilder() { return getFramesFieldBuilder().addBuilder( com.google.cloud.videointelligence.v1beta2.FaceFrame.getDefaultInstance()); } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public com.google.cloud.videointelligence.v1beta2.FaceFrame.Builder addFramesBuilder( int index) { return getFramesFieldBuilder().addBuilder( index, com.google.cloud.videointelligence.v1beta2.FaceFrame.getDefaultInstance()); } /** * <pre> * All video frames where a face was detected. * </pre> * * <code>repeated .google.cloud.videointelligence.v1beta2.FaceFrame frames = 3;</code> */ public java.util.List<com.google.cloud.videointelligence.v1beta2.FaceFrame.Builder> getFramesBuilderList() { return getFramesFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.videointelligence.v1beta2.FaceFrame, com.google.cloud.videointelligence.v1beta2.FaceFrame.Builder, com.google.cloud.videointelligence.v1beta2.FaceFrameOrBuilder> getFramesFieldBuilder() { if (framesBuilder_ == null) { framesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.videointelligence.v1beta2.FaceFrame, com.google.cloud.videointelligence.v1beta2.FaceFrame.Builder, com.google.cloud.videointelligence.v1beta2.FaceFrameOrBuilder>( frames_, ((bitField0_ & 0x00000004) == 0x00000004), getParentForChildren(), isClean()); frames_ = null; } return framesBuilder_; } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFieldsProto3(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.cloud.videointelligence.v1beta2.FaceAnnotation) } // @@protoc_insertion_point(class_scope:google.cloud.videointelligence.v1beta2.FaceAnnotation) private static final com.google.cloud.videointelligence.v1beta2.FaceAnnotation DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.videointelligence.v1beta2.FaceAnnotation(); } public static com.google.cloud.videointelligence.v1beta2.FaceAnnotation getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser<FaceAnnotation> PARSER = new com.google.protobuf.AbstractParser<FaceAnnotation>() { @java.lang.Override public FaceAnnotation parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new FaceAnnotation(input, extensionRegistry); } }; public static com.google.protobuf.Parser<FaceAnnotation> parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser<FaceAnnotation> getParserForType() { return PARSER; } @java.lang.Override public com.google.cloud.videointelligence.v1beta2.FaceAnnotation getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }
[ "noreply@github.com" ]
noreply@github.com
c556fdfe79a779d5f89b7af2dc8e770b7090a90d
368c663f8d031f576e3add37dde8e9052dc628d8
/java/oboedit/tags/oboedit-2.000-beta15/src/org/oboedit/test/TermCommentTest.java
a5f3b225567efb9d9fbfbc970f8932b6bde8f625
[]
no_license
mahmoudimus/obo-edit
494a588830758ddbd7cf43d2e70550ddd542cb1b
61c146958fd7d0ba7f78cda77f56d45849897b3e
refs/heads/master
2022-01-31T22:59:21.316185
2014-03-20T17:05:47
2014-03-20T17:05:47
null
0
0
null
null
null
null
UTF-8
Java
false
false
791
java
package org.oboedit.test; import java.util.*; import org.obo.datamodel.OBOClass; import org.obo.history.CommentChangeHistoryItem; import org.obo.history.HistoryItem; public class TermCommentTest extends OperationTest { @Override public Collection getTestBundles() { Collection testBundles = new LinkedList(); OBOClass oboClass = testUtil.getRandomClass(); OBOClass resultClass = (OBOClass) oboClass.clone(); String newText = testUtil.getRandomString(40); resultClass.setComment(newText); HistoryItem item = new CommentChangeHistoryItem(oboClass, newText); ObjectPair pair = new ObjectPair(oboClass, resultClass); Collection pairs = new LinkedList(); pairs.add(pair); TestBundle out = new TestBundle(item, pairs); testBundles.add(out); return testBundles; } }
[ "jmr39@6f0e8829-b336-0410-acfb-cb9b228023ad" ]
jmr39@6f0e8829-b336-0410-acfb-cb9b228023ad
50e10fe659666ecf2b7b2ec052347fbd8d8825e8
b4f36f394e2ce60880763c16f8e95aa3991d663f
/app/src/main/java/com/hwx/safelock/safelock/util/SingletonUtils.java
baabd054bcba779fb6545583e437c07040a5860e
[]
no_license
ruanbaojun1105/SafeLock
b8ea868948df23a247501e641185316abe7bd695
2dd3790edcfb650d8146f1d7737b51fcec996fdf
refs/heads/master
2020-12-30T15:41:41.702971
2017-07-21T06:46:11
2017-07-21T06:46:11
91,155,123
0
0
null
null
null
null
UTF-8
Java
false
false
581
java
package com.hwx.safelock.safelock.util; /** * Singleton helper class for lazily initialization. * * @author <a href="http://www.trinea.cn/" target="_blank">Trinea</a> * * @param <T> */ public abstract class SingletonUtils<T> { private T instance; protected abstract T newInstance(); public final T getInstance() { if (instance == null) { synchronized (SingletonUtils.class) { if (instance == null) { instance = newInstance(); } } } return instance; } }
[ "401763159@qq.com" ]
401763159@qq.com
820c126303ffab56f2340a25bfdd7951e8371c37
e9013107bd9ccf258828e339202a3b23d1005262
/memapper/src/main/java/com/teammental/memapper/core/MapWorker.java
4bb910dd8c87ef1418d20318625273c479d89e66
[ "Apache-2.0" ]
permissive
mental-party/meparty
1fa30efd1ba690b64d5e3c80bed1b88b7c9cd53d
705d16aa15c4a9c9d7cd6c779438a9df090b0144
refs/heads/master
2021-09-28T20:44:24.448326
2018-11-20T12:07:57
2018-11-20T12:07:57
113,290,126
2
0
null
null
null
null
UTF-8
Java
false
false
2,046
java
package com.teammental.memapper.core; import com.teammental.mehelper.AssertHelper; import com.teammental.memapper.configuration.MapConfiguration; import com.teammental.memapper.configuration.MapConfigurationRegistry; import com.teammental.memapper.util.FieldUtil; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.Map; import java.util.Optional; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Created by sa on 12/23/2017. */ public class MapWorker<S, T> { private static final Logger LOGGER = LoggerFactory.getLogger(MapWorker.class); MapConfiguration configuration; S source; T target; /** * Constructs a MapWorker instance. * * @param source mapping source object. * @param target mapping target object. */ public MapWorker(S source, T target) { AssertHelper.notNull(source, target); MapConfigurationRegistry registry = MapConfigurationRegistrySingleton.getSingleton(); this.configuration = registry .getConfiguration(source.getClass(), target.getClass()); this.source = source; this.target = target; } /** * Maps source to target. * * @return mapped target object */ public T map() { doMap(); return target; } /** * Does the mapping operation. */ private void doMap() { Map<Field, Field> fieldMap = configuration.getFieldMap(); for (Field sourceField : fieldMap.keySet()) { Optional<Method> getMethodOptional = FieldUtil.findGetMethod(sourceField); if (getMethodOptional.isPresent()) { try { Object val = getMethodOptional.get().invoke(source); Field targetField = fieldMap.get(sourceField); Optional<Method> setMethodOptional = FieldUtil.findSetMethod(targetField); if (setMethodOptional.isPresent()) { setMethodOptional.get().invoke(target, val); } } catch (Exception ex) { LOGGER.error(ex.getLocalizedMessage()); continue; } } } } }
[ "erhan277@gmail.com" ]
erhan277@gmail.com
d1f83917a828d68758dacb817b4aea859903568f
502224bf94ee18e3e6a2d13174d294cb59155fde
/src/test/java/cn/thc/dao/impl/AccountImplTest.java
209b5dbd9d3febb75826fd20741e5c6d1497388b
[]
no_license
lethanl/springbootest
f913bdfbe1646bee3d572584cd7958be21b34491
2744680cd0c9e30ba3a92807c5210ae216589ad5
refs/heads/master
2021-01-21T11:11:00.821257
2017-03-01T09:00:59
2017-03-01T09:00:59
83,531,637
0
0
null
null
null
null
UTF-8
Java
false
false
956
java
package cn.thc.dao.impl; import cn.thc.SpringbootestApplication; import cn.thc.dao.AccountDao; import cn.thc.model.po.Account; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; /** * Created by thc on 2017/2/24 */ @RunWith(SpringRunner.class) @SpringBootTest(classes = SpringbootestApplication.class) public class AccountImplTest { @Autowired private AccountDao accountDao; @Test public void testInsertAccount() throws Exception { Account account = new Account(); account.setLoginname("test1"); account.setPassword("123456"); account.setUpdatets(System.currentTimeMillis()); long id = accountDao.insertAccount(account); System.out.println(id+"========================================"); } }
[ "948280850@qq.com" ]
948280850@qq.com
5ee9e84f759c03ddc2723f986bcf10c475ee8b9e
468e44daa8708c8be091889243d9e6c456194684
/src/fpgrowth/edit/FPNode.java
728f752305f9871a0a6f890ffaa6fb8825a0b4c1
[]
no_license
dongsonbk58/serverx
2836a7c2fbc166310469354c96988328a1f30848
4a043e75bf6b0f3d41f7e682fc300b5f92a9d354
refs/heads/master
2020-03-18T16:13:35.746327
2018-05-26T11:26:18
2018-05-27T19:03:43
134,954,200
0
0
null
null
null
null
UTF-8
Java
false
false
3,046
java
package fpgrowth.edit; /* This file is copyright (c) 2008-2013 Philippe Fournier-Viger * * This file is part of the SPMF DATA MINING SOFTWARE * (http://www.philippe-fournier-viger.com/spmf). * * SPMF 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. * * SPMF 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 * SPMF. If not, see <http://www.gnu.org/licenses/>. */ import java.util.ArrayList; import java.util.List; /** * This is an implementation of a FPTree node as used by the FPGrowth algorithm. * * @see FPTree * @see Itemset * @see AlgoFPGrowth * @author Philippe Fournier-Viger */ public class FPNode { int itemID = -1; // item id int counter = 1; // frequency counter (a.k.a. support) // the parent node of that node or null if it is the root FPNode parent = null; // the child nodes of that node List<FPNode> childs = new ArrayList<FPNode>(); FPNode nodeLink = null; // link to next node with the same item id (for the header table). /** * constructor */ FPNode() { } /** * Return the immediate child of this node having a given ID. If there is no * such child, return null; */ FPNode getChildWithID(int id) { // // for each child node // for(FPNode child : childs){ // // if the id is the one that we are looking for // if(child.itemID == id){ // // return that node // return child; // } // } int lower = 0, upper = childs.size() - 1, mid = 0; if (upper != 0) { while (lower <= upper) { mid = (lower + upper) / 2; if (childs.get(mid).itemID > id) { upper = mid - 1; } else if (childs.get(mid).itemID < id) { lower = mid + 1; } else { return childs.get(mid); } } } // if not found, return null return null; } /** * Method for getting a string representation of this tree (to be used for * debugging purposes). * * @param an indentation * @return a string */ public String toString(String indent) { StringBuilder output = new StringBuilder(); output.append("" + itemID); output.append(" (count=" + counter); output.append(")\n"); String newIndent = indent + " "; for (FPNode child : childs) { output.append(newIndent + child.toString(newIndent)); } return output.toString(); } public String toString() { return "" + itemID; } }
[ "20133319@student.hust.edu.vn" ]
20133319@student.hust.edu.vn
8cdffed56e468f59300cd1eef118f52df35a1532
fbddbfa3096c4a6848389701d6601897852722fe
/src/main/java/com/barclay/interviews/airportbaggagerouting/Main.java
d0e0cb0dd3567ba047c869470f0733a649531a5c
[]
no_license
neeleshvarma/airport-baggage-routing
02700c6a384904d9d19686b80b4ea3c335fe1901
ed419b842bb68e4ca17a8093bac396cbe77f6823
refs/heads/master
2020-03-21T17:36:00.951936
2018-06-27T07:10:13
2018-06-27T07:10:13
138,841,844
0
0
null
null
null
null
UTF-8
Java
false
false
4,045
java
package com.barclay.interviews.airportbaggagerouting; import java.io.File; import java.io.FileNotFoundException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Scanner; import com.barclay.interviews.airportbaggagerouting.model.Bag; import com.barclay.interviews.airportbaggagerouting.model.DirectedEdge; public class Main { private final static String INPUT_DATA_SECTION_HEAD = "# Section:"; private final static String FLIGHT_ARRIVAL = "ARRIVAL"; private final static String DEST_BAGGAGE_CLAIM = "BaggageClaim"; private final static String SINGLE_WHITE_SPACE = " "; public static void main(String[] args) { Scanner scan = null; if (args.length > 0) { File inputDataFile = new File(args[0].trim()); if (inputDataFile.exists()) { try { scan = new Scanner(inputDataFile); } catch (FileNotFoundException fnfex) { scan = promptAndParse(); } } else { scan = promptAndParse(); } } else scan = promptAndParse(); if (scan != null) { List<DirectedEdge> edges = parseInputGraph(scan); DijkstraAlgorithm dijkstraAlgorithm = DijkstraAlgorithmFactory.createDijkstraAlgorithm(); Map<String, String> departuresMap = parseInputDepartures(scan); // Map with the flight as the key and the // destination gate as the value List<Bag> bagList = parseInputBags(scan); scan.close(); for (Bag bag : bagList) { String bagId = bag.getId(); String entryGate = bag.getEntryGate(); String flight = bag.getFlight(); String destGate; if (flight.equals(FLIGHT_ARRIVAL)) { destGate = DEST_BAGGAGE_CLAIM; } else { destGate = departuresMap.get(flight); } String pathLine = dijkstraAlgorithm.findShortestPath(entryGate, destGate, edges); System.out.println(bagId + SINGLE_WHITE_SPACE + pathLine); } } } private static Scanner promptAndParse() { System.out.println("Please input the data here:"); Scanner scan = new Scanner(System.in); return scan; } private static List<DirectedEdge> parseInputGraph(Scanner scanner) { String graphSection = scanner.nextLine(); if (!graphSection.startsWith(INPUT_DATA_SECTION_HEAD)) { throw new IllegalArgumentException( "Illegal arguments or inputs. Please refer to readme for the input data format."); } String next = scanner.nextLine(); List<DirectedEdge> edges = new ArrayList<>(); while (!next.startsWith(INPUT_DATA_SECTION_HEAD)) { String[] parts = next.trim().split("\\s+"); if (parts.length >= 3) { DirectedEdge directedEdge = new DirectedEdge(parts[0], parts[1], Integer.valueOf(parts[2])); edges.add(directedEdge); // Since it is bi-direction edge, will add another direction edge too. DirectedEdge rDirectedEdge = new DirectedEdge(parts[1], parts[0], Integer.valueOf(parts[2])); edges.add(rDirectedEdge); } else { throw new IllegalArgumentException( "Illegal arguments or inputs. Please refer to readme for the input data format."); } next = scanner.nextLine(); } return edges; } private static Map<String, String> parseInputDepartures(Scanner scanner) { String next = scanner.nextLine(); Map<String, String> departuresMap = new HashMap<>(); while (!next.startsWith(INPUT_DATA_SECTION_HEAD)) { String[] parts = next.trim().split("\\s+"); if (parts.length >= 2) { departuresMap.put(parts[0], parts[1]); } else { throw new IllegalArgumentException( "Illegal arguments or inputs. Please refer to readme for the input data format."); } next = scanner.nextLine(); } return departuresMap; } private static List<Bag> parseInputBags(Scanner scanner) { String next; List<Bag> bagList = new ArrayList<>(); do { next = scanner.nextLine(); String[] parts = next.trim().split("\\s+"); if (parts.length >= 3) { Bag bag = new Bag(parts[0], parts[1], parts[2]); bagList.add(bag); } else { scanner.close(); break; } } while (scanner.hasNextLine()); return bagList; } }
[ "neeleshvarmadhanalakota@Neeleshs-MacBook-Pro.local" ]
neeleshvarmadhanalakota@Neeleshs-MacBook-Pro.local
371c855184fdfada0ebc3e6e56d391ee9ec6418e
cf9417535a24146ed84a896a2660f9076d63eb1f
/app/src/main/java/com/myapplanguage/MainActivity.java
474ac3910f91623581c79bdbfeb2d3de0b318a36
[]
no_license
ouma-yma/MyAppLanguage
5065b363cbc424576fea784541a11171c1495a20
17514838926bb417ba122c3e6dd67b053b429461
refs/heads/master
2023-01-05T07:20:05.845125
2020-10-30T08:39:42
2020-10-30T08:39:42
308,571,059
0
0
null
null
null
null
UTF-8
Java
false
false
329
java
package com.myapplanguage; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }
[ "oumaymabenamarti12@gmail.com" ]
oumaymabenamarti12@gmail.com
344bb5c9b5e709e0a26a3be22ebdc6184d647aba
96b5317c5270bb4e027eaf1c6d6dbcd48b35a67d
/libCompiler/src/main/java/com/spazedog/lib/rootfw4/utils/File.java
3c1f387b18470778918c8bb5a5f79ab7834d4097
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
Whitebimmer/pascalnide
8554ef213a0c507960dbccbbb26a6a1eb533b454
7c37e77343cccaf7f27ae9b6434409dd9a85d37b
refs/heads/master
2021-01-21T18:57:40.306649
2017-05-22T10:21:29
2017-05-22T10:21:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
48,211
java
/* * This file is part of the RootFW Project: https://github.com/spazedog/rootfw * * Copyright (c) 2015 Daniel Bergløv * * RootFW is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * RootFW is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public License * along with RootFW. If not, see <http://www.gnu.org/licenses/> */ package com.spazedog.lib.rootfw4.utils; import android.content.Context; import android.os.Bundle; import android.text.TextUtils; import android.util.Log; import com.spazedog.lib.rootfw4.Common; import com.spazedog.lib.rootfw4.Shell; import com.spazedog.lib.rootfw4.Shell.Attempts; import com.spazedog.lib.rootfw4.Shell.OnShellBroadcastListener; import com.spazedog.lib.rootfw4.Shell.OnShellResultListener; import com.spazedog.lib.rootfw4.Shell.OnShellValidateListener; import com.spazedog.lib.rootfw4.Shell.Result; import com.spazedog.lib.rootfw4.containers.BasicContainer; import com.spazedog.lib.rootfw4.containers.Data; import com.spazedog.lib.rootfw4.containers.Data.DataSorting; import com.spazedog.lib.rootfw4.utils.Filesystem.DiskStat; import com.spazedog.lib.rootfw4.utils.Filesystem.MountStat; import com.spazedog.lib.rootfw4.utils.io.FileReader; import com.spazedog.lib.rootfw4.utils.io.FileWriter; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.InputStream; import java.io.OutputStream; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set; import java.util.regex.Pattern; public class File { public static final String TAG = Common.TAG + ".File"; protected final static Pattern oPatternEscape = Pattern.compile("([\"\'`\\\\])"); protected final static Pattern oPatternColumnSearch = Pattern.compile("[ ]{2,}"); protected final static Pattern oPatternSpaceSearch = Pattern.compile("[ \t]+"); protected final static Pattern oPatternStatSplitter = Pattern.compile("\\|"); protected final static Pattern oPatternStatSearch = Pattern.compile("^([a-z-]+)(?:[ \t]+([0-9]+))?[ \t]+([0-9a-z_]+)[ \t]+([0-9a-z_]+)(?:[ \t]+(?:([0-9]+),[ \t]+)?([0-9]+))?[ \t]+([A-Za-z]+[ \t]+[0-9]+[ \t]+[0-9:]+|[0-9-/]+[ \t]+[0-9:]+)[ \t]+(?:(.*) -> )?(.*)$"); protected final static Map<String, Integer> oOctals = new HashMap<>(); static { oOctals.put("1:r", 400); oOctals.put("2:w", 200); oOctals.put("3:x", 100); oOctals.put("3:s", 4100); oOctals.put("3:S", 4000); oOctals.put("4:r", 40); oOctals.put("5:w", 20); oOctals.put("6:x", 10); oOctals.put("6:s", 2010); oOctals.put("6:S", 2000); oOctals.put("7:r", 4); oOctals.put("8:w", 2); oOctals.put("9:x", 1); oOctals.put("9:t", 1001); oOctals.put("9:T", 1000); } protected java.io.File mFile; protected Shell mShell; protected final Object mLock = new Object(); protected Integer mExistsLevel = -1; protected Integer mFolderLevel = -1; protected Integer mLinkLevel = -1; /** * This class is extended from the Data class. As for now, there is nothing custom added to this class. But it might differ from the Data class at some point. */ public static class FileData extends Data<FileData> { public FileData(String[] lines) { super(lines); } } /** * This class is a container which is used by and */ public static class FileStat extends BasicContainer { private String mName; private String mLink; private String mType; private Integer mUser; private Integer mGroup; private String mAccess; private Integer mPermission; private String mMM; private Long mSize; /** * @return * The filename */ public String name() { return mName; } /** * @return * The path to the original file if this is a symbolic link */ public String link() { return mLink; } /** * @return * The file operator ('d'=>Directory, 'f'=>File, 'b'=>Block Device, 'c'=>Character Device, 'l'=>Symbolic Link) */ public String type() { return mType; } /** * @return * The owners user id */ public Integer user() { return mUser; } /** * @return * The owners group id */ public Integer group() { return mGroup; } /** * @return * The files access string like (drwxrwxr-x) */ public String access() { return mAccess; } /** * @return * The file permissions like (0755) */ public Integer permission() { return mPermission; } /** * @return * The file Major:Minor number (If this is a Block or Character device file) */ public String mm() { return mMM; } /** * @return * The file size in bytes */ public Long size() { return mSize; } } public File(Shell shell, String file) { mFile = new java.io.File(file); mShell = shell; /* * This broadcast listener lets us update information about files in other instances of this class. * Some information uses a lot of resources to gather and are quite persistent, and by using this mechanism, we can cache those information * and still have them updated when needed. */ mShell.addBroadcastListener(new OnShellBroadcastListener() { @Override public void onShellBroadcast(String key, Bundle data) { if ("file".equals(key)) { String action = data.getString("action"); String location = data.getString("location"); if ("exists".equals(action) && (getAbsolutePath().equals(location) || getAbsolutePath().startsWith(location + "/"))) { mExistsLevel = -1; mFolderLevel = -1; mLinkLevel = -1; } else if ("moved".equals(action) && getAbsolutePath().equals(location)) { mFile = new java.io.File(data.getString("destination")); } } } }); } /** * Get information about this file or folder. This will return information like * size (on files), path to linked file (on links), permissions, group, user etc. * * @return * A new {@link FileStat} object with all the file information */ public FileStat getDetails() { synchronized (mLock) { if (exists()) { FileStat[] stat = getDetailedList(1); if (stat != null && stat.length > 0) { String name = mFile.getName(); if (stat[0].name().equals(".")) { stat[0].mName = name; return stat[0]; } else if (stat[0].name().equals(name)) { return stat[0]; } else { /* On devices without busybox, we could end up using limited toolbox versions * that does not support the "-a" argument in it's "ls" command. In this case, * we need to do a more manual search for folders. */ stat = getParentFile().getDetailedList(); if (stat != null && stat.length > 0) { for (FileStat aStat : stat) { if (aStat.name().equals(name)) { return aStat; } } } } } } return null; } } /** * @see #getDetailedList(Integer) */ public FileStat[] getDetailedList() { return getDetailedList(0); } /** * This is the same as {@link #getDetails()}, only this will provide a whole list * with information about each item in a directory. * * @param maxLines * The max amount of lines to return. This also excepts negative numbers. 0 equals all lines. * * @return * An array of {@link FileStat} object */ public FileStat[] getDetailedList(Integer maxLines) { synchronized (mLock) { if (exists()) { String path = getAbsolutePath(); String[] attemptCommands = new String[]{"ls -lna '" + path + "'", "ls -la '" + path + "'", "ls -ln '" + path + "'", "ls -l '" + path + "'"}; for (String command : attemptCommands) { Result result = mShell.createAttempts(command).execute(); if (result.wasSuccessful()) { List<FileStat> list = new ArrayList<>(); String[] lines = result.trim().getArray(); Integer maxIndex = (maxLines == null || maxLines == 0 ? lines.length : (maxLines < 0 ? lines.length + maxLines : maxLines)); for (int i=0,indexCount=1; i < lines.length && indexCount <= maxIndex; i++) { /* There are a lot of different output from the ls command, depending on the arguments supported, whether we used busybox or toolbox and the versions of the binaries. * We need some serious regexp help to sort through all of the different output options. */ String[] parts = oPatternStatSplitter.split( oPatternStatSearch.matcher(lines[i]).replaceAll("$1|$3|$4|$5|$6|$8|$9") ); if (parts.length == 7) { FileStat stat = new FileStat(); stat.mType = parts[0].substring(0, 1).equals("-") ? "f" : parts[0].substring(0, 1); stat.mAccess = parts[0]; stat.mUser = Common.getUID(parts[1]); stat.mGroup = Common.getUID(parts[2]); stat.mSize = parts[4].equals("null") || !parts[3].equals("null") ? 0L : Long.parseLong(parts[4]); stat.mMM = parts[3].equals("null") ? null : parts[3] + ":" + parts[4]; stat.mName = parts[5].equals("null") ? parts[6].substring( parts[6].lastIndexOf("/") + 1 ) : parts[5].substring( parts[5].lastIndexOf("/") + 1 ); stat.mLink = parts[5].equals("null") ? null : parts[6]; stat.mPermission = 0; for (int x=1; x < stat.mAccess.length(); x++) { Character ch = stat.mAccess.charAt(x); Integer number = oOctals.get(x + ":" + ch); if (number != null) { stat.mPermission += number; } } if (stat.mName.contains("/")) { stat.mName = stat.mName.substring( stat.mName.lastIndexOf("/")+1 ); } list.add(stat); indexCount++; } } return list.toArray( new FileStat[ list.size() ] ); } } } return null; } } /** * This will provide a simple listing of a directory. * For a more detailed listing, use {@link #getDetailedList()} instead. * * @return * An array with the names of all the items in the directory */ public String[] getList() { synchronized (mLock) { if (isDirectory()) { String[] list = mFile.list(); if (list == null) { String path = getAbsolutePath(); String[] commands = new String[]{"ls -a1 '" + path + "'", "ls -a '" + path + "'", "ls '" + path + "'"}; for (int i=0; i < commands.length; i++) { Result result = mShell.createAttempts(commands[i]).execute(); if (result != null && result.wasSuccessful()) { if (i == 0) { result.sort(new DataSorting(){ @Override public Boolean test(String input) { return !".".equals(input) && !"..".equals(input); } }); return result.getArray(); } else { /* * Most toolbox versions supports very few flags, and 'ls -a' on toolbox might return * a list, whereas busybox mostly returns columns. So we need to be able to handle both types of output. * Some toolbox versions does not support any flags at all, and they differ from each version about what kind of output * they return. */ String[] lines = oPatternColumnSearch.split( result.trim().getString(" ").trim() ); List<String> output = new ArrayList<>(); for (String line : lines) { if (!".".equals(line) && !"..".equals(line)) { output.add(line); } } return output.toArray(new String[output.size()]); } } } } return list; } return null; } } /** * Extract the first line of the file. * * @return * The first line of the file as a string */ public String readOneLine() { synchronized (mLock) { if (isFile()) { try { BufferedReader reader = new BufferedReader(new java.io.FileReader(mFile)); String line = reader.readLine(); reader.close(); return line; } catch (Throwable e) { String[] attemptCommands = new String[]{"sed -n '1p' '" + getAbsolutePath() + "' 2> /dev/null", "cat '" + getAbsolutePath() + "' 2> /dev/null"}; for (String command : attemptCommands) { Result result = mShell.createAttempts(command).execute(); if (result != null && result.wasSuccessful()) { return result.getLine(0); } } } } return null; } } /** * Extract the content from the file and return it. * * @return * The entire file content wrapped in a {@link FileData} object */ public FileData read() { synchronized (mLock) { if (isFile()) { try { BufferedReader reader = new BufferedReader(new java.io.FileReader(mFile)); List<String> content = new ArrayList<>(); String line; while ((line = reader.readLine()) != null) { content.add(line); } reader.close(); return new FileData( content.toArray( new String[ content.size() ] ) ); } catch(Throwable e) { Result result = mShell.createAttempts("cat '" + getAbsolutePath() + "' 2> /dev/null").execute(); if (result != null && result.wasSuccessful()) { return new FileData( result.getArray() ); } } } return null; } } /** * Search the file line by line to find a match for a specific word or sentence and return all of the matched lines or the ones not matching. * * @param match * Word or sentence to match * * @param invert * Whether or not to return the non-matching lines instead * * @return * All of the matched or non-matched lines wrapped in a {@link FileData} object */ public FileData readMatch(final String match, final Boolean invert) { synchronized (mLock) { if (isFile()) { try { BufferedReader reader = new BufferedReader(new java.io.FileReader(mFile)); List<String> content = new ArrayList<>(); String line; while ((line = reader.readLine()) != null) { if (invert != line.contains(match)) { content.add(line); } } reader.close(); return new FileData( content.toArray( new String[ content.size() ] ) ); } catch (Throwable e) { String escapedMatch = oPatternEscape.matcher(match).replaceAll("\\\\$1"); /* * 'grep' returns failed on 0 matches, which will normally make the shell continue it's attempts. * So we use a validate listener to check the output. If there is no real errors, then we will have no output. */ Result result = mShell.createAttempts("grep " + (invert ? "-v " : "") + "'" + escapedMatch + "' '" + getAbsolutePath() + "'").execute(new OnShellValidateListener(){ @Override public Boolean onShellValidate(String command, Integer result, List<String> output, Set<Integer> resultCodes) { return result.equals(0) || output.size() == 0; } }); if (result.wasSuccessful()) { return new FileData( result.getArray() ); } else { result = mShell.createAttempts("cat '" + getAbsolutePath() + "' 2> /dev/null").execute(); if (result != null && result.wasSuccessful()) { result.sort(new DataSorting() { @Override public Boolean test(String input) { return invert != input.contains(match); } }); return new FileData( result.getArray() ); } } } } return null; } } /** * @see #write(String[], Boolean) */ public Boolean write(String input) { return write(input.trim().split("\n"), false); } /** * @see #write(String[], Boolean) */ public Boolean write(String input, Boolean append) { return write(input.trim().split("\n"), append); } /** * @see #write(String[], Boolean) */ public Boolean write(String[] input) { return write(input, false); } /** * Write text to the file. The text should be an array where each index is a line that should be written to the file. * <br /> * If the file does not already exist, it will be created. * * @param input * The text that should be written to the file * * @param append * Whether or not to append the text to the existing content in the file * * @return * <code>True</code> if the text was successfully written to the file, <code>False</code> otherwise */ public Boolean write(String[] input, Boolean append) { synchronized (mLock) { Boolean status = false; if (input != null && !isDirectory()) { try { BufferedWriter output = new BufferedWriter(new java.io.FileWriter(mFile, append)); for (String line : input) { output.write(line); output.newLine(); } output.close(); status = true; } catch(Throwable e) { String redirect = append ? ">>" : ">"; String path = getAbsolutePath(); for (String line : input) { String escapedInput = oPatternEscape.matcher(line).replaceAll("\\\\$1"); Attempts attempts = mShell.createAttempts("echo '" + escapedInput + "' " + redirect + " '" + path + "' 2> /dev/null"); Result result = attempts.execute(); if (result != null && !(status = result.wasSuccessful())) { break; } redirect = ">>"; } } /* * Alert other instances using this file, that the state might have changed. */ if (status) { Bundle bundle = new Bundle(); bundle.putString("action", "exists"); bundle.putString("location", getAbsolutePath()); Shell.sendBroadcast("file", bundle); } } return status; } } /** * @see #write(String[], Boolean) */ public Result writeResult(String input) { return writeResult(input.trim().split("\n"), false); } public Result writeResult(String[] input, Boolean append) { synchronized (mLock) { Boolean status = false; Result result = null; if (input != null && !isDirectory()) { try { BufferedWriter output = new BufferedWriter(new java.io.FileWriter(mFile, append)); for (String line : input) { output.write(line); output.newLine(); } output.close(); status = true; } catch(Throwable e) { String redirect = append ? ">>" : ">"; String path = getAbsolutePath(); for (String line : input) { String escapedInput = oPatternEscape.matcher(line).replaceAll("\\\\$1"); Attempts attempts = mShell.createAttempts("echo '" + escapedInput + "' " + redirect + " '" + path + "' 2> /dev/null"); result = attempts.execute(); if (result != null && !(status = result.wasSuccessful())) { break; } redirect = ">>"; } } /* * Alert other instances using this file, that the state might have changed. */ if (status) { Bundle bundle = new Bundle(); bundle.putString("action", "exists"); bundle.putString("location", getAbsolutePath()); Shell.sendBroadcast("file", bundle); } } return result; } } /** * Remove the file. * Folders will be recursively cleaned before deleting. * * @return * <code>True</code> if the file was deleted, <code>False</code> otherwise */ public Boolean remove() { synchronized (mLock) { Boolean status = false; if (exists()) { String[] fileList = getList(); String path = getAbsolutePath(); if (fileList != null) { for (String intry : fileList) { if(!getFile(path + "/" + intry).remove()) { return false; } } } if (!(status = mFile.delete())) { String rmCommand = isFile() || isLink() ? "unlink" : "rmdir"; String[] commands = new String[]{"rm -rf '" + path + "' 2> /dev/null", rmCommand + " '" + path + "' 2> /dev/null"}; for (String command : commands) { Result result = mShell.createAttempts(command).execute(); if (result != null && (status = result.wasSuccessful())) { break; } } } /* * Alert other instances using this file, that the state might have changed. */ if (status) { Bundle bundle = new Bundle(); bundle.putString("action", "exists"); bundle.putString("location", path); Shell.sendBroadcast("file", bundle); } } else { status = true; } return status; } } /** * Create a new directory based on the path from this file object. * * @see #createDirectories() * * @return * <code>True</code> if the directory was created successfully or if it existed to begin with, <code>False</code> oherwise */ public Boolean createDirectory() { synchronized (mLock) { Boolean status = false; if (!exists()) { if (!(status = mFile.mkdir())) { Result result = mShell.createAttempts("mkdir '" + getAbsolutePath() + "' 2> /dev/null").execute(); if (result == null || !(status = result.wasSuccessful())) { return false; } } /* * Alert other instances using this directory, that the state might have changed. */ Bundle bundle = new Bundle(); bundle.putString("action", "exists"); bundle.putString("location", getAbsolutePath()); Shell.sendBroadcast("file", bundle); } else { status = isDirectory(); } return status; } } /** * Create a new directory based on the path from this file object. * The method will also create any missing parent directories. * * @see #createDirectory() * * @return * <code>True</code> if the directory was created successfully */ public Boolean createDirectories() { synchronized (mLock) { Boolean status = false; if (!exists()) { if (!(status = mFile.mkdirs())) { Result result = mShell.createAttempts("mkdir -p '" + getAbsolutePath() + "' 2> /dev/null").execute(); if (result == null || !(status = result.wasSuccessful())) { /* * Some toolbox version does not support the '-p' flag in 'mkdir' */ String[] dirs = getAbsolutePath().substring(1).split("/"); String path = ""; for (String dir : dirs) { path = path + "/" + dir; if (!(status = getFile(path).createDirectory())) { return false; } } } } /* * Alert other instances using this directory, that the state might have changed. */ if (status) { Bundle bundle = new Bundle(); bundle.putString("action", "exists"); bundle.putString("location", getAbsolutePath()); Shell.sendBroadcast("file", bundle); } } else { status = isDirectory(); } return status; } } /** * Create a link to this file. * * @param linkPath * Path (Including name) to the link which should be created * * @return * <code>True</code> on success, <code>False</code> otherwise */ public Boolean createLink(String linkPath) { synchronized (mLock) { File linkFile = getFile(linkPath); Boolean status = false; if (exists() && !linkFile.exists()) { Result result = mShell.createAttempts("ln -s '" + getAbsolutePath() + "' '" + linkFile.getAbsolutePath() + "' 2> /dev/null").execute(); if (result == null || !(status = result.wasSuccessful())) { return false; } /* * Alert other instances using this directory, that the state might have changed. */ Bundle bundle = new Bundle(); bundle.putString("action", "exists"); bundle.putString("location", linkFile.getAbsolutePath()); Shell.sendBroadcast("file", bundle); } else if (exists() && linkFile.isLink()) { status = getAbsolutePath().equals(linkFile.getCanonicalPath()); } return status; } } /** * Create a reference from this path to another (This will become the link) * * @return * <code>True</code> on success, <code>False</code> otherwise */ public Boolean createAsLink(String originalPath) { return getFile(originalPath).createLink(getAbsolutePath()); } /** * @see #move(String, Boolean) */ public Boolean move(String dstPath) { return move(dstPath, false); } /** * Move the file to another location. * * @param dstPath * The destination path including the file name * * @return * <code>True</code> on success, <code>False</code> otherwise */ public Boolean move(String dstPath, Boolean overwrite) { synchronized (mLock) { Boolean status = false; if (exists()) { File dstFile = getFile(dstPath); if (!dstFile.exists() || (overwrite && dstFile.remove())) { if (!(status = mFile.renameTo(dstFile.mFile))) { Result result = mShell.createAttempts("mv '" + getAbsolutePath() + "' '" + dstFile.getAbsolutePath() + "'").execute(); if (result == null || !(status = result.wasSuccessful())) { return false; } } } /* * Alert other instances using this file, that it has been moved. */ if (status) { Bundle bundle = new Bundle(); bundle.putString("action", "exists"); bundle.putString("location", dstFile.getAbsolutePath()); Shell.sendBroadcast("file", bundle); bundle.putString("action", "moved"); bundle.putString("location", getAbsolutePath()); bundle.putString("destination", dstFile.getAbsolutePath()); mFile = dstFile.mFile; Shell.sendBroadcast("file", bundle); } } return status; } } /** * Rename the file. * * @param name * The new name to use * * @return * <code>True</code> on success, <code>False</code> otherwise */ public Boolean rename(String name) { return move( (getParentPath() == null ? "" : getParentPath()) + "/" + name, false ); } /** * @see #copy(String, Boolean, Boolean) */ public Boolean copy(String dstPath) { return copy(dstPath, false, false); } /** * @see #copy(String, Boolean, Boolean) */ public Boolean copy(String dstPath, Boolean overwrite) { return copy(dstPath, overwrite, false); } /** * Copy the file to another location. * * @param dstPath * The destination path * * @param overwrite * Overwrite any existing files. If false, then folders will be merged if a destination folder exist. * * @param preservePerms * Preserve permissions * * @return * <code>True</code> on success, <code>False</code> otherwise */ public Boolean copy(String dstPath, Boolean overwrite, Boolean preservePerms) { synchronized (mLock) { Boolean status = false; if (exists()) { File dstFile = getFile(dstPath); FileStat stat = null; /* * On overwrite, delete the destination if it exists, and make sure that we are able to recreate * destination directory, if the source is one. * * On non-overwrite, skip files if they exists, or merge if source and destination are directories. */ if (isLink()) { if (!dstFile.exists() || (overwrite && dstFile.remove())) { stat = getDetails(); if (stat == null || stat.link() == null || !(status = dstFile.createAsLink(stat.link()))) { return false; } } } else if (isDirectory() && (!overwrite || (!dstFile.exists() || dstFile.remove())) && ((!dstFile.exists() && dstFile.createDirectories()) || dstFile.isDirectory())) { String[] list = getList(); if (list != null) { status = true; String srcAbsPath = getAbsolutePath(); String dstAbsPath = dstFile.getAbsolutePath(); for (String entry : list) { File entryFile = getFile(srcAbsPath + "/" + entry); if (!(status = entryFile.copy(dstAbsPath + "/" + entry, overwrite, preservePerms))) { if (entryFile.isDirectory() || overwrite == entryFile.exists()) { return false; } else { status = true; } } } } } else if (!isDirectory() && (!dstFile.exists() || (overwrite && dstFile.remove()))) { try { InputStream input = new FileInputStream(mFile); OutputStream output = new FileOutputStream(dstFile.mFile); byte[] buffer = new byte[1024]; Integer length; while ((length = input.read(buffer)) > 0) { output.write(buffer, 0, length); } input.close(); output.close(); status = true; } catch (Throwable e) { Result result = mShell.createAttempts("cat '" + getAbsolutePath() + "' > '" + dstFile.getAbsolutePath() + "' 2> /dev/null").execute(); if (result == null || !(status = result.wasSuccessful())) { return false; } } } if (status) { Bundle bundle = new Bundle(); bundle.putString("action", "exists"); bundle.putString("location", dstFile.getAbsolutePath()); Shell.sendBroadcast("file", bundle); if (preservePerms) { if (stat == null) { stat = getDetails(); } dstFile.changeAccess(stat.user(), stat.group(), stat.permission(), false); } } } return status; } } /** * @see #changeAccess(String, String, Integer, Boolean) */ public Boolean changeAccess(String user, String group, Integer mod) { return changeAccess(Common.getUID(user), Common.getUID(group), mod, false); } /** * @see #changeAccess(Integer, Integer, Integer, Boolean) */ public Boolean changeAccess(Integer user, Integer group, Integer mod) { return changeAccess(user, group, mod, false); } /** * Change ownership (user and group) and permissions on a file or directory.<br /><br /> * * Never use octal numbers for the permissions like '0775'. Always writeString it as '775', otherwise it will be converted * and your permissions will not be changed to the expected value. The reason why this argument is an Integer, is to avoid * things like 'a+x', '+x' and such. While this is supported in Linux normally, few Android binaries supports it as they have been * stripped down to the bare minimum. * * @param user * The user name or NULL if this should not be changed * * @param group * The group name or NULL if this should not be changed * * @param mod * The octal permissions or -1 if this should not be changed * * @param recursive * Change the access recursively */ public Boolean changeAccess(String user, String group, Integer mod, Boolean recursive) { return changeAccess(Common.getUID(user), Common.getUID(group), mod, recursive); } /** * Change ownership (user and group) and permissions on a file or directory. <br /><br /> * * Never use octal numbers for the permissions like '0775'. Always writeString it as '775', otherwise it will be converted * and your permissions will not be changed to the expected value. The reason why this argument is an Integer, is to avoid * things like 'a+x', '+x' and such. While this is supported in Linux normally, few Android binaries supports it as they have been * stripped down to the bare minimum. * * @param user * The uid or -1 if this should not be changed * * @param group * The gid or -1 if this should not be changed * * @param mod * The octal permissions or -1 if this should not be changed * * @param recursive * Change the access recursively */ public Boolean changeAccess(Integer user, Integer group, Integer mod, Boolean recursive) { synchronized (mLock) { StringBuilder builder = new StringBuilder(); if ((user != null && user >= 0) || (group != null && group >= 0)) { builder.append("%binary chown "); if (recursive) builder.append("-R "); if (user != null && user >= 0) builder.append("").append(user); if (group != null && group >= 0) builder.append(".").append(user); } if (mod != null && mod > 0) { if (builder.length() > 0) builder.append(" && "); builder.append("%binary chmod "); if (recursive) builder.append("-R "); builder.append(mod <= 777 ? "0" : "").append(mod); } if (builder.length() > 0) { builder.append(" '").append(getAbsolutePath()).append("'"); Result result = mShell.createAttempts(builder.toString()).execute(); if (result != null && result.wasSuccessful()) { return true; } } } return false; } /** * Calculates the size of a file or folder. <br /><br /> * * Note that on directories with a lot of sub-folders and files, * this can be a slow operation. * * @return * 0 if the file does not exist, or if it is actually 0 in size of course. */ public Long size() { synchronized (mLock) { Long size = 0L; if (exists()) { if (isDirectory()) { String[] list = getList(); if (list != null) { String path = getAbsolutePath(); for (String entry : list) { size += getFile(path + "/" + entry).size(); } } } else if ((size = mFile.length()) == 0) { String path = getAbsolutePath(); String[] commands = new String[]{"wc -c < '" + path + "' 2> /dev/null", "wc < '" + path + "' 2> /dev/null"}; Result result = null; for (int i=0; i < commands.length; i++) { result = mShell.createAttempts(commands[i]).execute(); if (result != null && result.wasSuccessful()) { try { size = Long.parseLong( (i > 0 ? oPatternSpaceSearch.split(result.getLine().trim())[2] : result.getLine()) ); } catch (Throwable e) { result = null; } break; } } if (result == null || !result.wasSuccessful()) { FileStat stat = getDetails(); if (stat != null) { size = stat.size(); } } } } return size; } } /** * Make this file executable and run it in the shell. */ public Result runInShell() { synchronized(mLock) { if (isFile() && changeAccess(-1, -1, 777)) { return mShell.execute(getAbsolutePath()); } return null; } } /** * Make this file executable and run it asynchronized in the shell. * * @param listener * An {@link OnShellResultListener} which will receive the output */ public void runInShell(OnShellResultListener listener) { synchronized(mLock) { if (isFile() && changeAccess(-1, -1, 777)) { mShell.executeAsync(getAbsolutePath(), listener); } } } /** * Reboot into recovery and run this file/package * <br /> * This method will add a command file in /cache/recovery which will tell the recovery the location of this * package. The recovery will then run the package and then automatically reboot back into Android. * <br /> * Note that this will also work on ROM's that changes the cache location or device. The method will * locate the real internal cache partition, and it will also mount it at a second location * if it is not already mounted. * * @param context * A {@link Context} that can be used together with the Android <code>REBOOT</code> permission * to use the <code>PowerManager</code> to reboot into recovery. This can be set to NULL * if you want to just use the <code>toolbox reboot</code> command, however do note that not all * toolbox versions support this command. * * @param args * Arguments which will be parsed to the recovery package. * Each argument equels one prop line. * <br /> * Each prop line is added to /cache/recovery/rootfw.prop and named (argument[argument number] = [value]). * For an example, if first argument is "test", it will be written to rootfw.prop as (argument1 = test). * * @return * <code>False if it failed</code> */ public Boolean runInRecovery(Context context, String... args) { if (isFile()) { String cacheLocation = "/cache"; MountStat mountStat = mShell.getDisk(cacheLocation).getFsDetails(); if (mountStat != null) { DiskStat diskStat = mShell.getDisk( mountStat.device() ).getDiskDetails(); if (diskStat == null || !cacheLocation.equals(diskStat.location())) { if (diskStat == null) { mShell.getDisk("/").mount(new String[]{"rw"}); cacheLocation = "/cache-int"; if (!getFile(cacheLocation).createDirectory()) { return false; } else if (!mShell.getDisk(mountStat.device()).mount(cacheLocation)) { return false; } mShell.getDisk("/").mount(new String[]{"ro"}); } else { cacheLocation = diskStat.location(); } } } if (getFile(cacheLocation + "/recovery").createDirectory()) { if (getFile(cacheLocation + "/recovery/command").write("--update_package=" + getResolvedPath())) { if (args != null && args.length > 0) { String[] lines = new String[ args.length ]; for (int i=0; i < args.length; i++) { lines[i] = "argument" + (i+1) + "=" + args[i]; } if (!getFile(cacheLocation + "/recovery/rootfw.prop").write(lines)) { getFile(cacheLocation + "/recovery/command").remove(); return false; } } if (mShell.getDevice().rebootRecovery(context)) { return true; } getFile(cacheLocation + "/recovery/command").remove(); } } } return false; } /** * Extract text from an Android Assets Path (files located in /assets/) and add it to the current file location. * If the file already exist, it will be overwritten. Otherwise the file will be created. * * @param context * An android Context object * * @param asset * The assets path * * @return * <code>True</code> on success, <code>False</code> otherwise */ public Boolean extractResource(Context context, String asset) { try { InputStream input = context.getAssets().open(asset); Boolean status = extractResource(input); input.close(); return status; } catch(Throwable e) { return false; } } /** * Extract text from an Android resource id (files located in /res/) and add it to the current file location. * If the file already exist, it will be overwritten. Otherwise the file will be created. * * @param context * An android Context object * * @param resourceid * The InputStream to read from * * @return * <code>True</code> on success, <code>False</code> otherwise */ public Boolean extractResource(Context context, Integer resourceid) { try { InputStream input = context.getResources().openRawResource(resourceid); Boolean status = extractResource(input); input.close(); return status; } catch(Throwable e) { return false; } } /** * Extract text from an InputStream and add it to the current file location. * If the file already exist, it will be overwritten. Otherwise the file will be created. * * @param resource * The InputStream to read from * * @return * <code>True</code> on success, <code>False</code> otherwise */ public Boolean extractResource(InputStream resource) { synchronized(mLock) { if (!isDirectory()) { try { FileWriter writer = getFileWriter(); if (writer != null) { byte[] buffer = new byte[1024]; int loc = 0; while ((loc = resource.read(buffer)) > 0) { writer.write(buffer, 0, loc); } writer.close(); } } catch (Throwable e) { Log.e(TAG, e.getMessage(), e); } } return false; } } /** * Get a {@link FileWriter} pointing at this file */ public FileWriter getFileWriter() { if (isFile()) { try { return new FileWriter(mShell, getAbsolutePath(), false); } catch (Throwable e) { Log.e(TAG, e.getMessage(), e); } } return null; } /** * Get a {@link FileReader} pointing at this file */ public FileReader getFileReader() { if (isFile()) { try { return new FileReader(mShell, getAbsolutePath()); } catch (Throwable e) { Log.e(TAG, e.getMessage(), e); } } return null; } /** * @return * <code>True</code> if the file exists, <code>False</code> otherwise */ public Boolean exists() { synchronized(mLock) { if (mExistsLevel < 0) { mExistsLevel = 0; /* * We cannot trust a false value, since restricted files will return false. * But we can trust a true value, so we only do a shell check on false return. */ if (!mFile.exists()) { Attempts attempts = mShell.createAttempts("( %binary test -e '" + getAbsolutePath() + "' && echo true ) || ( %binary test ! -e '" + getAbsolutePath() + "' && echo false )"); Result result = attempts.execute(); if (result != null && result.wasSuccessful()) { mExistsLevel = "true".equals(result.getLine()) ? 1 : 0; } else { /* * Some toolsbox version does not have the 'test' command. * Instead we try 'ls' on the file and check for errors, not pretty but affective. */ result = mShell.createAttempts("ls '" + getAbsolutePath() + "' > /dev/null 2>&1").execute(); if (result != null && result.wasSuccessful()) { mExistsLevel = 1; } } } else { mExistsLevel = 1; } } return mExistsLevel > 0; } } /** * @return * <code>True</code> if the file exists and if it is an folder, <code>False</code> otherwise */ public Boolean isDirectory() { synchronized (mLock) { if (mFolderLevel < 0) { mFolderLevel = 0; if (exists()) { /* * If it exists, but is neither a file nor a directory, then we better do a shell check */ if (!mFile.isDirectory() && !mFile.isFile()) { Attempts attempts = mShell.createAttempts("( %binary test -d '" + getAbsolutePath() + "' && echo true ) || ( %binary test ! -d '" + getAbsolutePath() + "' && echo false )"); Result result = attempts.execute(); if (result != null && result.wasSuccessful()) { mFolderLevel = "true".equals(result.getLine()) ? 1 : 0; } else { /* * A few toolbox versions does not include the 'test' command */ FileStat stat = getCanonicalFile().getDetails(); if (stat != null) { mFolderLevel = "d".equals(stat.type()) ? 1 : 0; } } } else { mFolderLevel = mFile.isDirectory() ? 1 : 0; } } } return mFolderLevel > 0; } } /** * @return * <code>True</code> if the file is a link, <code>False</code> otherwise */ public Boolean isLink() { synchronized (mLock) { if (mLinkLevel < 0) { mLinkLevel = 0; if (exists()) { Attempts attempts = mShell.createAttempts("( %binary test -L '" + getAbsolutePath() + "' && echo true ) || ( %binary test ! -L '" + getAbsolutePath() + "' && echo false )"); Result result = attempts.execute(); if (result != null && result.wasSuccessful()) { mLinkLevel = "true".equals(result.getLine()) ? 1 : 0; } else { /* * A few toolbox versions does not include the 'test' command */ FileStat stat = getDetails(); if (stat != null) { mLinkLevel = "l".equals(stat.type()) ? 1 : 0; } } } } return mLinkLevel > 0; } } /** * @return * <code>True</code> if the item exists and if it is an file, <code>False</code> otherwise */ public Boolean isFile() { synchronized (mLock) { return exists() && !isDirectory(); } } /** * Returns the absolute path. An absolute path is a path that starts at a root of the file system. * * @return * The absolute path */ public String getAbsolutePath() { return mFile.getAbsolutePath(); } /** * Returns the path used to create this object. * * @return * The parsed path */ public String getPath() { return mFile.getPath(); } /** * Returns the parent path. Note that on folders, this means the parent folder. * However, on files, it will return the folder path that the file resides in. * * @return * The parent path */ public String getParentPath() { return mFile.getParent(); } /** * Get a real absolute path. <br /><br /> * * Java's <code>getAbsolutePath</code> is not a fully resolved path. Something like <code>./file</code> could be returned as <code>/folder/folder2/.././file</code> or simular. * This method however will resolve a path and return a fully absolute path <code>/folder/file</code>. It is a bit slower, so only use it when this is a must. */ public String getResolvedPath() { synchronized (mLock) { String path = getAbsolutePath(); if (path.contains(".")) { String[] directories = ("/".equals(path) ? path : path.endsWith("/") ? path.substring(1, path.length() - 1) : path.substring(1)).split("/"); List<String> resolved = new ArrayList<>(); for (String directory : directories) { if (directory.equals("..")) { if (resolved.size() > 0) { resolved.remove(resolved.size() - 1); } } else if (!directory.equals(".")) { resolved.add(directory); } } path = resolved.size() > 0 ? "/" + TextUtils.join("/", resolved) : "/"; } return path; } } /** * Get the canonical path of this file or folder. * This means that if this is a link, you will get the path to the target, no matter how many links are in between. * It also means that things like <code>/folder1/../folder2</code> will be resolved to <code>/folder2</code>. * * @return * The canonical path */ public String getCanonicalPath() { synchronized (mLock) { if (exists()) { try { /* * First let's try using the native tools */ return mFile.getCanonicalPath(); } catch(Throwable ignored) {} /* * Second we try using readlink, if the first failed. */ Result result = mShell.createAttempts("readlink -f '" + getAbsolutePath() + "' 2> /dev/null").execute(); if (result.wasSuccessful()) { return result.getLine(); } else { /* * And third we fallback to a slower but affective method */ FileStat stat = getDetails(); if (stat != null && stat.link() != null) { String realPath = stat.link(); while ((stat = getFile(realPath).getDetails()) != null && stat.link() != null) { realPath = stat.link(); } return realPath; } return getAbsolutePath(); } } return null; } } /** * Open a new {@link File} object pointed at another file. * * @return * A new instance of this class representing another file */ public File getFile(String file) { return new File(mShell, file); } /** * Open a new {@link File} object with the parent of this file. * * @return * A new instance of this class representing the parent directory */ public File getParentFile() { return new File(mShell, getParentPath()); } /** * If this is a link, this method will return a new {@link File} object with the real path attached. * * @return * A new instance of this class representing the real path of a possible link */ public File getCanonicalFile() { return new File(mShell, getCanonicalPath()); } /** * @return * The name of the file */ public String getName() { return mFile.getName(); } }
[ "tranleduy1233@gmail.com" ]
tranleduy1233@gmail.com
57fc8d5641e1fe54383896c024849e1d374d25ec
00094bcacfc49a04522fe1d4b7fe3697fc4b902d
/src/main/java/ir/maktab/homeserviceprovider/controller/RestCustomerController.java
dcd0cbcf6431e6876cf57bf0f3eceb9d7fbd19ec
[]
no_license
NarjesSalmabadi/HomeServiceProviderApplication
9b58005584ddee1708bdfee7d6b3156d428040b8
04557c24204295c55370f4fe64ba4a1177e03be2
refs/heads/master
2023-03-24T08:09:28.407752
2021-03-11T04:39:56
2021-03-11T04:39:56
339,110,988
0
0
null
null
null
null
UTF-8
Java
false
false
1,093
java
package ir.maktab.homeserviceprovider.controller; import ir.maktab.homeserviceprovider.exceptions.BusinessException; import ir.maktab.homeserviceprovider.repository.entity.Expert; import ir.maktab.homeserviceprovider.repository.entity.User; import ir.maktab.homeserviceprovider.serviceclasses.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.Optional; @RestController public class RestCustomerController { @Autowired UserService userService; @GetMapping("/customerProfile/getCustomer") public User getCustomerForProfilePage(@RequestParam(value = "customerEmail") String email) { Optional<User> customer = userService.findUserByEmail(email); if(customer.isPresent()){ return customer.get(); }else { throw new NullPointerException(BusinessException.No_User_Founded_By_This_Email); } } }
[ "n.salmabadi@gmail.com" ]
n.salmabadi@gmail.com