blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
131 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
32 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
313
f6990a19dfb0c2b86abf116aee64cb1e8d0c5f51
6de123826d8afecdf069ea765f93bf879568022d
/java-knn-application/src/main/java/com/sandino/concurrent/callable/ConcurrentCallableLineProcessor.java
6a7781d696423a11cf4d5d62d7ee8631f245a91d
[]
no_license
paulosandinof/java-knn
0c44ac897c2f7bca30bcdf1261db17314ef1815c
70ae44785600273c72c017fffb6714997c50c845
refs/heads/main
2023-08-01T02:32:22.578821
2021-09-10T00:23:45
2021-09-10T00:23:45
377,541,458
0
0
null
null
null
null
UTF-8
Java
false
false
1,645
java
package com.sandino.concurrent.callable; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.concurrent.Callable; import com.sandino.utils.DatasetUtils; public class ConcurrentCallableLineProcessor implements Callable<List<double[]>> { private List<String> lines; private double[] testRow; private int k; public ConcurrentCallableLineProcessor(List<String> lines, double[] testRow, int k) { this.lines = new ArrayList<>(lines); this.testRow = testRow; this.k = k; } @Override public List<double[]> call() { List<double[]> partialDataset = new ArrayList<>(); for (String line : lines) { String[] data = line.split(","); double[] row = new double[7]; row[0] = DatasetUtils.stringToDouble(data[91]); row[1] = DatasetUtils.stringToDouble(data[92]); row[2] = DatasetUtils.stringToDouble(data[93]); row[3] = DatasetUtils.stringToDouble(data[94]); row[4] = DatasetUtils.stringToDouble(data[101]); row[5] = DatasetUtils.classToDouble(data[107]); row[6] = DatasetUtils.calculate(testRow, row); partialDataset.add(row); } double[][] convertedPartialDataset = partialDataset.toArray(new double[0][]); DatasetUtils.sortByColumn(convertedPartialDataset, convertedPartialDataset[0].length - 1); if (k > convertedPartialDataset.length) { k = convertedPartialDataset.length; } return Arrays.asList(Arrays.copyOf(convertedPartialDataset, k)); } }
[ "paulosandino@gmail.com" ]
paulosandino@gmail.com
203ec56b1d7fa565a64cadf6f1e9df231a36f1b6
34f15d86f5021a74bcce340d00071237e6801832
/app/src/main/java/demo/com/lxy/demo/util/BaseActivity.java
78dd6a59fcd7b41858fb7e9b59067fb16c48e240
[]
no_license
imutlxy/xinyuDemo
72c9a7d22d56e0151cd5f819ab1cbe4ddf78e150
ce62a8e52dcb6d6c2cac487fbaf35d5ff2d147da
refs/heads/master
2020-06-11T06:51:01.342291
2016-12-06T19:31:06
2016-12-06T19:31:06
75,742,069
0
0
null
null
null
null
UTF-8
Java
false
false
1,573
java
package demo.com.lxy.demo.util; import android.app.Activity; import android.content.Context; import android.os.Bundle; import com.google.gson.Gson; import com.google.gson.JsonSyntaxException; import demo.com.lxy.demo.util.http.DemoHttpClient; /** * Created by lxy on 16-12-6. */ public class BaseActivity extends Activity { private boolean isAlive = false; public Context context; public BaseActivity mActivity; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mActivity = this; isAlive = true; context = getApplicationContext(); } @Override protected void onStart() { super.onStart(); } @Override public void onResume() { super.onResume(); isAlive = true; mActivity = this; context = getApplicationContext(); } @Override protected void onStop() { isAlive = false; super.onStop(); } @Override protected void onDestroy() { super.onDestroy(); isAlive = false; DemoHttpClient.cancelActivityRequest(mActivity); } public <T> T decodeJson(Class<T> mClass, String response) { Gson gson = new Gson(); try { return gson.fromJson(response, mClass); } catch (JsonSyntaxException e) { e.printStackTrace(); } return null; } public void mLog(String text) { DemoLog.d(text); } public boolean getIsAlive() { return isAlive; } }
[ "1162981617@qq.com" ]
1162981617@qq.com
8f83f45bf00d87c06bc0c11524e219d3bf15b4dd
eb4a8ca1e7a73674f4bb58324af099ce591661bb
/src/main/java/tungpzostar/springhibernatejsf/dao/FileDAOImpl.java
d9628cf3e36610e8de7e0b016b9f9c91b9e5ae9a
[]
no_license
tungprostar/Spring-Hibernate-JSF
9e08b3e8bc6906c5920fe9945cb28bd54fd6f910
80bdf033ce2215704b2f595a7468293978e01a3d
refs/heads/master
2020-05-09T12:39:15.000950
2019-04-17T07:59:12
2019-04-17T07:59:12
181,118,942
0
0
null
null
null
null
UTF-8
Java
false
false
3,819
java
package tungpzostar.springhibernatejsf.dao; import java.io.BufferedReader; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.List; import org.apache.commons.lang3.RandomStringUtils; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.CreationHelper; import org.apache.poi.ss.usermodel.Font; import org.apache.poi.ss.usermodel.IndexedColors; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.Workbook; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.primefaces.model.UploadedFile; import org.springframework.stereotype.Repository; import tungpzostar.springhibernatejsf.entity.Client; import tungpzostar.springhibernatejsf.entity.Employee; @Repository public class FileDAOImpl implements FileDAO { private static String[] columns = { "EMPNO", "ENAME", "JOB", "MGR", "HIREDATE", "SAL", "COMM", "DEPTNO" }; @Override public List<Client> processFile(UploadedFile f) { String line = null; List<Client> lstClient = new ArrayList<Client>(); try { BufferedReader bf = new BufferedReader(new InputStreamReader(f.getInputstream())); while ((line = bf.readLine()) != null) { String strArr[] = line.split(","); Client client = new Client(strArr[0], strArr[1]); lstClient.add(client); System.out.println(strArr[0] +" " + strArr[1]); } bf.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return lstClient; } @Override public void writeExcelFile(List<Employee> lstEmp) throws Exception { Workbook workbook = new XSSFWorkbook(); CreationHelper creationHelper = workbook.getCreationHelper(); // Create a sheet Sheet sheet = workbook.createSheet("Employee"); Font headerFont = workbook.createFont(); headerFont.setBold(true); headerFont.setFontHeightInPoints((short) 14); headerFont.setColor(IndexedColors.RED.getIndex()); // Create a CellStyle with the font CellStyle headerCellStyle = workbook.createCellStyle(); headerCellStyle.setFont(headerFont); Row headerRow = sheet.createRow(0); // Create cells for (int i = 0; i < columns.length; i++) { Cell cell = headerRow.createCell(i); cell.setCellValue(columns[i]); cell.setCellStyle(headerCellStyle); } // Create Cell Style for formatting Date CellStyle dateCellStyle = workbook.createCellStyle(); dateCellStyle.setDataFormat(creationHelper.createDataFormat().getFormat("dd-MM-yyyy")); // Create Other rows and cells with employees data int rowNum = 1; for(Employee emp : lstEmp) { Row row = sheet.createRow(rowNum++); row.createCell(0).setCellValue(emp.getEmpNo()); row.createCell(1).setCellValue(emp.geteName()); row.createCell(2).setCellValue(emp.getJob()); row.createCell(3).setCellValue(emp.getMgr()); Cell dateOfBirthCell = row.createCell(4); dateOfBirthCell.setCellValue(emp.getHireDate()); dateOfBirthCell.setCellStyle(dateCellStyle); // row.createCell(4).setCellValue(emp.getHireDate()); row.createCell(5).setCellValue(emp.getSal()); if(emp.getComm() == null) { row.createCell(6).setCellValue(""); } else row.createCell(6).setCellValue(emp.getComm()); row.createCell(7).setCellValue(emp.getDept().getDeptNo()); } for(int i = 0; i < columns.length; i++) { sheet.autoSizeColumn(i); } //random string name: String genaratedString = RandomStringUtils.randomAlphabetic(6); // Write to file FileOutputStream fos = new FileOutputStream("employee-report"+genaratedString+".xls"); workbook.write(fos); //closing stream fos.close(); //closing workbook workbook.close(); } }
[ "tungpzostar@gmail.com" ]
tungpzostar@gmail.com
932a834a165d951841adadc787f6aaab628501df
8f3d621379e056284ae0a4c396555803386861ba
/src/main/java/com/liyiming/springcloud/ribbon/controller/HelloController.java
e464e642d89577b8ae96f57e330da125ace0392f
[]
no_license
kiragirl/springcloud_eurekaribbon
1a77a89de4fb660a3d551c366aa172a697a05825
7510d7dfbd9a45d5f3216a517ff59408dc24936d
refs/heads/master
2020-03-11T00:33:30.513048
2018-07-18T08:34:41
2018-07-18T08:34:41
129,666,809
0
0
null
null
null
null
UTF-8
Java
false
false
856
java
/** * HelloController.java * <p>Description: </p> * @author Administrator * @date 2018年4月12日 */ package com.liyiming.springcloud.ribbon.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import com.liyiming.springcloud.ribbon.service.HelloService; /** * <p>Title: HelloController</p> * <p>Description: </p> * @author liyiming * @date 2018年4月12日 */ @RestController public class HelloController { @Autowired private HelloService helloService; @RequestMapping("/hi") public String home(@RequestParam String name) { return helloService.hiService(name); } }
[ "liyiming0215@sina.com" ]
liyiming0215@sina.com
1f996ebd59017dc522e8849ae8adb9939187f9c1
bf4fa2b21faf33d08d0af0fd66e457eceab97167
/ISmartDeviceConfig/src/main/java/com/miotlink/commom/network/mlcc/parse/ParseMLCCImpl_SmartConnected.java
9a03c7e6afe5a636067eca84c772b7f8443203f9
[]
no_license
Miotlink/ISmartConfigOpenSDK
05be1897fc3aa997bd6ee510fb3fa84f66b438af
d7340006125b8435f2d836ac147fb1184dcde284
refs/heads/master
2023-02-27T21:06:12.884184
2021-01-21T02:50:20
2021-01-21T02:50:20
331,494,797
0
0
null
null
null
null
UTF-8
Java
false
false
1,257
java
package com.miotlink.commom.network.mlcc.parse; import com.miotlink.commom.network.mlcc.utils.MLCCCodeConfig; import com.miotlink.commom.network.mlcc.utils.MLCCReflectUtils; import com.miotlink.common.network.mlcc.pojo.response.RespSmartConnectedAck; import java.util.Map; public class ParseMLCCImpl_SmartConnected implements ParseMLCCInterface<RespSmartConnectedAck> { public static ParseMLCCImpl_SmartConnected parseMLCCImpl_SmartConnected; public static ParseMLCCImpl_SmartConnected getInstance(){ if (parseMLCCImpl_SmartConnected == null) { synchronized (ParseMLCCImpl_SmartConnected.class) { if (parseMLCCImpl_SmartConnected == null) { parseMLCCImpl_SmartConnected = new ParseMLCCImpl_SmartConnected(); } } } return parseMLCCImpl_SmartConnected; } @Override public RespSmartConnectedAck parse(Map<String, String> contentMap) throws Exception { RespSmartConnectedAck respSmartConnectedAck = (RespSmartConnectedAck) MLCCReflectUtils .setBeanUtils(contentMap, RespSmartConnectedAck.class); respSmartConnectedAck.make(contentMap); return respSmartConnectedAck; } @Override public String getMLCCCode() { // TODO Auto-generated method stub return MLCCCodeConfig.MLCCCodeReturn.SMART_CONNECTED; } }
[ "pm@miotlinl.com" ]
pm@miotlinl.com
99ecfec7cc1ea9f1255ffec0fd04513b62c6ff49
2fef45fc4ed2d8459ed1362f90179278c8c18d30
/第16天-Set和Map/代码/day16/src/com/qf/day16_5/Demo4.java
611a994647211dd087b25bd396ac5de8393704ec
[]
no_license
2biaoge/basic-knowledge-note
3ecfcc08fb095b650d6881e2d1efff9ba0e15308
31e2fc45bac4e791107adeebefc4da297c7ac919
refs/heads/master
2020-03-19T04:16:36.792835
2018-08-20T04:02:29
2018-08-20T04:02:29
135,812,650
0
0
null
null
null
null
UTF-8
Java
false
false
954
java
package com.qf.day16_5; import java.util.HashMap; import java.util.LinkedHashMap; /* * LinkedHashMap集合的使用 可以保证添加和读取的顺序一致 * 1 使用学生对象作为key,使用地址作为value * 2 如果学生姓名和地址一样,则认为是同一个学生。 */ public class Demo4 { public static void main(String[] args) { LinkedHashMap<Student, String> hashMap=new LinkedHashMap<Student,String>(); Student s1=new Student("aaa", "北京昌平沙河"); Student s2=new Student("bbb", "北京海淀"); Student s3=new Student("ccc", "北京朝阳"); Student s4=new Student("ddd", "北京大兴"); Student s5=new Student("ddd", "北京大兴"); hashMap.put(s1, s1.getAddress()); hashMap.put(s2, s2.getAddress()); hashMap.put(s3, s3.getAddress()); hashMap.put(s4, s4.getAddress()); hashMap.put(s5, s5.getAddress()); System.out.println("长度:"+hashMap.size()); System.out.println(hashMap); } }
[ "zhangyupeng1717@163.com" ]
zhangyupeng1717@163.com
db35663e199d86130adbc9879964cea2578d62ce
6c782bae57eb780adf62e46391582fc7d6b35af8
/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201802/cm/DraftAsyncErrorPage.java
7d2632956776438fe0a50cf3d4d22373225e714a
[ "Apache-2.0" ]
permissive
indranil32/googleads-java-lib
2685c35b8eb9d40fde64b8caafd58fe6ffdb4e9e
8425e81c6b7b8907a8e508e8f7d376fc7fd02eeb
refs/heads/master
2020-03-19T00:17:15.483205
2018-05-30T13:44:39
2018-05-30T13:44:39
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,685
java
// Copyright 2018 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. /** * DraftAsyncErrorPage.java * * This file was auto-generated from WSDL * by the Apache Axis 1.4 Mar 02, 2009 (07:08:06 PST) WSDL2Java emitter. */ package com.google.api.ads.adwords.axis.v201802.cm; /** * Contains a subset of DraftAsyncErrors resulting from the filtering * and paging of * {@link DraftAsyncErrorService#get} call. */ public class DraftAsyncErrorPage extends com.google.api.ads.adwords.axis.v201802.cm.Page implements java.io.Serializable , Iterable<com.google.api.ads.adwords.axis.v201802.cm.DraftAsyncError>{ private com.google.api.ads.adwords.axis.v201802.cm.DraftAsyncError[] entries; public DraftAsyncErrorPage() { } public DraftAsyncErrorPage( java.lang.Integer totalNumEntries, java.lang.String pageType, com.google.api.ads.adwords.axis.v201802.cm.DraftAsyncError[] entries) { super( totalNumEntries, pageType); this.entries = entries; } @Override public String toString() { return com.google.common.base.MoreObjects.toStringHelper(this.getClass()) .omitNullValues() // Only include length of entries to avoid overly verbose output .add("entries.length", getEntries() == null ? 0 : getEntries().length) .add("pageType", getPageType()) .add("totalNumEntries", getTotalNumEntries()) .toString(); } /** * Gets the entries value for this DraftAsyncErrorPage. * * @return entries */ public com.google.api.ads.adwords.axis.v201802.cm.DraftAsyncError[] getEntries() { return entries; } /** * Sets the entries value for this DraftAsyncErrorPage. * * @param entries */ public void setEntries(com.google.api.ads.adwords.axis.v201802.cm.DraftAsyncError[] entries) { this.entries = entries; } public com.google.api.ads.adwords.axis.v201802.cm.DraftAsyncError getEntries(int i) { return this.entries[i]; } public void setEntries(int i, com.google.api.ads.adwords.axis.v201802.cm.DraftAsyncError _value) { this.entries[i] = _value; } /** * Returns an iterator over this page's {@code entries} that: * <ul> * <li>Will not be {@code null}.</li> * <li>Will not support {@link java.util.Iterator#remove()}.</li> * </ul> * * @return a non-null iterator. */ @Override public java.util.Iterator<com.google.api.ads.adwords.axis.v201802.cm.DraftAsyncError> iterator() { if (entries == null) { return java.util.Collections.<com.google.api.ads.adwords.axis.v201802.cm.DraftAsyncError>emptyIterator(); } return java.util.Arrays.<com.google.api.ads.adwords.axis.v201802.cm.DraftAsyncError>asList(entries).iterator(); } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof DraftAsyncErrorPage)) return false; DraftAsyncErrorPage other = (DraftAsyncErrorPage) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = super.equals(obj) && ((this.entries==null && other.getEntries()==null) || (this.entries!=null && java.util.Arrays.equals(this.entries, other.getEntries()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = super.hashCode(); if (getEntries() != null) { for (int i=0; i<java.lang.reflect.Array.getLength(getEntries()); i++) { java.lang.Object obj = java.lang.reflect.Array.get(getEntries(), i); if (obj != null && !obj.getClass().isArray()) { _hashCode += obj.hashCode(); } } } __hashCodeCalc = false; return _hashCode; } // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(DraftAsyncErrorPage.class, true); static { typeDesc.setXmlType(new javax.xml.namespace.QName("https://adwords.google.com/api/adwords/cm/v201802", "DraftAsyncErrorPage")); org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("entries"); elemField.setXmlName(new javax.xml.namespace.QName("https://adwords.google.com/api/adwords/cm/v201802", "entries")); elemField.setXmlType(new javax.xml.namespace.QName("https://adwords.google.com/api/adwords/cm/v201802", "DraftAsyncError")); elemField.setMinOccurs(0); elemField.setNillable(false); elemField.setMaxOccursUnbounded(true); typeDesc.addFieldDesc(elemField); } /** * Return type metadata object */ public static org.apache.axis.description.TypeDesc getTypeDesc() { return typeDesc; } /** * Get Custom Serializer */ public static org.apache.axis.encoding.Serializer getSerializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanSerializer( _javaType, _xmlType, typeDesc); } /** * Get Custom Deserializer */ public static org.apache.axis.encoding.Deserializer getDeserializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanDeserializer( _javaType, _xmlType, typeDesc); } }
[ "jradcliff@users.noreply.github.com" ]
jradcliff@users.noreply.github.com
f94d280239967c892e7768c838fea004dcb083e1
54b74b61e01ecbc55620cd0a8d5a9b5dc0a5454b
/src/main/java/com/astontech/hr/repositories/SchedulerRepository.java
9d75bc0116eb79eaa4da810b230932c5d10e1304
[]
no_license
bitze003/com.astontech.hr
cd0060b999e29ea607a34b6f1bd4ab89bf8ec11a
33b950100cba844199eff0d5be8df884d46f4021
refs/heads/master
2020-06-10T21:53:41.314883
2019-07-02T20:32:35
2019-07-02T20:32:35
193,762,373
0
0
null
2019-06-27T16:04:56
2019-06-25T18:28:31
Java
UTF-8
Java
false
false
226
java
package com.astontech.hr.repositories; import com.astontech.hr.domain.Scheduler; import org.springframework.data.repository.CrudRepository; public interface SchedulerRepository extends CrudRepository<Scheduler, Integer> { }
[ "christopher.frederick@astontech.com" ]
christopher.frederick@astontech.com
7e84531347e965403d3e526d72c650b25174c3eb
c4d1992bbfe4552ad16ff35e0355b08c9e4998d6
/releases/2.1.1/src/java/org/apache/poi/ss/usermodel/Sheet.java
f269eedbd9f94c4b414cca115f68f564d650b446
[]
no_license
BGCX261/zkpoi-svn-to-git
36f2a50d2618c73e40f24ddc2d3df5aadc8eca30
81a63fb1c06a2dccff20cab1291c7284f1687508
refs/heads/master
2016-08-04T08:42:59.622864
2015-08-25T15:19:51
2015-08-25T15:19:51
41,594,557
0
1
null
null
null
null
UTF-8
Java
false
false
27,856
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.zkoss.poi.ss.usermodel; import java.util.Iterator; import org.zkoss.poi.hssf.util.PaneInformation; import org.zkoss.poi.ss.util.CellRangeAddress; /** * High level representation of a Excel worksheet. * * <p> * Sheets are the central structures within a workbook, and are where a user does most of his spreadsheet work. * The most common type of sheet is the worksheet, which is represented as a grid of cells. Worksheet cells can * contain text, numbers, dates, and formulas. Cells can also be formatted. * </p> */ public interface Sheet extends Iterable<Row> { /* Constants for margins */ public static final short LeftMargin = 0; public static final short RightMargin = 1; public static final short TopMargin = 2; public static final short BottomMargin = 3; public static final short HeaderMargin = 4; public static final short FooterMargin = 5; public static final byte PANE_LOWER_RIGHT = (byte) 0; public static final byte PANE_UPPER_RIGHT = (byte) 1; public static final byte PANE_LOWER_LEFT = (byte) 2; public static final byte PANE_UPPER_LEFT = (byte) 3; /** * Create a new row within the sheet and return the high level representation * * @param rownum row number * @return high level Row object representing a row in the sheet * @see #removeRow(Row) */ Row createRow(int rownum); /** * Remove a row from this sheet. All cells contained in the row are removed as well * * @param row representing a row to remove. */ void removeRow(Row row); /** * Returns the logical row (not physical) 0-based. If you ask for a row that is not * defined you get a null. This is to say row 4 represents the fifth row on a sheet. * * @param rownum row to get (0-based) * @return Row representing the rownumber or null if its not defined on the sheet */ Row getRow(int rownum); /** * Returns the number of physically defined rows (NOT the number of rows in the sheet) * * @return the number of physically defined rows in this sheet */ int getPhysicalNumberOfRows(); /** * Gets the first row on the sheet * * @return the number of the first logical row on the sheet (0-based) */ int getFirstRowNum(); /** * Gets the last row on the sheet * * @return last row contained n this sheet (0-based) */ int getLastRowNum(); /** * Get the visibility state for a given column * * @param columnIndex - the column to get (0-based) * @param hidden - the visiblity state of the column */ void setColumnHidden(int columnIndex, boolean hidden); /** * Get the hidden state for a given column * * @param columnIndex - the column to set (0-based) * @return hidden - <code>false</code> if the column is visible */ boolean isColumnHidden(int columnIndex); /** * Set the width (in units of 1/256th of a character width) * <p> * The maximum column width for an individual cell is 255 characters. * This value represents the number of characters that can be displayed * in a cell that is formatted with the standard font. * </p> * * @param columnIndex - the column to set (0-based) * @param width - the width in units of 1/256th of a character width */ void setColumnWidth(int columnIndex, int width); /** * get the width (in units of 1/256th of a character width ) * @param columnIndex - the column to set (0-based) * @return width - the width in units of 1/256th of a character width */ int getColumnWidth(int columnIndex); /** * Set the default column width for the sheet (if the columns do not define their own width) * in characters * * @param width default column width measured in characters */ void setDefaultColumnWidth(int width); /** * Get the default column width for the sheet (if the columns do not define their own width) * in characters * * @return default column width measured in characters */ int getDefaultColumnWidth(); /** * Get the default row height for the sheet (if the rows do not define their own height) in * twips (1/20 of a point) * * @return default row height measured in twips (1/20 of a point) */ short getDefaultRowHeight(); /** * Get the default row height for the sheet (if the rows do not define their own height) in * points. * * @return default row height in points */ float getDefaultRowHeightInPoints(); /** * Set the default row height for the sheet (if the rows do not define their own height) in * twips (1/20 of a point) * * @param height default row height measured in twips (1/20 of a point) */ void setDefaultRowHeight(short height); /** * Set the default row height for the sheet (if the rows do not define their own height) in * points * @param height default row height */ void setDefaultRowHeightInPoints(float height); /** * Returns the CellStyle that applies to the given * (0 based) column, or null if no style has been * set for that column */ public CellStyle getColumnStyle(int column); /** * Sets the CellStyle that applies to the given * (0 based) column. */ // public CellStyle setColumnStyle(int column, CellStyle style); /** * Adds a merged region of cells (hence those cells form one) * * @param region (rowfrom/colfrom-rowto/colto) to merge * @return index of this region */ int addMergedRegion(CellRangeAddress region); /** * Determines whether the output is vertically centered on the page. * * @param value true to vertically center, false otherwise. */ void setVerticallyCenter(boolean value); /** * Determines whether the output is horizontally centered on the page. * * @param value true to horizontally center, false otherwise. */ void setHorizontallyCenter(boolean value); /** * Determine whether printed output for this sheet will be horizontally centered. */ boolean getHorizontallyCenter(); /** * Determine whether printed output for this sheet will be vertically centered. */ boolean getVerticallyCenter(); /** * Removes a merged region of cells (hence letting them free) * * @param index of the region to unmerge */ void removeMergedRegion(int index); /** * Returns the number of merged regions * * @return number of merged regions */ int getNumMergedRegions(); /** * Returns the merged region at the specified index * * @return the merged region at the specified index */ public CellRangeAddress getMergedRegion(int index); /** * Returns an iterator of the physical rows * * @return an iterator of the PHYSICAL rows. Meaning the 3rd element may not * be the third row if say for instance the second row is undefined. */ Iterator<Row> rowIterator(); /** * Flag indicating whether the sheet displays Automatic Page Breaks. * * @param value <code>true</code> if the sheet displays Automatic Page Breaks. */ void setAutobreaks(boolean value); /** * Set whether to display the guts or not * * @param value - guts or no guts */ void setDisplayGuts(boolean value); /** * Set whether the window should show 0 (zero) in cells containing zero value. * When false, cells with zero value appear blank instead of showing the number zero. * * @param value whether to display or hide all zero values on the worksheet */ void setDisplayZeros(boolean value); /** * Gets the flag indicating whether the window should show 0 (zero) in cells containing zero value. * When false, cells with zero value appear blank instead of showing the number zero. * * @return whether all zero values on the worksheet are displayed */ boolean isDisplayZeros(); /** * Flag indicating whether the Fit to Page print option is enabled. * * @param value <code>true</code> if the Fit to Page print option is enabled. */ void setFitToPage(boolean value); /** * Flag indicating whether summary rows appear below detail in an outline, when applying an outline. * * <p> * When true a summary row is inserted below the detailed data being summarized and a * new outline level is established on that row. * </p> * <p> * When false a summary row is inserted above the detailed data being summarized and a new outline level * is established on that row. * </p> * @param value <code>true</code> if row summaries appear below detail in the outline */ void setRowSumsBelow(boolean value); /** * Flag indicating whether summary columns appear to the right of detail in an outline, when applying an outline. * * <p> * When true a summary column is inserted to the right of the detailed data being summarized * and a new outline level is established on that column. * </p> * <p> * When false a summary column is inserted to the left of the detailed data being * summarized and a new outline level is established on that column. * </p> * @param value <code>true</code> if col summaries appear right of the detail in the outline */ void setRowSumsRight(boolean value); /** * Flag indicating whether the sheet displays Automatic Page Breaks. * * @return <code>true</code> if the sheet displays Automatic Page Breaks. */ boolean getAutobreaks(); /** * Get whether to display the guts or not, * default value is true * * @return boolean - guts or no guts */ boolean getDisplayGuts(); /** * Flag indicating whether the Fit to Page print option is enabled. * * @return <code>true</code> if the Fit to Page print option is enabled. */ boolean getFitToPage(); /** * Flag indicating whether summary rows appear below detail in an outline, when applying an outline. * * <p> * When true a summary row is inserted below the detailed data being summarized and a * new outline level is established on that row. * </p> * <p> * When false a summary row is inserted above the detailed data being summarized and a new outline level * is established on that row. * </p> * @return <code>true</code> if row summaries appear below detail in the outline */ boolean getRowSumsBelow(); /** * Flag indicating whether summary columns appear to the right of detail in an outline, when applying an outline. * * <p> * When true a summary column is inserted to the right of the detailed data being summarized * and a new outline level is established on that column. * </p> * <p> * When false a summary column is inserted to the left of the detailed data being * summarized and a new outline level is established on that column. * </p> * @return <code>true</code> if col summaries appear right of the detail in the outline */ boolean getRowSumsRight(); /** * Gets the flag indicating whether this sheet displays the lines * between rows and columns to make editing and reading easier. * * @return <code>true</code> if this sheet displays gridlines. * @see #isPrintGridlines() to check if printing of gridlines is turned on or off */ boolean isPrintGridlines(); /** * Sets the flag indicating whether this sheet should display the lines * between rows and columns to make editing and reading easier. * To turn printing of gridlines use {@link #setPrintGridlines(boolean)} * * * @param show <code>true</code> if this sheet should display gridlines. * @see #setPrintGridlines(boolean) */ void setPrintGridlines(boolean show); /** * Gets the print setup object. * * @return The user model for the print setup object. */ PrintSetup getPrintSetup(); /** * Gets the user model for the default document header. * <p/> * Note that XSSF offers more kinds of document headers than HSSF does * </p> * @return the document header. Never <code>null</code> */ Header getHeader(); /** * Gets the user model for the default document footer. * <p/> * Note that XSSF offers more kinds of document footers than HSSF does. * * @return the document footer. Never <code>null</code> */ Footer getFooter(); /** * Sets a flag indicating whether this sheet is selected. *<p> * Note: multiple sheets can be selected, but only one sheet can be active at one time. *</p> * @param value <code>true</code> if this sheet is selected * @see Workbook#setActiveSheet(int) */ void setSelected(boolean value); /** * Gets the size of the margin in inches. * * @param margin which margin to get * @return the size of the margin */ double getMargin(short margin); /** * Sets the size of the margin in inches. * * @param margin which margin to get * @param size the size of the margin */ void setMargin(short margin, double size); /** * Answer whether protection is enabled or disabled * * @return true => protection enabled; false => protection disabled */ boolean getProtect(); /** * Sets the protection enabled as well as the password * @param password to set for protection. Pass <code>null</code> to remove protection */ public void protectSheet(String password); /** * Answer whether scenario protection is enabled or disabled * * @return true => protection enabled; false => protection disabled */ boolean getScenarioProtect(); /** * Sets the zoom magnication for the sheet. The zoom is expressed as a * fraction. For example to express a zoom of 75% use 3 for the numerator * and 4 for the denominator. * * @param numerator The numerator for the zoom magnification. * @param denominator The denominator for the zoom magnification. */ void setZoom(int numerator, int denominator); /** * The top row in the visible view when the sheet is * first viewed after opening it in a viewer * * @return short indicating the rownum (0 based) of the top row */ short getTopRow(); /** * The left col in the visible view when the sheet is * first viewed after opening it in a viewer * * @return short indicating the rownum (0 based) of the top row */ short getLeftCol(); /** * Sets desktop window pane display area, when the * file is first opened in a viewer. * * @param toprow the top row to show in desktop window pane * @param leftcol the left column to show in desktop window pane */ void showInPane(short toprow, short leftcol); /** * Shifts rows between startRow and endRow n number of rows. * If you use a negative number, it will shift rows up. * Code ensures that rows don't wrap around. * * Calls shiftRows(startRow, endRow, n, false, false); * * <p> * Additionally shifts merged regions that are completely defined in these * rows (ie. merged 2 cells on a row to be shifted). * @param startRow the row to start shifting * @param endRow the row to end shifting * @param n the number of rows to shift */ void shiftRows(int startRow, int endRow, int n); /** * Shifts rows between startRow and endRow n number of rows. * If you use a negative number, it will shift rows up. * Code ensures that rows don't wrap around * * <p> * Additionally shifts merged regions that are completely defined in these * rows (ie. merged 2 cells on a row to be shifted). * <p> * @param startRow the row to start shifting * @param endRow the row to end shifting * @param n the number of rows to shift * @param copyRowHeight whether to copy the row height during the shift * @param resetOriginalRowHeight whether to set the original row's height to the default */ void shiftRows(int startRow, int endRow, int n, boolean copyRowHeight, boolean resetOriginalRowHeight); /** * Creates a split (freezepane). Any existing freezepane or split pane is overwritten. * @param colSplit Horizonatal position of split. * @param rowSplit Vertical position of split. * @param leftmostColumn Left column visible in right pane. * @param topRow Top row visible in bottom pane */ void createFreezePane(int colSplit, int rowSplit, int leftmostColumn, int topRow); /** * Creates a split (freezepane). Any existing freezepane or split pane is overwritten. * @param colSplit Horizonatal position of split. * @param rowSplit Vertical position of split. */ void createFreezePane(int colSplit, int rowSplit); /** * Creates a split pane. Any existing freezepane or split pane is overwritten. * @param xSplitPos Horizonatal position of split (in 1/20th of a point). * @param ySplitPos Vertical position of split (in 1/20th of a point). * @param topRow Top row visible in bottom pane * @param leftmostColumn Left column visible in right pane. * @param activePane Active pane. One of: PANE_LOWER_RIGHT, * PANE_UPPER_RIGHT, PANE_LOWER_LEFT, PANE_UPPER_LEFT * @see #PANE_LOWER_LEFT * @see #PANE_LOWER_RIGHT * @see #PANE_UPPER_LEFT * @see #PANE_UPPER_RIGHT */ void createSplitPane(int xSplitPos, int ySplitPos, int leftmostColumn, int topRow, int activePane); /** * Returns the information regarding the currently configured pane (split or freeze) * * @return null if no pane configured, or the pane information. */ PaneInformation getPaneInformation(); /** * Sets whether the gridlines are shown in a viewer * * @param show whether to show gridlines or not */ void setDisplayGridlines(boolean show); /** * Returns if gridlines are displayed * * @return whether gridlines are displayed */ boolean isDisplayGridlines(); /** * Sets whether the formulas are shown in a viewer * * @param show whether to show formulas or not */ void setDisplayFormulas(boolean show); /** * Returns if formulas are displayed * * @return whether formulas are displayed */ boolean isDisplayFormulas(); /** * Sets whether the RowColHeadings are shown in a viewer * * @param show whether to show RowColHeadings or not */ void setDisplayRowColHeadings(boolean show); /** * Returns if RowColHeadings are displayed. * @return whether RowColHeadings are displayed */ boolean isDisplayRowColHeadings(); /** * Sets a page break at the indicated row * @param row FIXME: Document this! */ void setRowBreak(int row); /** * Determines if there is a page break at the indicated row * @param row FIXME: Document this! * @return FIXME: Document this! */ boolean isRowBroken(int row); /** * Removes the page break at the indicated row * @param row */ void removeRowBreak(int row); /** * Retrieves all the horizontal page breaks * @return all the horizontal page breaks, or null if there are no row page breaks */ int[] getRowBreaks(); /** * Retrieves all the vertical page breaks * @return all the vertical page breaks, or null if there are no column page breaks */ int[] getColumnBreaks(); /** * Sets a page break at the indicated column * @param column */ void setColumnBreak(int column); /** * Determines if there is a page break at the indicated column * @param column FIXME: Document this! * @return FIXME: Document this! */ boolean isColumnBroken(int column); /** * Removes a page break at the indicated column * @param column */ void removeColumnBreak(int column); /** * Expands or collapses a column group. * * @param columnNumber One of the columns in the group. * @param collapsed true = collapse group, false = expand group. */ void setColumnGroupCollapsed(int columnNumber, boolean collapsed); /** * Create an outline for the provided column range. * * @param fromColumn beginning of the column range. * @param toColumn end of the column range. */ void groupColumn(int fromColumn, int toColumn); /** * Ungroup a range of columns that were previously groupped * * @param fromColumn start column (0-based) * @param toColumn end column (0-based) */ void ungroupColumn(int fromColumn, int toColumn); /** * Tie a range of rows together so that they can be collapsed or expanded * * @param fromRow start row (0-based) * @param toRow end row (0-based) */ void groupRow(int fromRow, int toRow); /** * Ungroup a range of rows that were previously groupped * * @param fromRow start row (0-based) * @param toRow end row (0-based) */ void ungroupRow(int fromRow, int toRow); /** * Set view state of a groupped range of rows * * @param row start row of a groupped range of rows (0-based) * @param collapse whether to expand/collapse the detail rows */ void setRowGroupCollapsed(int row, boolean collapse); /** * Sets the default column style for a given column. POI will only apply this style to new cells added to the sheet. * * @param column the column index * @param style the style to set */ void setDefaultColumnStyle(int column, CellStyle style); /** * Adjusts the column width to fit the contents. * * <p> * This process can be relatively slow on large sheets, so this should * normally only be called once per column, at the end of your * processing. * </p> * You can specify whether the content of merged cells should be considered or ignored. * Default is to ignore merged cells. * * @param column the column index */ void autoSizeColumn(int column); /** * Adjusts the column width to fit the contents. * <p> * This process can be relatively slow on large sheets, so this should * normally only be called once per column, at the end of your * processing. * </p> * You can specify whether the content of merged cells should be considered or ignored. * Default is to ignore merged cells. * * @param column the column index * @param useMergedCells whether to use the contents of merged cells when calculating the width of the column */ void autoSizeColumn(int column, boolean useMergedCells); /** * Returns cell comment for the specified row and column * * @return cell comment or <code>null</code> if not found */ Comment getCellComment(int row, int column); /** * Creates the top-level drawing patriarch. * * @return The new drawing patriarch. */ Drawing createDrawingPatriarch(); /** * Return the parent workbook * * @return the parent workbook */ Workbook getWorkbook(); /** * Returns the name of this sheet * * @return the name of this sheet */ String getSheetName(); /** * Note - this is not the same as whether the sheet is focused (isActive) * @return <code>true</code> if this sheet is currently selected */ boolean isSelected(); /** * * @return <code>true</code> if the sheet already has an autofilter */ boolean isAutoFilterMode(); /** * Sets array formula to specified region for result. * * @param formula text representation of the formula * @param range Region of array formula for result. * @return the {@link CellRange} of cells affected by this change */ CellRange<? extends Cell> setArrayFormula(String formula, CellRangeAddress range); /** * Remove a Array Formula from this sheet. All cells contained in the Array Formula range are removed as well * * @param cell any cell within Array Formula range * @return the {@link CellRange} of cells affected by this change */ CellRange<? extends Cell> removeArrayFormula(Cell cell); /** * remove the autoFilter * @return the {@link CellRange} of cells affected by this change */ CellRangeAddress removeAutoFilter(); public DataValidationHelper getDataValidationHelper(); /** * Creates a data validation object * @param dataValidation The Data validation object settings */ public void addValidationData(DataValidation dataValidation); /** * Enable filtering for a range of cells * * @param range the range of cells to filter */ public AutoFilter setAutoFilter(CellRangeAddress range); //20110509, henrichen@zkoss.org: handle autofilter /** * Returns AutoFilter of this sheet; null if not exist. * @return AutoFilter of this sheet; null if not exist. */ public AutoFilter getAutoFilter(); //20110511, peterkuo@potix.com public void removeValidationData(DataValidation dataValidation); }
[ "you@example.com" ]
you@example.com
c7463247762b36fa39dfa6e2a564445f92db37de
507ad4de9a020f2a2ce75ae606e58225b1fedb48
/app/src/main/java/com/example/p7/factory4/CustomThreadPool.java
e0cb1371cb7465495febe62831e6353616d27cb4
[]
no_license
zwq0708/zwq
aaa335b58ac5a817475844b7bbd50f39cc9097f7
95b24266037d652e45dcc3c009a6f2238ae46dff
refs/heads/master
2023-01-30T13:42:15.711266
2020-12-16T09:07:17
2020-12-16T09:07:17
321,911,407
0
0
null
null
null
null
UTF-8
Java
false
false
1,352
java
package com.example.p7.factory4; import java.util.concurrent.Executors; import java.util.concurrent.LinkedBlockingDeque; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; /** * 对外提供自定义线程池对象:场景:耗时操作 */ public class CustomThreadPool extends IThreadPool { private static CustomThreadPool threadPool; private final ThreadPoolExecutor threadExecutor; private CustomThreadPool() { threadExecutor = new ThreadPoolExecutor(5, 30, 30, TimeUnit.SECONDS, new LinkedBlockingDeque<Runnable>(), Executors.defaultThreadFactory()); } public synchronized static CustomThreadPool getCustomThreadPool() { if (threadPool == null) { synchronized (CustomThreadPool.class) { if (threadPool == null) { threadPool = new CustomThreadPool(); } } } return threadPool; } public void executeTask(Runnable runnable){ if(threadExecutor!=null){ threadExecutor.execute(runnable); } } @Override public void removeTask() { } @Override public void removeTask(Runnable runnable) { if(threadExecutor!=null){ threadExecutor.remove(runnable); } } }
[ "1127526194@qq.com" ]
1127526194@qq.com
cf8f8229a3f664ff15ff9e044a58ba112d03fb06
89220b1f9c66c2ec41911caca58a881b28eab6db
/src/main/java/com/gateway/open/web/rest/UserResource.java
53c4a3261bbd5c0c91072c4c7cb6f061a970cef7
[]
no_license
nisrineRH/nisrine_gateway
af31a127ac8b16786f0ac4334f4e223518b9b69e
468b2e51651b2cac30ebcf0ea6d1656358f36926
refs/heads/master
2021-07-10T05:03:18.646268
2019-07-25T15:30:32
2019-07-25T15:30:32
193,248,978
0
1
null
2020-09-18T10:39:53
2019-06-22T15:25:53
TypeScript
UTF-8
Java
false
false
8,266
java
package com.gateway.open.web.rest; import com.gateway.open.config.Constants; import com.gateway.open.domain.User; import com.gateway.open.repository.UserRepository; import com.gateway.open.security.AuthoritiesConstants; import com.gateway.open.service.MailService; import com.gateway.open.service.UserService; import com.gateway.open.service.dto.UserDTO; import com.gateway.open.web.rest.errors.BadRequestAlertException; import com.gateway.open.web.rest.errors.EmailAlreadyUsedException; import com.gateway.open.web.rest.errors.LoginAlreadyUsedException; import com.gateway.open.web.rest.util.HeaderUtil; import com.gateway.open.web.rest.util.PaginationUtil; import io.github.jhipster.web.util.ResponseUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; import javax.validation.Valid; import java.net.URI; import java.net.URISyntaxException; import java.util.*; /** * REST controller for managing users. * <p> * This class accesses the User entity, and needs to fetch its collection of authorities. * <p> * For a normal use-case, it would be better to have an eager relationship between User and Authority, * and send everything to the client side: there would be no View Model and DTO, a lot less code, and an outer-join * which would be good for performance. * <p> * We use a View Model and a DTO for 3 reasons: * <ul> * <li>We want to keep a lazy association between the user and the authorities, because people will * quite often do relationships with the user, and we don't want them to get the authorities all * the time for nothing (for performance reasons). This is the #1 goal: we should not impact our users' * application because of this use-case.</li> * <li> Not having an outer join causes n+1 requests to the database. This is not a real issue as * we have by default a second-level cache. This means on the first HTTP call we do the n+1 requests, * but then all authorities come from the cache, so in fact it's much better than doing an outer join * (which will get lots of data from the database, for each HTTP call).</li> * <li> As this manages users, for security reasons, we'd rather have a DTO layer.</li> * </ul> * <p> * Another option would be to have a specific JPA entity graph to handle this case. */ @RestController @RequestMapping("/api") public class UserResource { private final Logger log = LoggerFactory.getLogger(UserResource.class); private final UserService userService; private final UserRepository userRepository; private final MailService mailService; public UserResource(UserService userService, UserRepository userRepository, MailService mailService) { this.userService = userService; this.userRepository = userRepository; this.mailService = mailService; } /** * POST /users : Creates a new user. * <p> * Creates a new user if the login and email are not already used, and sends an * mail with an activation link. * The user needs to be activated on creation. * * @param userDTO the user to create * @return the ResponseEntity with status 201 (Created) and with body the new user, or with status 400 (Bad Request) if the login or email is already in use * @throws URISyntaxException if the Location URI syntax is incorrect * @throws BadRequestAlertException 400 (Bad Request) if the login or email is already in use */ @PostMapping("/users") @PreAuthorize("hasRole(\"" + AuthoritiesConstants.ADMIN + "\")") public ResponseEntity<User> createUser(@Valid @RequestBody UserDTO userDTO) throws URISyntaxException { log.debug("REST request to save User : {}", userDTO); if (userDTO.getId() != null) { throw new BadRequestAlertException("A new user cannot already have an ID", "userManagement", "idexists"); // Lowercase the user login before comparing with database } else if (userRepository.findOneByLogin(userDTO.getLogin().toLowerCase()).isPresent()) { throw new LoginAlreadyUsedException(); } else if (userRepository.findOneByEmailIgnoreCase(userDTO.getEmail()).isPresent()) { throw new EmailAlreadyUsedException(); } else { User newUser = userService.createUser(userDTO); mailService.sendCreationEmail(newUser); return ResponseEntity.created(new URI("/api/users/" + newUser.getLogin())) .headers(HeaderUtil.createAlert( "userManagement.created", newUser.getLogin())) .body(newUser); } } /** * PUT /users : Updates an existing User. * * @param userDTO the user to update * @return the ResponseEntity with status 200 (OK) and with body the updated user * @throws EmailAlreadyUsedException 400 (Bad Request) if the email is already in use * @throws LoginAlreadyUsedException 400 (Bad Request) if the login is already in use */ @PutMapping("/users") @PreAuthorize("hasRole(\"" + AuthoritiesConstants.ADMIN + "\")") public ResponseEntity<UserDTO> updateUser(@Valid @RequestBody UserDTO userDTO) { log.debug("REST request to update User : {}", userDTO); Optional<User> existingUser = userRepository.findOneByEmailIgnoreCase(userDTO.getEmail()); if (existingUser.isPresent() && (!existingUser.get().getId().equals(userDTO.getId()))) { throw new EmailAlreadyUsedException(); } existingUser = userRepository.findOneByLogin(userDTO.getLogin().toLowerCase()); if (existingUser.isPresent() && (!existingUser.get().getId().equals(userDTO.getId()))) { throw new LoginAlreadyUsedException(); } Optional<UserDTO> updatedUser = userService.updateUser(userDTO); return ResponseUtil.wrapOrNotFound(updatedUser, HeaderUtil.createAlert("userManagement.updated", userDTO.getLogin())); } /** * GET /users : get all users. * * @param pageable the pagination information * @return the ResponseEntity with status 200 (OK) and with body all users */ @GetMapping("/users") public ResponseEntity<List<UserDTO>> getAllUsers(Pageable pageable) { final Page<UserDTO> page = userService.getAllManagedUsers(pageable); HttpHeaders headers = PaginationUtil.generatePaginationHttpHeaders(page, "/api/users"); return new ResponseEntity<>(page.getContent(), headers, HttpStatus.OK); } /** * @return a string list of the all of the roles */ @GetMapping("/users/authorities") @PreAuthorize("hasRole(\"" + AuthoritiesConstants.ADMIN + "\")") public List<String> getAuthorities() { return userService.getAuthorities(); } /** * GET /users/:login : get the "login" user. * * @param login the login of the user to find * @return the ResponseEntity with status 200 (OK) and with body the "login" user, or with status 404 (Not Found) */ @GetMapping("/users/{login:" + Constants.LOGIN_REGEX + "}") public ResponseEntity<UserDTO> getUser(@PathVariable String login) { log.debug("REST request to get User : {}", login); return ResponseUtil.wrapOrNotFound( userService.getUserWithAuthoritiesByLogin(login) .map(UserDTO::new)); } /** * DELETE /users/:login : delete the "login" User. * * @param login the login of the user to delete * @return the ResponseEntity with status 200 (OK) */ @DeleteMapping("/users/{login:" + Constants.LOGIN_REGEX + "}") @PreAuthorize("hasRole(\"" + AuthoritiesConstants.ADMIN + "\")") public ResponseEntity<Void> deleteUser(@PathVariable String login) { log.debug("REST request to delete User: {}", login); userService.deleteUser(login); return ResponseEntity.ok().headers(HeaderUtil.createAlert( "userManagement.deleted", login)).build(); } }
[ "houayasalah@yahoo.fr" ]
houayasalah@yahoo.fr
36e61a8e4ad7089133c3b7c7ada49654979eacab
59a50d8b8b9a43823984a95f300badc2a897ca8e
/tweetquick/src/main/java/com/jboss/datagrid/tweetquick/model/Tweet.java
053759ed644cbe2af8a2435e7bbe71fe4b1370cf
[]
no_license
prabhatjha/edg-examples
762cb16b639bacddcb16273938ece6c4b74e3550
31e684c6f282ea33427d1a85acd3c0545fbb66c7
refs/heads/master
2021-01-16T19:14:41.881145
2012-05-31T12:38:00
2012-05-31T12:38:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,094
java
/* * JBoss, Home of Professional Open Source. * Copyright 2012, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package com.jboss.datagrid.tweetquick.model; import java.io.Serializable; import java.util.Calendar; /** * Holds data for each post. * * @author Martin Gencur * */ public class Tweet implements Serializable { private static final long serialVersionUID = -3268797376991935010L; private TweetKey key; private String message; public Tweet(String username, String message) { this.message = message; this.key = new TweetKey(username, Calendar.getInstance().getTimeInMillis()); } // for application initialization purposes public Tweet(String username, String message, long timestamp) { this.message = message; this.key = new TweetKey(username, timestamp); } public TweetKey getKey() { return key; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String getOwner() { return this.key.getOwner(); } public long getTimeOfPost() { return this.key.getTimeOfPost(); } }
[ "mgencur@redhat.com" ]
mgencur@redhat.com
acafecfb35ed473e6f36f45dc77c68d8191c816c
1402696c1aff34fd159ec28b019755a32e200273
/ProductorConsumidor/src/Productor.java
c7e3b8030f94958b0ef5608e895a4436b8a1abb7
[]
no_license
DonMed00/Hilos
15cbcc67c873094fd528b0fc3359a6ab1f126d8a
325539b71a073a3d22076fbef8dfb40da0be26c5
refs/heads/master
2020-08-07T12:41:24.757507
2020-02-20T12:50:45
2020-02-20T12:50:45
213,455,050
0
0
null
null
null
null
UTF-8
Java
false
false
711
java
public class Productor implements Runnable { private final Bandeja bandeja; private int indice = 0; public Productor(Bandeja bandeja) { this.bandeja = bandeja; } @Override public void run() { while (true) { int donut = 0; try { donut = producir(); } catch (InterruptedException e) { e.printStackTrace(); } poner(donut); } } private void poner(int donut) { bandeja.poner(donut); } private int producir() throws InterruptedException { indice++; Thread.sleep(5000); return indice; } }
[ "xmena97@gmail.com" ]
xmena97@gmail.com
3c843068c4da14794ff47900a4b52a934c8f8683
9a79ce04d046e2e89efea0635d99b11d4f027510
/Projects/MAP/lab 3/src/Controller/Controller.java
b87b8cb3226e09d6cdf944c6dfd5084bee950320
[]
no_license
cristiparfenie/University-Projects
223ce4cdc2ed985bddc3b95f46edd73d21c6df1e
1b9bad13fd4672a632938eaa7c0df9b68e047e47
refs/heads/master
2020-04-17T08:06:53.157703
2019-01-18T12:59:22
2019-01-18T12:59:22
166,398,465
0
0
null
null
null
null
UTF-8
Java
false
false
2,268
java
package Controller; import Model.ProgramState; import Model.Statements.IStmt; import Model.Utilities.IStack; import Repository.IRepo; import Exception.EmptyStack; import java.io.File; import java.io.IOException; import java.util.List; import java.util.Map; import java.util.stream.Collectors; public class Controller { private IRepo repo; public Controller(IRepo repo) { this.repo = repo; } public ProgramState oneStep(ProgramState state){ try { IStack<IStmt> stack = state.getStack(); if (stack.isEmpty()) throw new EmptyStack("The stack is empty!"); IStmt currentStmt = stack.pop(); return currentStmt.execute(state); } catch (IOException e){ System.out.println((e.getMessage())); System.exit(0); } return null; } public Map<Integer,Integer> conservativeGarbageCollector(List<Integer> symTableValues, Map<Integer,Integer> heap){ return heap.entrySet().stream() .filter(e->symTableValues.contains(e.getKey())) .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));} public void allSteps(){ ProgramState prg = repo.getCurrentPrg(); File f = new File("D:\\FACULTATE\\MAP\\lab 3\\log"); if(f.exists()){ f.delete(); try { f.createNewFile(); } catch (IOException e) { e.printStackTrace(); } } try { while (!prg.getStack().isEmpty()) { oneStep(prg); prg.setHeapMap(conservativeGarbageCollector(prg.getSymTable().getValues(),prg.getHeap().getMap())); repo.logPrgStateExec("D:\\FACULTATE\\MAP\\lab 3\\log"); System.out.println("______________________"); System.out.println(prg); } } catch(IOException e) { System.out.println(e.getMessage()); } } @Override public String toString(){ return "Controller: " + repo.toString(); } }
[ "noreply@github.com" ]
cristiparfenie.noreply@github.com
7f99d7de784912ecb9131b7535ea3a9ff24cb9ee
160e97345df415f83180b7a379986835d378287d
/xx/src/main/java/com/pay/dao/DlDateDao.java
5d2535cc96c8b5126071dc26d3fcd6d70995e88c
[]
no_license
BobBob123456/pay
04b41af785b1cc0db179ce6cea880788d5d77fa3
01d9d5291912a7244daf1bda7727de3bc23503ac
refs/heads/master
2021-01-13T13:18:02.670119
2016-11-10T07:33:02
2016-11-10T07:33:02
72,634,722
0
0
null
null
null
null
UTF-8
Java
false
false
110
java
package com.pay.dao; import com.pay.pojo.DlDate; public interface DlDateDao extends CommonDao<DlDate> { }
[ "345425170@qq.com" ]
345425170@qq.com
a5dc9f1223fae2bc9e3dc1fd2308fffb1a92acd2
1b9201ce9d2a14092f4b053438a0f3a1c18cc821
/stock-api/src/test/java/com/youku/java/copyright/service/impl/JedisUtilTest.java
ac8ce4ad765cc584cd03eeedbee1fa4deffddada
[]
no_license
lijielife/stock-40
b70c1109694d946eeca61408acd440270cac801a
8ae38ae1832a705cafe316bc9811cd9f1ec2e465
refs/heads/master
2020-07-12T06:23:22.852274
2017-01-18T14:10:02
2017-01-18T14:10:02
null
0
0
null
null
null
null
UTF-8
Java
false
false
768
java
package com.youku.java.copyright.service.impl; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import com.youku.java.copyright.runtime.BeansTest; import com.youku.java.copyright.util.JedisUtil; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes={BeansTest.class}) public class JedisUtilTest { @Autowired JedisUtil jedisUtil; @Test public void test() throws InterruptedException { jedisUtil.set("abc", "123", 10); System.out.println(jedisUtil.get("abc")); Thread.sleep(5000); System.out.println(jedisUtil.get("abc")); } }
[ "291382932@qq.com" ]
291382932@qq.com
6415b3cca450615ef8658aec23098e47c03688ee
4555f5f90031c2e06c6b2992e7e019ae9a9f0f6a
/src/main/java/zhm/Train/Controller/mainController.java
113a9398ed123479dd61d2c6e39ca1480fbe519b
[]
no_license
Zhm0715/DataBase_Train_System
fe405fa1dc95562b184d7d68b8478b86f86097c3
61b7ef06c0ddcacab2741f37c3a914618de9014b
refs/heads/master
2023-04-24T13:24:31.737573
2020-12-24T07:22:26
2020-12-24T07:22:26
324,093,587
2
0
null
null
null
null
UTF-8
Java
false
false
3,891
java
package zhm.Train.Controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import zhm.Train.Service.ManagerService; import zhm.Train.Service.UserService; import zhm.Train.Utils.Type.RegisterType; import zhm.Train.domain.Manager; import zhm.Train.domain.User; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import java.io.IOException; @Controller public class mainController { @Autowired private UserService userService; @Autowired private ManagerService managerService; // 用户登录界面 @RequestMapping("/UserLogin") public String UserLogin(){ return "UserLogin.html"; } // 用户登录验证 @RequestMapping("/UserCheck") public String UserCheck(HttpServletRequest req, User user, HttpServletResponse resp) throws ServletException, IOException { HttpSession session = req.getSession(); User user_session = (User) session.getAttribute("USER_SESSION"); if(user_session != null){ return "UserPage.html"; } if(user.getPasswd().equals(null) || user.getUsername().equals(null)){ return "ForbidAccess.html"; } if(this.userService.Login(user)){ user = this.userService.getUserByAccount(user); session.setAttribute("USER_SESSION", user); return "UserPage.html"; } return "LoginFail.html"; } // 管理员登录页面 @RequestMapping("/ManagerLogin") public String ManagerLogin(){ return "ManagerLogin.html"; } // 管理员登录验证 @RequestMapping("/Manager/Main") public String ManagerCheck(HttpServletRequest req, Manager manager){ HttpSession session = req.getSession(); Manager manager_session = (Manager) session.getAttribute("Manager_SESSION"); if(manager_session != null){ return "ManagerPage.html"; } if(manager.getPasswd().equals(null) || manager.getUsername().equals(null)){ return "ForbidAccess.html"; } if(this.managerService.Login(manager)){ // 登录成功 manager = this.managerService.getManagerByAccount(manager); session.setAttribute("Manager_SESSION", manager); return "ManagerPage.html"; } return "LoginFail.html"; } // 注册页面 @RequestMapping("/Register") public String Register(User user){ return "Register.html"; } @RequestMapping(value = "/RegisterCheck", produces = {MediaType.TEXT_HTML_VALUE}) @ResponseBody public String RegisterCheck(User user){ RegisterType type = this.userService.Register(user); StringBuffer sbHtml = new StringBuffer(); sbHtml.append("<!doctype html><html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"></head></body>"); // 验证数据格式 switch(type){ case RepeatUsername: sbHtml.append("<p>Username repeat, please try again.</p>"); break; case PasswordTooShort: sbHtml.append("<p>Password length must be more than 8.</p>"); break; case AccountEmpty: sbHtml.append("<p>Username or password is empty, please input again.</p>"); break; case Success: sbHtml.append("<p>Success!</p>"); } sbHtml.append("<a href=\"/zhm\">Back to home</a>"); sbHtml.append("</body></html>"); return sbHtml.toString(); } }
[ "1262775284@qq.com" ]
1262775284@qq.com
1368f0b728e17ee2e68774c15f9c718892b4f148
92e07660c5f1bde06a6bb14abbfb5396e6abbe42
/base_lib/src/main/java/com/example/baselib/adapter/MyFragmentAdapter.java
428f563c1febb8e5a34f5a660f32267cdc424afe
[]
no_license
bouquet12138/deyun
c473c4b6a8f6fd549e013c505ddcace6a32595b2
a59933051aa661c832336bbfaadd4274f575aff9
refs/heads/master
2022-07-22T05:07:21.393714
2020-05-18T06:30:16
2020-05-18T06:30:16
260,121,009
0
0
null
null
null
null
UTF-8
Java
false
false
1,248
java
package com.example.baselib.adapter; import com.example.baselib.util.CollectionsUtil; import java.util.List; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentManager; import androidx.fragment.app.FragmentPagerAdapter; public class MyFragmentAdapter extends FragmentPagerAdapter { private List<Fragment> mFragments; private List<String> mPageTitles; public MyFragmentAdapter(FragmentManager fm, List<Fragment> fragments, List<String> pageTitles) { super(fm, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT); mFragments = fragments; mPageTitles = pageTitles; } public MyFragmentAdapter(FragmentManager fm, List<Fragment> fragments) { super(fm, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT); mFragments = fragments; } /* public MyFragmentAdapter(FragmentManager fm) { super(fm); }*/ @Override public Fragment getItem(int i) { return mFragments.get(i); } @Override public int getCount() { return mFragments.size(); } @Override public CharSequence getPageTitle(int position) { if (!CollectionsUtil.isEmpty(mPageTitles)) return mPageTitles.get(position); return null; } }
[ "1@qq" ]
1@qq
e27dc7aa96159e6aa87128c12f4be90d3bd68427
e5bb4c1c5cb3a385a1a391ca43c9094e746bb171
/Service/trunk/service/api-baseInfo/src/main/java/com/hzfh/api/baseInfo/service/CodeNeed2Service.java
cc35428994b791c52e43723930998ae3a9eb1e72
[]
no_license
FashtimeDotCom/huazhen
397143967ebed9d50073bfa4909c52336a883486
6484bc9948a29f0611855f84e81b0a0b080e2e02
refs/heads/master
2021-01-22T14:25:04.159326
2016-01-11T09:52:40
2016-01-11T09:52:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
647
java
package com.hzfh.api.baseInfo.service; import com.hzfh.api.baseInfo.model.CodeNeed2; import com.hzfh.api.baseInfo.model.query.CodeNeed2Condition; import com.hzframework.data.service.BaseService; /******************************************************************************* * * Copyright 2015 HZFH. All rights reserved. * Author: GuoZhenYu * Create Date: 2015/2/6 * Description: * * Revision History: * Date Author Description * ******************************************************************************/ public interface CodeNeed2Service extends BaseService<CodeNeed2, CodeNeed2Condition> { }
[ "ulei0343@163.com" ]
ulei0343@163.com
3d2ea15cf2ab5f9b6aba4f02511b022925b47cb4
d707af7c92ff415a87c61e3f3e4c65271001ff1c
/src/main/java/pt/scanner/server/data/Corner.java
703c2ef64a42b5a64c6a71aa3b7716b872f3181e
[ "MIT" ]
permissive
brunorene/scanner
a0b7fc4eff4b50fbc3c5f38a4d27139df0264930
84bd4adb2547b4221c7c27dd0e89d0f658f3e86f
refs/heads/master
2021-01-10T21:43:24.769980
2014-09-22T07:59:09
2014-09-22T07:59:09
19,091,927
2
0
null
null
null
null
UTF-8
Java
false
false
1,001
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package pt.scanner.server.data; import java.util.Arrays; import java.util.List; import static pt.scanner.server.data.Position.BOTTOM; import static pt.scanner.server.data.Position.LEFT; import static pt.scanner.server.data.Position.RIGHT; import static pt.scanner.server.data.Position.TOP; public enum Corner { TOP_LEFT(TOP, LEFT), TOP_RIGHT(TOP, RIGHT), BOTTOM_LEFT(BOTTOM, LEFT), BOTTOM_RIGHT(BOTTOM, RIGHT); private final Position horizontal; private final Position vertical; private Corner(Position h, Position v) { this.horizontal = h; this.vertical = v; } public Position getHorizontal() { return horizontal; } public Position getVertical() { return vertical; } public static List<Corner> corners() { return Arrays.asList(TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT); } }
[ "brsantos@brsantos-laptop" ]
brsantos@brsantos-laptop
8a8a390722f5bb557e51bfee6cb5beb4438a89ba
5d9571bf0c8a88767d39addf22daa1533281a5cb
/app/src/main/java/com/harjot/goverment/Forgetpassword.java
b87d69df103eff168beeb14bc7c0bc928933a7c4
[]
no_license
cmFodWx5YWRhdjEyMTA5/governmentandroid
cb98f83d91cd2652be867df17d308597b89357b3
78901c894f4c74ffb46f166b400ff766a1cbb5b5
refs/heads/master
2021-08-30T06:10:12.423200
2017-12-16T11:05:14
2017-12-16T11:05:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,012
java
package com.harjot.goverment; import android.app.ProgressDialog; import android.support.annotation.NonNull; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; import com.google.android.gms.tasks.OnCompleteListener; import com.google.android.gms.tasks.Task; import com.google.firebase.auth.FirebaseAuth; public class Forgetpassword extends AppCompatActivity implements View.OnClickListener { EditText email; String em; ProgressDialog pd; FirebaseAuth firebaseAuth; Button btn; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_forgetpassword2); firebaseAuth = FirebaseAuth.getInstance(); pd = new ProgressDialog(this); email = (EditText) findViewById(R.id.Email); btn = (Button) findViewById(R.id.b); btn.setOnClickListener(this); } @Override public void onClick(View view) { if (!email.getText().toString().trim().isEmpty()) { em = email.getText().toString().trim(); pd.show(); firebaseAuth.sendPasswordResetEmail(em).addOnCompleteListener(new OnCompleteListener<Void>() { @Override public void onComplete(@NonNull Task<Void> task) { pd.dismiss(); if (task.isSuccessful()) { Toast.makeText(Forgetpassword.this, "We Have sent you instructions to reset your password !", Toast.LENGTH_SHORT).show(); } else { Toast.makeText(Forgetpassword.this, "Failed to send password reset email !", Toast.LENGTH_SHORT).show(); } } }); } else { Toast.makeText(this, "Enter Your Registered Email Id", Toast.LENGTH_SHORT).show(); } } }
[ "jyotitripathi98752@gmail.com" ]
jyotitripathi98752@gmail.com
c4f0d312e4a5847b1e48648d9a33f3ed03bfa55d
276e69d6769421a84b278ee269c30f4bf3070fe5
/src/test/server/ClientManagerTest.java
d902675320f7669a6b5f6c64637ffeb1592001ae
[]
no_license
alexandre-thauvin/jcoinche
545aa2c60e18f57e49ce13b426f907b078e0e6f2
98d3e89b73593cd63f12df150fec8b5cd19d683b
refs/heads/master
2021-07-18T14:01:07.063328
2017-10-22T20:57:39
2017-10-22T20:57:39
107,408,631
0
0
null
null
null
null
UTF-8
Java
false
false
2,155
java
package server; import io.netty.channel.embedded.EmbeddedChannel; import io.netty.handler.codec.string.StringDecoder; import org.junit.Test; import java.nio.charset.StandardCharsets; import static org.junit.Assert.*; public class ClientManagerTest { @Test public void getClientById() throws Exception { EmbeddedChannel channel = new EmbeddedChannel(new StringDecoder(StandardCharsets.UTF_8)); Client clt = new Client(0, true, channel); ClientManager clientManager = new ClientManager(); clientManager.add(clt); assertEquals(clt, clientManager.getClientById(0)); } @Test public void getClientByChannel() throws Exception { EmbeddedChannel channel = new EmbeddedChannel(new StringDecoder(StandardCharsets.UTF_8)); Client clt = new Client(0, true, channel); ClientManager clientManager = new ClientManager(); clientManager.add(clt); assertEquals(clt, clientManager.getClientByChannel(channel)); } @Test public void getClientByBegin() throws Exception { EmbeddedChannel channel = new EmbeddedChannel(new StringDecoder(StandardCharsets.UTF_8)); Client clt = new Client(0, true, channel); ClientManager clientManager = new ClientManager(); clt.starter = true; clientManager.add(clt); assertEquals(clt, clientManager.getClientByBegin()); } @Test public void add() throws Exception { EmbeddedChannel channel = new EmbeddedChannel(new StringDecoder(StandardCharsets.UTF_8)); Client clt = new Client(0, true, channel); ClientManager clientManager = new ClientManager(); clientManager.add(clt); assertEquals(1, clientManager.lclient.size()); } @Test public void remove() throws Exception { EmbeddedChannel channel = new EmbeddedChannel(new StringDecoder(StandardCharsets.UTF_8)); Client clt = new Client(0, true, channel); ClientManager clientManager = new ClientManager(); clientManager.add(clt); clientManager.remove(clt); assertEquals(0, clientManager.lclient.size()); } }
[ "alexandre.thauvin@epitech.eu" ]
alexandre.thauvin@epitech.eu
96255625e8368013bfa4bad4530ff2e96e3d2155
edcc6819b3a7a7866b0d30b3316e51111f2ec582
/src/main/java/de/cweyermann/sspes/api/repo/Participant.java
42361061d261a29c074c52d550be91d84fedf4f6
[ "Unlicense" ]
permissive
chris2k2/sspes-layer
3fcd18528b0106f6a4c06766e8e5dac40d68d2e9
5c408635a16aa453ecbc6ed36bcb6552db89b37e
refs/heads/main
2023-06-28T08:27:38.324518
2021-07-27T12:23:08
2021-07-27T12:23:18
384,772,211
0
0
null
null
null
null
UTF-8
Java
false
false
494
java
package de.cweyermann.sspes.api.repo; import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBHashKey; import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBTable; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Data @DynamoDBTable(tableName = "SSPS_Participants") @AllArgsConstructor @NoArgsConstructor public class Participant { @DynamoDBHashKey private String name; private String url; private String lastChoice; }
[ "git@cweyermann.de" ]
git@cweyermann.de
8bd95dc374d78cd4656805b61a3e82155ea0eac7
aa248fa8554706b857188d4aa0242aa955fe06f5
/Programs/src/test/chapter2/AdditionOfTwoNumbersInLLTest.java
9be39d1713df1c89d262153cfe8636f3fd8bb6cc
[]
no_license
cponakan/algorithms
bd585a80f89a8b2409abcfcc68e086386680057b
4d28b06c5c20f69e0d69cf67ed12292ec7862f56
refs/heads/master
2020-05-19T15:46:53.847340
2013-09-17T18:47:00
2013-09-17T18:47:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,204
java
package test.chapter2; import junit.framework.Assert; import main.chapter2.AdditionOfTwoNumbersInLL; import org.junit.Test; /** * Created with IntelliJ IDEA. * User: cponakan * Date: 7/3/13 * Time: 11:43 AM * To change this template use File | Settings | File Templates. */ public class AdditionOfTwoNumbersInLLTest { AdditionOfTwoNumbersInLL additionOfTwoNumbersInLL = new AdditionOfTwoNumbersInLL(); @Test public void testAdd() throws Exception { int[] array1 = {1,2,4,5,6,7,8,9}; int[] array2 = {5,7,8,5,6,3,1,0}; AdditionOfTwoNumbersInLL.Node n1 =additionOfTwoNumbersInLL.createLinkedList(array1); AdditionOfTwoNumbersInLL.Node n2 =additionOfTwoNumbersInLL.createLinkedList(array2); AdditionOfTwoNumbersInLL.Node result = additionOfTwoNumbersInLL.add(n1, n2); int[] array3 = {6,9,2,1,3,1,0,0,1}; AdditionOfTwoNumbersInLL.Node expectedOutput =additionOfTwoNumbersInLL.createLinkedList(array3); while(result!=null ){ Assert.assertEquals(expectedOutput.getData(), result.getData()); expectedOutput = expectedOutput.getNextNode(); result = result.getNextNode(); } } }
[ "cponakan@cisco.com" ]
cponakan@cisco.com
d53aa7bb79e28fc79647f94abbb4cad82f597dac
9c42d7add9a1666b50836423bebdb25e56dcef7f
/LG.java
ee43f94e5cfd6673efedf38d9591d0db04fde7c1
[]
no_license
RajagurunathanM/GFGProblems
44c9d0ef317cb9ac95b8688701b74b4fff841e0a
3f3b1ca74cd6e4ee341282f5907815a050738bae
refs/heads/master
2022-06-22T11:46:24.449416
2020-05-06T12:05:17
2020-05-06T12:05:17
261,732,457
0
0
null
null
null
null
UTF-8
Java
false
false
1,121
java
/*package whatever //do not write package name here */ import java.util.*; import java.lang.*; import java.io.*; class LG{ static void lcm(long a,long b) { for(long i=b;i<100000000;i++) { if(i%a==0 && i%b==0) { System.out.print(i+" "); break; } } } static void gcd(long a,long b) { long min = 0; if(a<b) { min = a; } else { min = b; } for(long i = min;i>0;i--) { if(a<b) { if(min%a==0 && b%min==0) { System.out.print(i); break; } } else { if(a%min==0 && min%b==0) { System.out.print(i); break; } } } } public static void main (String[] args) { Scanner x = new Scanner(System.in); int t = x.nextInt(); while(t>0) { long a = x.nextInt(); long b = x.nextInt(); lcm(a,b); gcd(a,b); System.out.println(); t--; } } }
[ "noreply@github.com" ]
RajagurunathanM.noreply@github.com
9d79499e95ab9d407876b8aa2a511a751f9924f3
d9f11daab56e274cfbf0fb49000e0c3b60dcdc34
/Kakuro/src/kakuro/Cell.java
c162d5d3d70cf6d2963299bd5fd3ca13a738b48e
[]
no_license
MertaliKoprl/AdvanceJavaApplications
dd9a480560eccbd2f0ba3011903929b6e74c362a
7f1bb445000c61c7a9bbf4b49ecb7e77499d972c
refs/heads/master
2020-09-03T14:29:58.791159
2020-08-13T14:39:38
2020-08-13T14:39:38
219,484,468
0
0
null
null
null
null
UTF-8
Java
false
false
748
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package kakuro; import javax.swing.JLabel; /** * * @author Mertali */ public class Cell { String info; JLabel j1; public Cell(String info) { this.info = info; } int[] solutionsforCell() { //CONSIDERABLE IT IS NOT NECCESSARY if (info.equalsIgnoreCase("NoClue")) { return null; } else if (info.equalsIgnoreCase("Puzzle")) { return null; } else if (info.startsWith("Clue")) { } return null; // GOING TO FILL THEESE THING } }
[ "37384188+MertaliKoprl@users.noreply.github.com" ]
37384188+MertaliKoprl@users.noreply.github.com
91c58b647c546297d8371389600db2b197aa1f1b
4e9c5e37a4380d5a11a27781187918a6aa31f3f9
/dse-db-all-6.7.0/org/apache/cassandra/utils/progress/jmx/JMXNotificationProgressListener.java
e9febaf908a8e51b77f3588eacbf4cf2a66dbdfa
[]
no_license
jiafu1115/dse67
4a49b9a0d7521000e3c1955eaf0911929bc90d54
62c24079dd5148e952a6ff16bc1161952c222f9b
refs/heads/master
2021-10-11T15:38:54.185842
2019-01-28T01:28:06
2019-01-28T01:28:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,402
java
package org.apache.cassandra.utils.progress.jmx; import java.util.Map; import javax.management.Notification; import javax.management.NotificationListener; import org.apache.cassandra.utils.progress.ProgressEvent; import org.apache.cassandra.utils.progress.ProgressEventType; import org.apache.cassandra.utils.progress.ProgressListener; public abstract class JMXNotificationProgressListener implements ProgressListener, NotificationListener { public JMXNotificationProgressListener() { } public abstract boolean isInterestedIn(String var1); public void handleNotificationLost(long timestamp, String message) { } public void handleConnectionClosed(long timestamp, String message) { } public void handleConnectionFailed(long timestamp, String message) { } public void handleNotification(Notification notification, Object handback) { String var3 = notification.getType(); byte var4 = -1; switch(var3.hashCode()) { case -1001078227: if(var3.equals("progress")) { var4 = 0; } break; case -739658258: if(var3.equals("jmx.remote.connection.notifs.lost")) { var4 = 1; } break; case -411860211: if(var3.equals("jmx.remote.connection.closed")) { var4 = 3; } break; case -336316962: if(var3.equals("jmx.remote.connection.failed")) { var4 = 2; } } switch(var4) { case 0: String tag = (String)notification.getSource(); if(this.isInterestedIn(tag)) { Map<String, Integer> progress = (Map)notification.getUserData(); String message = notification.getMessage(); ProgressEvent event = new ProgressEvent(ProgressEventType.values()[((Integer)progress.get("type")).intValue()], ((Integer)progress.get("progressCount")).intValue(), ((Integer)progress.get("total")).intValue(), message); this.progress(tag, event); } break; case 1: this.handleNotificationLost(notification.getTimeStamp(), notification.getMessage()); break; case 2: this.handleConnectionFailed(notification.getTimeStamp(), notification.getMessage()); break; case 3: this.handleConnectionClosed(notification.getTimeStamp(), notification.getMessage()); } } }
[ "superhackerzhang@sina.com" ]
superhackerzhang@sina.com
90fd626f94779cc28474a1f2dbd38d7af63bf9b8
98ae1f2d203d5ee7c0e39217db6457e65ecf4704
/src/main/java/guru/radugacode256/spring5webappv1/services/ImageService.java
a78ba3bb245df32747e783b78ce51cea35790ebe
[]
no_license
raduga256/spring5-recipe-appv1
9ca12e6e860bc3e741ed139288f0e3119a99aec2
89c7e20b783687752e28e4f65c521b4ecce86792
refs/heads/master
2022-11-16T04:47:25.406732
2020-07-15T09:37:43
2020-07-15T09:37:43
259,578,931
0
0
null
null
null
null
UTF-8
Java
false
false
205
java
package guru.radugacode256.spring5webappv1.services; import org.springframework.web.multipart.MultipartFile; public interface ImageService { void saveImageFile(Long recipeId, MultipartFile file); }
[ "ntalops@yahoo.com" ]
ntalops@yahoo.com
e9f44837edb30fbe46e7ebfb548bf36ed6159138
ea061388a30ab0fdfa79440b3baceb838c13599e
/desenvolvimento/backend/src/test/java/com/ramon/catchup/repository/UsuarioRepositoryTest.java
617fe85b69ad73195d66d4217a49b66a733a7d45
[]
no_license
ramoncgusmao/catchup
dba577ade63609e955a661da2c120ed16e98b157
54bbd83236047d6bf1c519a752ed9c39cad20f24
refs/heads/master
2020-12-02T18:32:17.040628
2020-01-09T02:52:58
2020-01-09T02:52:58
231,079,941
0
0
null
null
null
null
UTF-8
Java
false
false
2,921
java
package com.ramon.catchup.repository; import static org.assertj.core.api.Assertions.assertThat; import java.util.Optional; import javax.persistence.EntityManager; import org.assertj.core.api.Assertions; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.jdbc.AutoConfigureTestDatabase; import org.springframework.boot.test.autoconfigure.jdbc.AutoConfigureTestDatabase.Replace; import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest; import org.springframework.boot.test.autoconfigure.orm.jpa.TestEntityManager; import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.junit4.SpringRunner; import com.ramon.catchup.domain.Filial; import com.ramon.catchup.domain.Perfil; import com.ramon.catchup.domain.Usuario; @RunWith(SpringRunner.class) @DataJpaTest @AutoConfigureTestDatabase(replace = Replace.NONE) @ActiveProfiles("test") public class UsuarioRepositoryTest { @Autowired private UsuarioRepository repository; @Autowired TestEntityManager entityManager; @Test public void deveSalvarUmaUsuario() { Usuario usuario = criarUsuario(); entityManager.persist(usuario.getFilial()); usuario = repository.save(usuario); assertThat(usuario.getId()).isNotNull(); } @Test public void deveBuscarUmaUsuarioPorCpf() { Usuario usuario = criarUsuario(); criarCenarioFilialUsuario(usuario); Optional<Usuario> usuarioopt = repository.findByCpf("12312312325"); assertThat(usuarioopt).isPresent(); assertThat(usuarioopt.get().getNome()).contains("Ramon teste"); } @Test public void naoBuscarUmaUsuarioPorCpf() { Usuario usuario = criarUsuario(); criarCenarioFilialUsuario(usuario); Optional<Usuario> usuarioopt = repository.findByCpf("1211312325"); assertThat(usuarioopt).isEmpty(); } @Test public void naoDeveRetornarPorEmail() { Usuario usuario = criarUsuario(); criarCenarioFilialUsuario(usuario); assertThat(repository.findByEmail("ramong@gmail.com")).isNull(); } @Test public void deveRetornarPorEmail() { Usuario usuario = criarUsuario(); criarCenarioFilialUsuario(usuario); Usuario usuarioBuscar = repository.findByEmail("ramoncgusmao@gmail.com"); assertThat(usuarioBuscar).isNotNull(); assertThat(usuarioBuscar.getCpf()).contains("12312312325"); } private void criarCenarioFilialUsuario(Usuario usuario) { entityManager.persist(usuario.getFilial()); entityManager.persist(usuario); } public static Usuario criarUsuario() { Usuario usuario = new Usuario(); usuario.setNome("Ramon teste"); usuario.setSenha("senha 123"); usuario.setCpf("12312312325"); usuario.setEmail("ramoncgusmao@gmail.com"); usuario.setFilial(FilialRepositoryTest.criarFilial()); usuario.addPerfil(Perfil.ADMIN); return usuario; } }
[ "ramoncgusmao@gmail.com" ]
ramoncgusmao@gmail.com
7232a4cb081cb2e965240197b594ef5f9e5b95bb
dd80a584130ef1a0333429ba76c1cee0eb40df73
/pdk/apps/HelloPDK/src/com/example/android/helloPDK/telephony/DialerActivity.java
3173120ecbaea1177510c8d732436e337fa7e265
[ "MIT" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
Java
false
false
1,641
java
/* * Copyright (C) 2012 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.android.helloPDK.telephony; import com.example.android.helloPDK.R; import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; public class DialerActivity extends Activity { private EditText mText; private Button mButton; @Override protected void onCreate(Bundle savedInstanceState) { setContentView(R.layout.dialer); mText = (EditText)findViewById(R.id.editText_dialer); mButton = (Button)findViewById(R.id.button_dialer); mButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View arg0) { Uri uri = Uri.parse("tel:" + mText.getText().toString()); Intent intent = new Intent(Intent.ACTION_CALL, uri); startActivity(intent); } }); super.onCreate(savedInstanceState); } }
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
a1dab27906ac76dca9d06d623f42272f38546b7d
639b2bcb30e513b1bda0c068f98d7470d26b2f1b
/A03_11.java
cde2960cd3f0e66de1f5f43865fac5cf527047c6
[]
no_license
legoracer18/JAVA-1-Class
5604d2572db036ebbd6b0cc1b2701b19d4763895
c9de77ab5eb954cc41338c7f5923be7921fdfca5
refs/heads/master
2020-04-06T03:34:17.747486
2014-02-07T18:48:08
2014-02-07T18:48:08
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,283
java
package src; /* James Park CIT 210 Section 1 Program 3.3 9/28/12 GET month and year IF month is 2, Determine if year is a leap year Assign proper days of the month determined by month. DISPLAY number of days in month for the year */ import java.util.Scanner; public class A03_11 { public static void main(String[] args) { int month; int year; int leapYear = 0; String[] monthName = {" ", "January", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"}; Scanner input = new Scanner (System.in); System.out.print("Enter in month and year: "); month = input.nextInt(); year = input.nextInt(); if (month == 2) { if (year % 400 == 0) leapYear = 1; else if (year % 100 == 0) leapYear = 0; else if (year % 4 == 0) leapYear = 1; else leapYear = 0; int days = 28 + leapYear; System.out.println("February " + year + " had " + days + "."); } else { switch (month) { case 1: case 3: case 5: case 7: case 8: case 10: case 12: System.out.println(monthName[(month - 1)] + " " + year + " had 31 days."); break; default: System.out.println(monthName[(month - 1)] + " " + year + " had 30 days."); } } input.close(); } }
[ "legoracer18@gmail.com" ]
legoracer18@gmail.com
1ba407a2835d008a187bf63403ba685e4b6727f7
6c0ae319c1457400605bb513776bd9ba7586a90b
/root/Polynomial.java
2c3dffdd8cc49354e3a0fff37ebb6569bf0fcf1d
[]
no_license
bhi5hmaraj/Online_Judge
b5ae5e9544da413d5a501a97eda06bec01bde11a
91020905821abfcefdebbf83e82f82d6fb75dd94
refs/heads/master
2016-08-11T21:22:29.345483
2016-02-16T12:05:01
2016-02-16T12:05:01
48,239,179
1
0
null
null
null
null
UTF-8
Java
false
false
2,883
java
import java.util.*; import java.io.*; import java.math.BigInteger; import static java.math.BigInteger.*; class Polynomial { static BigInteger A,B,C; static BigInteger K; static BigInteger f(BigInteger x) { BigInteger t1 = A.multiply(x.pow(2)); BigInteger t2 = B.multiply(x); return t1.add(t2).add(C); } static long lowerBound() { long low = 0; long high = Integer.MAX_VALUE; long mid; long n=-1; while(low <= high) { mid = (low+high)/2; BigInteger fm = f(valueOf(mid)); //System.out.println("fm "+fm); if(K.compareTo(fm) > 0) { low = mid+1; } else { high = mid-1; n = mid; } } return n; } public static void main(String args[]) { MyScanner2 s1=new MyScanner2(); PrintWriter out=new PrintWriter(new BufferedOutputStream(System.out), true); //Close the output stream after use StringBuffer sb=new StringBuffer(); int t=s1.nextInt(); for(int z=1;z<=t;z++) { A = valueOf(s1.nextLong()); B = valueOf(s1.nextLong()); C = valueOf(s1.nextLong()); K = valueOf(s1.nextLong()); long ans = lowerBound(); if(ans < 0) out.println("/********************************/"); sb.append(ans+"\n"); } out.println(sb); out.close(); } static class MyScanner2 { BufferedReader br; StringTokenizer st; public MyScanner2() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine(){ String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } int[] nextIntArray(int n) { int[] arr = new int[n]; for (int i = 0; i < n; i++) { arr[i] = nextInt(); } return arr; } long[] nextLongArray(int n) { long[] arr = new long[n]; for (int i = 0; i < n; i++) { arr[i] = nextLong(); } return arr; } } }
[ "matib275@gmail.com" ]
matib275@gmail.com
32e5ea82a47e5afae7d6e198197f88b184c9fad1
87fea61b84aa08372bf88ae86480a037b80fe98a
/src/main/java/crmapi/usmp/usmpcrmapi/domain/Rating.java
687c37c5db9c9a7edb5ca1a0adca20969b9106aa
[]
no_license
SebastianPerezSanchez/usmpcrm-api
e67e91ea8e04ea852d122a99147935cb04a81099
e6d73cd647987784f8f8dc09cb429539a78be58f
refs/heads/main
2023-06-09T22:07:40.976477
2021-06-19T21:48:50
2021-06-19T21:48:50
358,727,018
0
0
null
null
null
null
UTF-8
Java
false
false
710
java
package crmapi.usmp.usmpcrmapi.domain; import java.time.ZonedDateTime; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.PrePersist; import javax.persistence.Table; import lombok.*; @Getter @Setter @NoArgsConstructor @AllArgsConstructor @Builder @Entity @Table(name = "t_rating") public class Rating { @GeneratedValue(strategy = GenerationType.IDENTITY) @Id private int id; private Double rateit; private String comments; private ZonedDateTime date; @PrePersist void addTimestamp() { date = ZonedDateTime.now(); } //private int id }
[ "diego.fid@hotmail.com" ]
diego.fid@hotmail.com
bceeb9d93ee863b7be538c13904630b08bf16663
991bcdd84432a9bdbb1626ae425bafdf365a4ccf
/EI OpgaveApp/EI_OpgaveApp.Android/obj/Debug/android/src/android/support/mediacompat/R.java
ff838e3066338749ed300b189603d30281976736
[]
no_license
klaus41/EI_OpgaveApp
390e6c9f1e79a762d0a94669aae79fd5b471977d
3bca5e0edde7ca6d1b9cc47e1cc459d30d7bb381
refs/heads/master
2021-01-01T03:59:46.531941
2017-07-13T08:39:39
2017-07-13T08:39:39
97,099,589
0
0
null
null
null
null
UTF-8
Java
false
false
621,233
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package android.support.mediacompat; public final class R { public static final class anim { public static final int abc_fade_in=0x7f040000; public static final int abc_fade_out=0x7f040001; public static final int abc_grow_fade_in_from_bottom=0x7f040002; public static final int abc_popup_enter=0x7f040003; public static final int abc_popup_exit=0x7f040004; public static final int abc_shrink_fade_out_from_bottom=0x7f040005; public static final int abc_slide_in_bottom=0x7f040006; public static final int abc_slide_in_top=0x7f040007; public static final int abc_slide_out_bottom=0x7f040008; public static final int abc_slide_out_top=0x7f040009; public static final int design_bottom_sheet_slide_in=0x7f04000a; public static final int design_bottom_sheet_slide_out=0x7f04000b; public static final int design_fab_in=0x7f04000c; public static final int design_fab_out=0x7f04000d; public static final int design_snackbar_in=0x7f04000e; public static final int design_snackbar_out=0x7f04000f; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f050000; } public static final class attr { /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarDivider=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 actionBarItemBackground=0x7f01005e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f010057; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01005c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f010059; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarStyle=0x7f010058; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f010053; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f010052; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010054; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarWidgetTheme=0x7f01005b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionButtonStyle=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 actionDropDownStyle=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 actionLayout=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 actionMenuTextAppearance=0x7f01005f; /** <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=0x7f010060; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeBackground=0x7f010063; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f010062; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f010065; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f010067; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f010066; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePasteDrawable=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 actionModePopupWindowStyle=0x7f01006d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=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 actionModeShareDrawable=0x7f01006a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f010064; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeStyle=0x7f010061; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f01006c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f010055; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f010056; /** <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=0x7f0100cb; /** <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=0x7f0100ca; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f010080; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f0100a4; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100a5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogStyle=0x7f0100a3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a6; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100b9; /** <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=0x7f0100ba; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowHeadLength=0x7f0100c1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowShaftLength=0x7f0100c2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ab; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int background=0x7f010028; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f01002a; /** <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=0x7f010029; /** <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=0x7f0100fe; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int backgroundTintMode=0x7f0100ff; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int barLength=0x7f0100c3; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010129; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010106; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_overlapTop=0x7f010132; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010105; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010107; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int borderWidth=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 borderlessButtonStyle=0x7f01007d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetDialogTheme=0x7f010121; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetStyle=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 buttonBarButtonStyle=0x7f01007a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f0100a9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f0100aa; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=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 buttonBarStyle=0x7f010079; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> */ public static final int buttonGravity=0x7f0100f3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f01003d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyle=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 buttonStyleSmall=0x7f0100ad; /** <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=0x7f0100bb; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int buttonTintMode=0x7f0100bc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardBackgroundColor=0x7f010011; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010012; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010013; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010014; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010016; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010015; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ae; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f0100af; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100d6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeItemLayout=0x7f01003a; /** <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=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 collapseIcon=0x7f0100f4; /** <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=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 collapsedTitleTextAppearance=0x7f01010e; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int color=0x7f0100bd; /** <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=0x7f01009b; /** <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=0x7f0100a2; /** <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=0x7f01009f; /** <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=0x7f01009d; /** <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=0x7f01009e; /** <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=0x7f01009c; /** <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=0x7f010099; /** <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=0x7f01009a; /** <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=0x7f0100a0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int commitIcon=0x7f0100db; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEnd=0x7f010033; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010037; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetLeft=0x7f010034; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010035; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010032; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010036; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010017; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01001b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010018; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010019; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01001a; /** <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=0x7f01010f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int controlBackground=0x7f0100a1; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010148; /** <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=0x7f010149; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterOverflowTextAppearance=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 counterTextAppearance=0x7f01014a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int customNavigationLayout=0x7f01002b; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int defaultQueryHint=0x7f0100d5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dialogPreferredPadding=0x7f010072; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f010071; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>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=0x7f010021; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int divider=0x7f010027; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerHorizontal=0x7f01007f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100c7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=0x7f01007e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 drawerArrowStyle=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 dropDownListViewStyle=0x7f010091; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010075; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextBackground=0x7f010086; /** <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=0x7f010085; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f0100b0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010038; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010146; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int errorTextAppearance=0x7f010147; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010100; /** <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=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 expandedTitleMargin=0x7f010108; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginBottom=0x7f01010c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginEnd=0x7f01010b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginStart=0x7f010109; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginTop=0x7f01010a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandedTitleTextAppearance=0x7f01010d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int externalRouteEnabledDrawable=0x7f010010; /** <p>Must be one of the following constant values.</p> <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=0x7f010125; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01012a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int gapBetweenBars=0x7f0100c0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=0x7f0100d7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int headerLayout=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 height=0x7f01001d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 hintAnimationEnabled=0x7f01014c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010145; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int hintTextAppearance=0x7f010144; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f010077; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f01002c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int icon=0x7f010025; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconifiedByDefault=0x7f0100d3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int imageButtonStyle=0x7f010087; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f01002e; /** <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=0x7f01003b; /** <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=0x7f010131; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01001e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01012e; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemIconTint=0x7f01012c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010030; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01012f; /** <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=0x7f01012d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010119; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout=0x7f0100d2; /** <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; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01011c; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_anchorGravity=0x7f01011e; /** <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=0x7f01011b; /** <p>Must be one of the following constant values.</p> <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=0x7f010117; /** <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=0x7f010118; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> */ public static final int layout_dodgeInsetEdges=0x7f010120; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_insetEdge=0x7f01011f; /** <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=0x7f01011d; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> */ public static final int layout_scrollFlags=0x7f010103; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_scrollInterpolator=0x7f010104; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f010098; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f010073; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listItemLayout=0x7f010041; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f0100b8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f010092; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01008c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01008e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01008d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingLeft=0x7f01008f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010090; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int logo=0x7f010026; /** <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=0x7f0100f8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxActionInlineWidth=0x7f010133; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxButtonHeight=0x7f0100f2; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100c5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteAudioTrackDrawable=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 mediaRouteButtonStyle=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 mediaRouteCloseDrawable=0x7f010006; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteControlPanelThemeOverlay=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 mediaRouteDefaultIconDrawable=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 mediaRoutePauseDrawable=0x7f010009; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRoutePlayDrawable=0x7f01000a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteSpeakerGroupIconDrawable=0x7f01000b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteSpeakerIconDrawable=0x7f01000c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteStopDrawable=0x7f01000d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteTheme=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 mediaRouteTvIconDrawable=0x7f01000f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int menu=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 multiChoiceItemLayout=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 navigationContentDescription=0x7f0100f7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100f6; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> */ public static final int navigationMode=0x7f010020; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int overlapAnchor=0x7f0100ce; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100d0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingEnd=0x7f0100fc; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingStart=0x7f0100fb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingTopNoTitle=0x7f0100d1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelBackground=0x7f010095; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f010097; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010096; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleContentDescription=0x7f01014f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int passwordToggleDrawable=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 passwordToggleEnabled=0x7f01014d; /** <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=0x7f010150; /** <p>Must be one of the following constant values.</p> <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=0x7f010151; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupMenuStyle=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 popupTheme=0x7f010039; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010084; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100cc; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int pressedTranslationZ=0x7f010126; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarStyle=0x7f01002d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100dd; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int queryHint=0x7f0100d4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=0x7f0100b1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyle=0x7f0100b2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f0100b3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f0100b4; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010124; /** <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=0x7f010113; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int scrimVisibleHeightTrigger=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 searchHintIcon=0x7f0100d9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchIcon=0x7f0100d8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchViewStyle=0x7f01008b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int seekBarStyle=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 selectableItemBackground=0x7f01007b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f01007c; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> */ public static final int showAsAction=0x7f0100c8; /** <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=0x7f0100c6; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100e9; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010042; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010040; /** <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; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100be; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f010076; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerStyle=0x7f0100b6; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int splitTrack=0x7f0100e8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int srcCompat=0x7f010043; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100cf; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010101; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_collapsible=0x7f010102; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int statusBarBackground=0x7f01011a; /** <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=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 subMenuArrow=0x7f0100cd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int submitBackground=0x7f0100de; /** <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=0x7f010022; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100eb; /** <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=0x7f0100fa; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010024; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 switchMinWidth=0x7f0100e6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 switchStyle=0x7f0100b7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=0x7f0100e5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabBackground=0x7f010137; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabContentStart=0x7f010136; /** <p>Must be one of the following constant values.</p> <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=0x7f010139; /** <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=0x7f010134; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabIndicatorHeight=0x7f010135; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMaxWidth=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 tabMinWidth=0x7f01013a; /** <p>Must be one of the following constant values.</p> <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=0x7f010138; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010143; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 tabPaddingEnd=0x7f010141; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingStart=0x7f01013f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 tabSelectedTextColor=0x7f01013e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01013c; /** <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=0x7f01013d; /** <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=0x7f010047; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f01006e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f010093; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010094; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010070; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f010089; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f010088; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f01006f; /** <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=0x7f0100a7; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int textColorError=0x7f010123; /** <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=0x7f01008a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int theme=0x7f0100fd; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100c4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100e4; /** <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=0x7f0100df; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int thumbTintMode=0x7f0100e0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tickMark=0x7f010044; /** <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=0x7f010045; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int tickMarkTintMode=0x7f010046; /** <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=0x7f01001f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010116; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ec; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginBottom=0x7f0100f0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ee; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginStart=0x7f0100ed; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginTop=0x7f0100ef; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargins=0x7f0100f1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ea; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleTextColor=0x7f0100f9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextStyle=0x7f010023; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 toolbarNavigationButtonStyle=0x7f010082; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarStyle=0x7f010081; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f0100e1; /** <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=0x7f0100e2; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int trackTintMode=0x7f0100e3; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 voiceIcon=0x7f0100da; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010048; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBarOverlay=0x7f01004a; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01004b; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f01004f; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f01004d; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f01004c; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>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=0x7f01004e; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010050; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010051; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowNoTitle=0x7f010049; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0d0000; public static final int abc_allow_stacked_button_bar=0x7f0d0001; public static final int abc_config_actionMenuItemAllCaps=0x7f0d0002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f0d0003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0d0004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0c004a; public static final int abc_background_cache_hint_selector_material_light=0x7f0c004b; public static final int abc_btn_colored_borderless_text_material=0x7f0c004c; public static final int abc_btn_colored_text_material=0x7f0c004d; public static final int abc_color_highlight_material=0x7f0c004e; public static final int abc_hint_foreground_material_dark=0x7f0c004f; public static final int abc_hint_foreground_material_light=0x7f0c0050; public static final int abc_input_method_navigation_guard=0x7f0c0005; public static final int abc_primary_text_disable_only_material_dark=0x7f0c0051; public static final int abc_primary_text_disable_only_material_light=0x7f0c0052; public static final int abc_primary_text_material_dark=0x7f0c0053; public static final int abc_primary_text_material_light=0x7f0c0054; public static final int abc_search_url_text=0x7f0c0055; public static final int abc_search_url_text_normal=0x7f0c0006; public static final int abc_search_url_text_pressed=0x7f0c0007; public static final int abc_search_url_text_selected=0x7f0c0008; public static final int abc_secondary_text_material_dark=0x7f0c0056; public static final int abc_secondary_text_material_light=0x7f0c0057; public static final int abc_tint_btn_checkable=0x7f0c0058; public static final int abc_tint_default=0x7f0c0059; public static final int abc_tint_edittext=0x7f0c005a; public static final int abc_tint_seek_thumb=0x7f0c005b; public static final int abc_tint_spinner=0x7f0c005c; public static final int abc_tint_switch_thumb=0x7f0c005d; public static final int abc_tint_switch_track=0x7f0c005e; public static final int accent_material_dark=0x7f0c0009; public static final int accent_material_light=0x7f0c000a; public static final int background_floating_material_dark=0x7f0c000b; public static final int background_floating_material_light=0x7f0c000c; public static final int background_material_dark=0x7f0c000d; public static final int background_material_light=0x7f0c000e; public static final int bright_foreground_disabled_material_dark=0x7f0c000f; public static final int bright_foreground_disabled_material_light=0x7f0c0010; public static final int bright_foreground_inverse_material_dark=0x7f0c0011; public static final int bright_foreground_inverse_material_light=0x7f0c0012; public static final int bright_foreground_material_dark=0x7f0c0013; public static final int bright_foreground_material_light=0x7f0c0014; public static final int button_material_dark=0x7f0c0015; public static final int button_material_light=0x7f0c0016; 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 design_bottom_navigation_shadow_color=0x7f0c003f; public static final int design_error=0x7f0c005f; public static final int design_fab_shadow_end_color=0x7f0c0040; public static final int design_fab_shadow_mid_color=0x7f0c0041; public static final int design_fab_shadow_start_color=0x7f0c0042; public static final int design_fab_stroke_end_inner_color=0x7f0c0043; public static final int design_fab_stroke_end_outer_color=0x7f0c0044; public static final int design_fab_stroke_top_inner_color=0x7f0c0045; public static final int design_fab_stroke_top_outer_color=0x7f0c0046; public static final int design_snackbar_background_color=0x7f0c0047; public static final int design_textinput_error_color_dark=0x7f0c0048; public static final int design_textinput_error_color_light=0x7f0c0049; public static final int design_tint_password_toggle=0x7f0c0060; public static final int dim_foreground_disabled_material_dark=0x7f0c0017; public static final int dim_foreground_disabled_material_light=0x7f0c0018; public static final int dim_foreground_material_dark=0x7f0c0019; public static final int dim_foreground_material_light=0x7f0c001a; public static final int foreground_material_dark=0x7f0c001b; public static final int foreground_material_light=0x7f0c001c; public static final int highlighted_text_material_dark=0x7f0c001d; public static final int highlighted_text_material_light=0x7f0c001e; public static final int material_blue_grey_800=0x7f0c001f; public static final int material_blue_grey_900=0x7f0c0020; public static final int material_blue_grey_950=0x7f0c0021; public static final int material_deep_teal_200=0x7f0c0022; public static final int material_deep_teal_500=0x7f0c0023; public static final int material_grey_100=0x7f0c0024; public static final int material_grey_300=0x7f0c0025; public static final int material_grey_50=0x7f0c0026; public static final int material_grey_600=0x7f0c0027; public static final int material_grey_800=0x7f0c0028; public static final int material_grey_850=0x7f0c0029; public static final int material_grey_900=0x7f0c002a; public static final int notification_action_color_filter=0x7f0c0004; public static final int notification_icon_bg_color=0x7f0c002b; public static final int notification_material_background_media_default_color=0x7f0c002c; public static final int primary_dark_material_dark=0x7f0c002d; public static final int primary_dark_material_light=0x7f0c002e; public static final int primary_material_dark=0x7f0c002f; public static final int primary_material_light=0x7f0c0030; public static final int primary_text_default_material_dark=0x7f0c0031; public static final int primary_text_default_material_light=0x7f0c0032; public static final int primary_text_disabled_material_dark=0x7f0c0033; public static final int primary_text_disabled_material_light=0x7f0c0034; public static final int ripple_material_dark=0x7f0c0035; public static final int ripple_material_light=0x7f0c0036; public static final int secondary_text_default_material_dark=0x7f0c0037; public static final int secondary_text_default_material_light=0x7f0c0038; public static final int secondary_text_disabled_material_dark=0x7f0c0039; public static final int secondary_text_disabled_material_light=0x7f0c003a; public static final int switch_thumb_disabled_material_dark=0x7f0c003b; public static final int switch_thumb_disabled_material_light=0x7f0c003c; public static final int switch_thumb_material_dark=0x7f0c0061; public static final int switch_thumb_material_light=0x7f0c0062; public static final int switch_thumb_normal_material_dark=0x7f0c003d; public static final int switch_thumb_normal_material_light=0x7f0c003e; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f070018; public static final int abc_action_bar_content_inset_with_nav=0x7f070019; public static final int abc_action_bar_default_height_material=0x7f07000d; public static final int abc_action_bar_default_padding_end_material=0x7f07001a; public static final int abc_action_bar_default_padding_start_material=0x7f07001b; public static final int abc_action_bar_elevation_material=0x7f070021; public static final int abc_action_bar_icon_vertical_padding_material=0x7f070022; public static final int abc_action_bar_overflow_padding_end_material=0x7f070023; public static final int abc_action_bar_overflow_padding_start_material=0x7f070024; public static final int abc_action_bar_progress_bar_size=0x7f07000e; public static final int abc_action_bar_stacked_max_height=0x7f070025; public static final int abc_action_bar_stacked_tab_max_width=0x7f070026; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f070027; public static final int abc_action_bar_subtitle_top_margin_material=0x7f070028; public static final int abc_action_button_min_height_material=0x7f070029; public static final int abc_action_button_min_width_material=0x7f07002a; public static final int abc_action_button_min_width_overflow_material=0x7f07002b; public static final int abc_alert_dialog_button_bar_height=0x7f07000c; public static final int abc_button_inset_horizontal_material=0x7f07002c; public static final int abc_button_inset_vertical_material=0x7f07002d; public static final int abc_button_padding_horizontal_material=0x7f07002e; public static final int abc_button_padding_vertical_material=0x7f07002f; public static final int abc_cascading_menus_min_smallest_width=0x7f070030; public static final int abc_config_prefDialogWidth=0x7f070011; public static final int abc_control_corner_material=0x7f070031; public static final int abc_control_inset_material=0x7f070032; public static final int abc_control_padding_material=0x7f070033; public static final int abc_dialog_fixed_height_major=0x7f070012; public static final int abc_dialog_fixed_height_minor=0x7f070013; public static final int abc_dialog_fixed_width_major=0x7f070014; public static final int abc_dialog_fixed_width_minor=0x7f070015; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f070034; public static final int abc_dialog_list_padding_top_no_title=0x7f070035; public static final int abc_dialog_min_width_major=0x7f070016; public static final int abc_dialog_min_width_minor=0x7f070017; public static final int abc_dialog_padding_material=0x7f070036; public static final int abc_dialog_padding_top_material=0x7f070037; public static final int abc_dialog_title_divider_material=0x7f070038; public static final int abc_disabled_alpha_material_dark=0x7f070039; public static final int abc_disabled_alpha_material_light=0x7f07003a; public static final int abc_dropdownitem_icon_width=0x7f07003b; public static final int abc_dropdownitem_text_padding_left=0x7f07003c; public static final int abc_dropdownitem_text_padding_right=0x7f07003d; public static final int abc_edit_text_inset_bottom_material=0x7f07003e; public static final int abc_edit_text_inset_horizontal_material=0x7f07003f; public static final int abc_edit_text_inset_top_material=0x7f070040; public static final int abc_floating_window_z=0x7f070041; public static final int abc_list_item_padding_horizontal_material=0x7f070042; public static final int abc_panel_menu_list_width=0x7f070043; public static final int abc_progress_bar_height_material=0x7f070044; public static final int abc_search_view_preferred_height=0x7f070045; public static final int abc_search_view_preferred_width=0x7f070046; public static final int abc_seekbar_track_background_height_material=0x7f070047; public static final int abc_seekbar_track_progress_height_material=0x7f070048; public static final int abc_select_dialog_padding_start_material=0x7f070049; public static final int abc_switch_padding=0x7f07001d; public static final int abc_text_size_body_1_material=0x7f07004a; public static final int abc_text_size_body_2_material=0x7f07004b; public static final int abc_text_size_button_material=0x7f07004c; public static final int abc_text_size_caption_material=0x7f07004d; public static final int abc_text_size_display_1_material=0x7f07004e; public static final int abc_text_size_display_2_material=0x7f07004f; public static final int abc_text_size_display_3_material=0x7f070050; public static final int abc_text_size_display_4_material=0x7f070051; public static final int abc_text_size_headline_material=0x7f070052; public static final int abc_text_size_large_material=0x7f070053; public static final int abc_text_size_medium_material=0x7f070054; public static final int abc_text_size_menu_header_material=0x7f070055; public static final int abc_text_size_menu_material=0x7f070056; public static final int abc_text_size_small_material=0x7f070057; public static final int abc_text_size_subhead_material=0x7f070058; public static final int abc_text_size_subtitle_material_toolbar=0x7f07000f; public static final int abc_text_size_title_material=0x7f070059; public static final int abc_text_size_title_material_toolbar=0x7f070010; public static final int cardview_compat_inset_shadow=0x7f070009; public static final int cardview_default_elevation=0x7f07000a; public static final int cardview_default_radius=0x7f07000b; public static final int design_appbar_elevation=0x7f070076; public static final int design_bottom_navigation_active_item_max_width=0x7f070077; public static final int design_bottom_navigation_active_text_size=0x7f070078; public static final int design_bottom_navigation_elevation=0x7f070079; public static final int design_bottom_navigation_height=0x7f07007a; public static final int design_bottom_navigation_item_max_width=0x7f07007b; public static final int design_bottom_navigation_item_min_width=0x7f07007c; public static final int design_bottom_navigation_margin=0x7f07007d; public static final int design_bottom_navigation_shadow_height=0x7f07007e; public static final int design_bottom_navigation_text_size=0x7f07007f; public static final int design_bottom_sheet_modal_elevation=0x7f070080; public static final int design_bottom_sheet_peek_height_min=0x7f070081; public static final int design_fab_border_width=0x7f070082; public static final int design_fab_elevation=0x7f070083; public static final int design_fab_image_size=0x7f070084; public static final int design_fab_size_mini=0x7f070085; public static final int design_fab_size_normal=0x7f070086; public static final int design_fab_translation_z_pressed=0x7f070087; public static final int design_navigation_elevation=0x7f070088; public static final int design_navigation_icon_padding=0x7f070089; public static final int design_navigation_icon_size=0x7f07008a; public static final int design_navigation_max_width=0x7f07006e; public static final int design_navigation_padding_bottom=0x7f07008b; public static final int design_navigation_separator_vertical_padding=0x7f07008c; public static final int design_snackbar_action_inline_max_width=0x7f07006f; public static final int design_snackbar_background_corner_radius=0x7f070070; public static final int design_snackbar_elevation=0x7f07008d; public static final int design_snackbar_extra_spacing_horizontal=0x7f070071; public static final int design_snackbar_max_width=0x7f070072; public static final int design_snackbar_min_width=0x7f070073; public static final int design_snackbar_padding_horizontal=0x7f07008e; public static final int design_snackbar_padding_vertical=0x7f07008f; public static final int design_snackbar_padding_vertical_2lines=0x7f070074; public static final int design_snackbar_text_size=0x7f070090; public static final int design_tab_max_width=0x7f070091; public static final int design_tab_scrollable_min_width=0x7f070075; public static final int design_tab_text_size=0x7f070092; public static final int design_tab_text_size_2line=0x7f070093; public static final int disabled_alpha_material_dark=0x7f07005a; public static final int disabled_alpha_material_light=0x7f07005b; public static final int highlight_alpha_material_colored=0x7f07005c; public static final int highlight_alpha_material_dark=0x7f07005d; public static final int highlight_alpha_material_light=0x7f07005e; public static final int hint_alpha_material_dark=0x7f07005f; public static final int hint_alpha_material_light=0x7f070060; public static final int hint_pressed_alpha_material_dark=0x7f070061; public static final int hint_pressed_alpha_material_light=0x7f070062; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f070000; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f070001; public static final int item_touch_helper_swipe_escape_velocity=0x7f070002; public static final int mr_controller_volume_group_list_item_height=0x7f070003; public static final int mr_controller_volume_group_list_item_icon_size=0x7f070004; public static final int mr_controller_volume_group_list_max_height=0x7f070005; public static final int mr_controller_volume_group_list_padding_top=0x7f070008; public static final int mr_dialog_fixed_width_major=0x7f070006; public static final int mr_dialog_fixed_width_minor=0x7f070007; public static final int notification_action_icon_size=0x7f070063; public static final int notification_action_text_size=0x7f070064; public static final int notification_big_circle_margin=0x7f070065; public static final int notification_content_margin_start=0x7f07001e; public static final int notification_large_icon_height=0x7f070066; public static final int notification_large_icon_width=0x7f070067; public static final int notification_main_column_padding_top=0x7f07001f; public static final int notification_media_narrow_margin=0x7f070020; public static final int notification_right_icon_size=0x7f070068; public static final int notification_right_side_padding_top=0x7f07001c; public static final int notification_small_icon_background_padding=0x7f070069; public static final int notification_small_icon_size_as_large=0x7f07006a; public static final int notification_subtext_size=0x7f07006b; public static final int notification_top_pad=0x7f07006c; public static final int notification_top_pad_large_text=0x7f07006d; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; public static final int abc_action_bar_item_background_material=0x7f020001; public static final int abc_btn_borderless_material=0x7f020002; public static final int abc_btn_check_material=0x7f020003; public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; public static final int abc_btn_colored_material=0x7f020006; public static final int abc_btn_default_mtrl_shape=0x7f020007; public static final int abc_btn_radio_material=0x7f020008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; public static final int abc_cab_background_internal_bg=0x7f02000d; public static final int abc_cab_background_top_material=0x7f02000e; public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; public static final int abc_control_background_material=0x7f020010; public static final int abc_dialog_material_background=0x7f020011; public static final int abc_edit_text_material=0x7f020012; public static final int abc_ic_ab_back_material=0x7f020013; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; public static final int abc_ic_clear_material=0x7f020015; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; public static final int abc_ic_go_search_api_material=0x7f020017; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; public static final int abc_ic_menu_overflow_material=0x7f02001a; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; public static final int abc_ic_search_api_material=0x7f02001e; public static final int abc_ic_star_black_16dp=0x7f02001f; public static final int abc_ic_star_black_36dp=0x7f020020; public static final int abc_ic_star_black_48dp=0x7f020021; public static final int abc_ic_star_half_black_16dp=0x7f020022; public static final int abc_ic_star_half_black_36dp=0x7f020023; public static final int abc_ic_star_half_black_48dp=0x7f020024; public static final int abc_ic_voice_search_api_material=0x7f020025; public static final int abc_item_background_holo_dark=0x7f020026; public static final int abc_item_background_holo_light=0x7f020027; public static final int abc_list_divider_mtrl_alpha=0x7f020028; public static final int abc_list_focused_holo=0x7f020029; public static final int abc_list_longpressed_holo=0x7f02002a; public static final int abc_list_pressed_holo_dark=0x7f02002b; public static final int abc_list_pressed_holo_light=0x7f02002c; public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; public static final int abc_list_selector_disabled_holo_light=0x7f020030; public static final int abc_list_selector_holo_dark=0x7f020031; public static final int abc_list_selector_holo_light=0x7f020032; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; public static final int abc_popup_background_mtrl_mult=0x7f020034; public static final int abc_ratingbar_indicator_material=0x7f020035; public static final int abc_ratingbar_material=0x7f020036; public static final int abc_ratingbar_small_material=0x7f020037; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; public static final int abc_seekbar_thumb_material=0x7f02003d; public static final int abc_seekbar_tick_mark_material=0x7f02003e; public static final int abc_seekbar_track_material=0x7f02003f; public static final int abc_spinner_mtrl_am_alpha=0x7f020040; public static final int abc_spinner_textfield_background_material=0x7f020041; public static final int abc_switch_thumb_material=0x7f020042; public static final int abc_switch_track_mtrl_alpha=0x7f020043; public static final int abc_tab_indicator_material=0x7f020044; public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; public static final int abc_text_cursor_material=0x7f020046; public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; public static final int abc_textfield_search_material=0x7f020051; public static final int abc_vector_test=0x7f020052; public static final int avd_hide_password=0x7f020053; public static final int avd_hide_password_1=0x7f020110; public static final int avd_hide_password_2=0x7f020111; public static final int avd_hide_password_3=0x7f020112; public static final int avd_show_password=0x7f020054; public static final int avd_show_password_1=0x7f020113; public static final int avd_show_password_2=0x7f020114; public static final int avd_show_password_3=0x7f020115; public static final int design_bottom_navigation_item_background=0x7f020055; public static final int design_fab_background=0x7f020056; public static final int design_ic_visibility=0x7f020057; public static final int design_ic_visibility_off=0x7f020058; public static final int design_password_eye=0x7f020059; public static final int design_snackbar_background=0x7f02005a; public static final int eistor=0x7f02005b; public static final int ic_audiotrack_dark=0x7f02005c; public static final int ic_audiotrack_light=0x7f02005d; public static final int ic_dialog_close_dark=0x7f02005e; public static final int ic_dialog_close_light=0x7f02005f; public static final int ic_group_collapse_00=0x7f020060; public static final int ic_group_collapse_01=0x7f020061; public static final int ic_group_collapse_02=0x7f020062; public static final int ic_group_collapse_03=0x7f020063; public static final int ic_group_collapse_04=0x7f020064; public static final int ic_group_collapse_05=0x7f020065; public static final int ic_group_collapse_06=0x7f020066; public static final int ic_group_collapse_07=0x7f020067; public static final int ic_group_collapse_08=0x7f020068; public static final int ic_group_collapse_09=0x7f020069; public static final int ic_group_collapse_10=0x7f02006a; public static final int ic_group_collapse_11=0x7f02006b; public static final int ic_group_collapse_12=0x7f02006c; public static final int ic_group_collapse_13=0x7f02006d; public static final int ic_group_collapse_14=0x7f02006e; public static final int ic_group_collapse_15=0x7f02006f; public static final int ic_group_expand_00=0x7f020070; public static final int ic_group_expand_01=0x7f020071; public static final int ic_group_expand_02=0x7f020072; public static final int ic_group_expand_03=0x7f020073; public static final int ic_group_expand_04=0x7f020074; public static final int ic_group_expand_05=0x7f020075; public static final int ic_group_expand_06=0x7f020076; public static final int ic_group_expand_07=0x7f020077; public static final int ic_group_expand_08=0x7f020078; public static final int ic_group_expand_09=0x7f020079; public static final int ic_group_expand_10=0x7f02007a; public static final int ic_group_expand_11=0x7f02007b; public static final int ic_group_expand_12=0x7f02007c; public static final int ic_group_expand_13=0x7f02007d; public static final int ic_group_expand_14=0x7f02007e; public static final int ic_group_expand_15=0x7f02007f; public static final int ic_launcher=0x7f020080; public static final int ic_media_pause_dark=0x7f020081; public static final int ic_media_pause_light=0x7f020082; public static final int ic_media_play_dark=0x7f020083; public static final int ic_media_play_light=0x7f020084; public static final int ic_media_stop_dark=0x7f020085; public static final int ic_media_stop_light=0x7f020086; public static final int ic_mr_button_connected_00_dark=0x7f020087; public static final int ic_mr_button_connected_00_light=0x7f020088; public static final int ic_mr_button_connected_01_dark=0x7f020089; public static final int ic_mr_button_connected_01_light=0x7f02008a; public static final int ic_mr_button_connected_02_dark=0x7f02008b; public static final int ic_mr_button_connected_02_light=0x7f02008c; public static final int ic_mr_button_connected_03_dark=0x7f02008d; public static final int ic_mr_button_connected_03_light=0x7f02008e; public static final int ic_mr_button_connected_04_dark=0x7f02008f; public static final int ic_mr_button_connected_04_light=0x7f020090; public static final int ic_mr_button_connected_05_dark=0x7f020091; public static final int ic_mr_button_connected_05_light=0x7f020092; public static final int ic_mr_button_connected_06_dark=0x7f020093; public static final int ic_mr_button_connected_06_light=0x7f020094; public static final int ic_mr_button_connected_07_dark=0x7f020095; public static final int ic_mr_button_connected_07_light=0x7f020096; public static final int ic_mr_button_connected_08_dark=0x7f020097; public static final int ic_mr_button_connected_08_light=0x7f020098; public static final int ic_mr_button_connected_09_dark=0x7f020099; public static final int ic_mr_button_connected_09_light=0x7f02009a; public static final int ic_mr_button_connected_10_dark=0x7f02009b; public static final int ic_mr_button_connected_10_light=0x7f02009c; public static final int ic_mr_button_connected_11_dark=0x7f02009d; public static final int ic_mr_button_connected_11_light=0x7f02009e; public static final int ic_mr_button_connected_12_dark=0x7f02009f; public static final int ic_mr_button_connected_12_light=0x7f0200a0; public static final int ic_mr_button_connected_13_dark=0x7f0200a1; public static final int ic_mr_button_connected_13_light=0x7f0200a2; public static final int ic_mr_button_connected_14_dark=0x7f0200a3; public static final int ic_mr_button_connected_14_light=0x7f0200a4; public static final int ic_mr_button_connected_15_dark=0x7f0200a5; public static final int ic_mr_button_connected_15_light=0x7f0200a6; public static final int ic_mr_button_connected_16_dark=0x7f0200a7; public static final int ic_mr_button_connected_16_light=0x7f0200a8; public static final int ic_mr_button_connected_17_dark=0x7f0200a9; public static final int ic_mr_button_connected_17_light=0x7f0200aa; public static final int ic_mr_button_connected_18_dark=0x7f0200ab; public static final int ic_mr_button_connected_18_light=0x7f0200ac; public static final int ic_mr_button_connected_19_dark=0x7f0200ad; public static final int ic_mr_button_connected_19_light=0x7f0200ae; public static final int ic_mr_button_connected_20_dark=0x7f0200af; public static final int ic_mr_button_connected_20_light=0x7f0200b0; public static final int ic_mr_button_connected_21_dark=0x7f0200b1; public static final int ic_mr_button_connected_21_light=0x7f0200b2; public static final int ic_mr_button_connected_22_dark=0x7f0200b3; public static final int ic_mr_button_connected_22_light=0x7f0200b4; public static final int ic_mr_button_connecting_00_dark=0x7f0200b5; public static final int ic_mr_button_connecting_00_light=0x7f0200b6; public static final int ic_mr_button_connecting_01_dark=0x7f0200b7; public static final int ic_mr_button_connecting_01_light=0x7f0200b8; public static final int ic_mr_button_connecting_02_dark=0x7f0200b9; public static final int ic_mr_button_connecting_02_light=0x7f0200ba; public static final int ic_mr_button_connecting_03_dark=0x7f0200bb; public static final int ic_mr_button_connecting_03_light=0x7f0200bc; public static final int ic_mr_button_connecting_04_dark=0x7f0200bd; public static final int ic_mr_button_connecting_04_light=0x7f0200be; public static final int ic_mr_button_connecting_05_dark=0x7f0200bf; public static final int ic_mr_button_connecting_05_light=0x7f0200c0; public static final int ic_mr_button_connecting_06_dark=0x7f0200c1; public static final int ic_mr_button_connecting_06_light=0x7f0200c2; public static final int ic_mr_button_connecting_07_dark=0x7f0200c3; public static final int ic_mr_button_connecting_07_light=0x7f0200c4; public static final int ic_mr_button_connecting_08_dark=0x7f0200c5; public static final int ic_mr_button_connecting_08_light=0x7f0200c6; public static final int ic_mr_button_connecting_09_dark=0x7f0200c7; public static final int ic_mr_button_connecting_09_light=0x7f0200c8; public static final int ic_mr_button_connecting_10_dark=0x7f0200c9; public static final int ic_mr_button_connecting_10_light=0x7f0200ca; public static final int ic_mr_button_connecting_11_dark=0x7f0200cb; public static final int ic_mr_button_connecting_11_light=0x7f0200cc; public static final int ic_mr_button_connecting_12_dark=0x7f0200cd; public static final int ic_mr_button_connecting_12_light=0x7f0200ce; public static final int ic_mr_button_connecting_13_dark=0x7f0200cf; public static final int ic_mr_button_connecting_13_light=0x7f0200d0; public static final int ic_mr_button_connecting_14_dark=0x7f0200d1; public static final int ic_mr_button_connecting_14_light=0x7f0200d2; public static final int ic_mr_button_connecting_15_dark=0x7f0200d3; public static final int ic_mr_button_connecting_15_light=0x7f0200d4; public static final int ic_mr_button_connecting_16_dark=0x7f0200d5; public static final int ic_mr_button_connecting_16_light=0x7f0200d6; public static final int ic_mr_button_connecting_17_dark=0x7f0200d7; public static final int ic_mr_button_connecting_17_light=0x7f0200d8; public static final int ic_mr_button_connecting_18_dark=0x7f0200d9; public static final int ic_mr_button_connecting_18_light=0x7f0200da; public static final int ic_mr_button_connecting_19_dark=0x7f0200db; public static final int ic_mr_button_connecting_19_light=0x7f0200dc; public static final int ic_mr_button_connecting_20_dark=0x7f0200dd; public static final int ic_mr_button_connecting_20_light=0x7f0200de; public static final int ic_mr_button_connecting_21_dark=0x7f0200df; public static final int ic_mr_button_connecting_21_light=0x7f0200e0; public static final int ic_mr_button_connecting_22_dark=0x7f0200e1; public static final int ic_mr_button_connecting_22_light=0x7f0200e2; public static final int ic_mr_button_disabled_dark=0x7f0200e3; public static final int ic_mr_button_disabled_light=0x7f0200e4; public static final int ic_mr_button_disconnected_dark=0x7f0200e5; public static final int ic_mr_button_disconnected_light=0x7f0200e6; public static final int ic_mr_button_grey=0x7f0200e7; public static final int ic_vol_type_speaker_dark=0x7f0200e8; public static final int ic_vol_type_speaker_group_dark=0x7f0200e9; public static final int ic_vol_type_speaker_group_light=0x7f0200ea; public static final int ic_vol_type_speaker_light=0x7f0200eb; public static final int ic_vol_type_tv_dark=0x7f0200ec; public static final int ic_vol_type_tv_light=0x7f0200ed; public static final int icon=0x7f0200ee; public static final int mr_button_connected_dark=0x7f0200ef; public static final int mr_button_connected_light=0x7f0200f0; public static final int mr_button_connecting_dark=0x7f0200f1; public static final int mr_button_connecting_light=0x7f0200f2; public static final int mr_button_dark=0x7f0200f3; public static final int mr_button_light=0x7f0200f4; public static final int mr_dialog_close_dark=0x7f0200f5; public static final int mr_dialog_close_light=0x7f0200f6; public static final int mr_dialog_material_background_dark=0x7f0200f7; public static final int mr_dialog_material_background_light=0x7f0200f8; public static final int mr_group_collapse=0x7f0200f9; public static final int mr_group_expand=0x7f0200fa; public static final int mr_media_pause_dark=0x7f0200fb; public static final int mr_media_pause_light=0x7f0200fc; public static final int mr_media_play_dark=0x7f0200fd; public static final int mr_media_play_light=0x7f0200fe; public static final int mr_media_stop_dark=0x7f0200ff; public static final int mr_media_stop_light=0x7f020100; public static final int mr_vol_type_audiotrack_dark=0x7f020101; public static final int mr_vol_type_audiotrack_light=0x7f020102; public static final int navigation_empty_icon=0x7f020103; public static final int notification_action_background=0x7f020104; public static final int notification_bg=0x7f020105; public static final int notification_bg_low=0x7f020106; public static final int notification_bg_low_normal=0x7f020107; public static final int notification_bg_low_pressed=0x7f020108; public static final int notification_bg_normal=0x7f020109; public static final int notification_bg_normal_pressed=0x7f02010a; public static final int notification_icon_background=0x7f02010b; public static final int notification_template_icon_bg=0x7f02010e; public static final int notification_template_icon_low_bg=0x7f02010f; public static final int notification_tile_bg=0x7f02010c; public static final int notify_panel_notification_icon_bg=0x7f02010d; } public static final class id { public static final int action0=0x7f08009c; public static final int action_bar=0x7f080064; public static final int action_bar_activity_content=0x7f080001; public static final int action_bar_container=0x7f080063; public static final int action_bar_root=0x7f08005f; public static final int action_bar_spinner=0x7f080002; public static final int action_bar_subtitle=0x7f080042; public static final int action_bar_title=0x7f080041; public static final int action_container=0x7f080099; public static final int action_context_bar=0x7f080065; public static final int action_divider=0x7f0800a0; public static final int action_image=0x7f08009a; public static final int action_menu_divider=0x7f080003; public static final int action_menu_presenter=0x7f080004; public static final int action_mode_bar=0x7f080061; public static final int action_mode_bar_stub=0x7f080060; public static final int action_mode_close_button=0x7f080043; public static final int action_text=0x7f08009b; public static final int actions=0x7f0800a9; public static final int activity_chooser_view_content=0x7f080044; public static final int add=0x7f080019; public static final int alertTitle=0x7f080058; public static final int all=0x7f08003d; public static final int always=0x7f080023; public static final int auto=0x7f08002f; public static final int beginning=0x7f080020; public static final int bottom=0x7f080028; public static final int buttonPanel=0x7f08004b; public static final int cancel_action=0x7f08009d; public static final int center=0x7f080030; public static final int center_horizontal=0x7f080031; public static final int center_vertical=0x7f080032; public static final int checkbox=0x7f08005b; public static final int chronometer=0x7f0800a5; public static final int clip_horizontal=0x7f080039; public static final int clip_vertical=0x7f08003a; public static final int collapseActionView=0x7f080024; public static final int contentPanel=0x7f08004e; public static final int custom=0x7f080055; public static final int customPanel=0x7f080054; public static final int decor_content_parent=0x7f080062; public static final int default_activity_button=0x7f080047; public static final int design_bottom_sheet=0x7f080076; public static final int design_menu_item_action_area=0x7f08007d; public static final int design_menu_item_action_area_stub=0x7f08007c; public static final int design_menu_item_text=0x7f08007b; public static final int design_navigation_view=0x7f08007a; public static final int disableHome=0x7f080012; public static final int edit_query=0x7f080066; public static final int end=0x7f080021; public static final int end_padder=0x7f0800af; public static final int enterAlways=0x7f08002a; public static final int enterAlwaysCollapsed=0x7f08002b; public static final int exitUntilCollapsed=0x7f08002c; public static final int expand_activities_button=0x7f080045; public static final int expanded_menu=0x7f08005a; public static final int fill=0x7f08003b; public static final int fill_horizontal=0x7f08003c; public static final int fill_vertical=0x7f080033; public static final int fixed=0x7f08003f; public static final int home=0x7f080005; public static final int homeAsUp=0x7f080013; public static final int icon=0x7f080049; public static final int icon_group=0x7f0800aa; public static final int ifRoom=0x7f080025; public static final int image=0x7f080046; public static final int info=0x7f0800a6; public static final int item_touch_helper_previous_elevation=0x7f080000; public static final int largeLabel=0x7f080074; public static final int left=0x7f080034; public static final int line1=0x7f0800ab; public static final int line3=0x7f0800ad; public static final int listMode=0x7f08000f; public static final int list_item=0x7f080048; public static final int masked=0x7f0800b3; public static final int media_actions=0x7f08009f; public static final int middle=0x7f080022; public static final int mini=0x7f08003e; public static final int mr_art=0x7f08008b; public static final int mr_chooser_list=0x7f080080; public static final int mr_chooser_route_desc=0x7f080083; public static final int mr_chooser_route_icon=0x7f080081; public static final int mr_chooser_route_name=0x7f080082; public static final int mr_chooser_title=0x7f08007f; public static final int mr_close=0x7f080088; public static final int mr_control_divider=0x7f08008e; public static final int mr_control_playback_ctrl=0x7f080094; public static final int mr_control_subtitle=0x7f080097; public static final int mr_control_title=0x7f080096; public static final int mr_control_title_container=0x7f080095; public static final int mr_custom_control=0x7f080089; public static final int mr_default_control=0x7f08008a; public static final int mr_dialog_area=0x7f080085; public static final int mr_expandable_area=0x7f080084; public static final int mr_group_expand_collapse=0x7f080098; public static final int mr_media_main_control=0x7f08008c; public static final int mr_name=0x7f080087; public static final int mr_playback_control=0x7f08008d; public static final int mr_title_bar=0x7f080086; public static final int mr_volume_control=0x7f08008f; public static final int mr_volume_group_list=0x7f080090; public static final int mr_volume_item_icon=0x7f080092; public static final int mr_volume_slider=0x7f080093; public static final int multiply=0x7f08001a; public static final int navigation_header_container=0x7f080079; public static final int never=0x7f080026; public static final int none=0x7f080014; public static final int normal=0x7f080010; public static final int notification_background=0x7f0800a8; public static final int notification_main_column=0x7f0800a2; public static final int notification_main_column_container=0x7f0800a1; public static final int parallax=0x7f080037; public static final int parentPanel=0x7f08004d; public static final int pin=0x7f080038; public static final int progress_circular=0x7f080006; public static final int progress_horizontal=0x7f080007; public static final int radio=0x7f08005d; public static final int right=0x7f080035; public static final int right_icon=0x7f0800a7; public static final int right_side=0x7f0800a3; public static final int screen=0x7f08001b; public static final int scroll=0x7f08002d; public static final int scrollIndicatorDown=0x7f080053; public static final int scrollIndicatorUp=0x7f08004f; public static final int scrollView=0x7f080050; public static final int scrollable=0x7f080040; public static final int search_badge=0x7f080068; public static final int search_bar=0x7f080067; public static final int search_button=0x7f080069; public static final int search_close_btn=0x7f08006e; public static final int search_edit_frame=0x7f08006a; public static final int search_go_btn=0x7f080070; public static final int search_mag_icon=0x7f08006b; public static final int search_plate=0x7f08006c; public static final int search_src_text=0x7f08006d; public static final int search_voice_btn=0x7f080071; public static final int select_dialog_listview=0x7f080072; public static final int shortcut=0x7f08005c; public static final int showCustom=0x7f080015; public static final int showHome=0x7f080016; public static final int showTitle=0x7f080017; public static final int sliding_tabs=0x7f0800b0; public static final int smallLabel=0x7f080073; public static final int snackbar_action=0x7f080078; public static final int snackbar_text=0x7f080077; public static final int snap=0x7f08002e; public static final int spacer=0x7f08004c; public static final int split_action_bar=0x7f080008; public static final int src_atop=0x7f08001c; public static final int src_in=0x7f08001d; public static final int src_over=0x7f08001e; public static final int start=0x7f080036; public static final int status_bar_latest_event_content=0x7f08009e; public static final int submenuarrow=0x7f08005e; public static final int submit_area=0x7f08006f; public static final int tabMode=0x7f080011; public static final int text=0x7f0800ae; public static final int text2=0x7f0800ac; public static final int textSpacerNoButtons=0x7f080052; public static final int textSpacerNoTitle=0x7f080051; public static final int text_input_password_toggle=0x7f08007e; public static final int textinput_counter=0x7f08000c; public static final int textinput_error=0x7f08000d; public static final int time=0x7f0800a4; public static final int title=0x7f08004a; public static final int titleDividerNoCustom=0x7f080059; public static final int title_template=0x7f080057; public static final int toolbar=0x7f0800b1; public static final int top=0x7f080029; public static final int topPanel=0x7f080056; public static final int touch_outside=0x7f080075; public static final int transition_current_scene=0x7f08000a; public static final int transition_scene_layoutid_cache=0x7f08000b; public static final int up=0x7f080009; public static final int useLogo=0x7f080018; public static final int view_offset_helper=0x7f08000e; public static final int visible=0x7f0800b2; public static final int volume_item_container=0x7f080091; public static final int withText=0x7f080027; public static final int wrap_content=0x7f08001f; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0a0003; public static final int abc_config_activityShortDur=0x7f0a0004; public static final int app_bar_elevation_anim_duration=0x7f0a0008; public static final int bottom_sheet_slide_duration=0x7f0a0009; public static final int cancel_button_image_alpha=0x7f0a0005; public static final int design_snackbar_text_max_lines=0x7f0a0007; public static final int hide_password_duration=0x7f0a000a; public static final int mr_controller_volume_group_list_animation_duration_ms=0x7f0a0000; public static final int mr_controller_volume_group_list_fade_in_duration_ms=0x7f0a0001; public static final int mr_controller_volume_group_list_fade_out_duration_ms=0x7f0a0002; public static final int show_password_duration=0x7f0a000b; public static final int status_bar_notification_info_maxnum=0x7f0a0006; } public static final class interpolator { public static final int mr_fast_out_slow_in=0x7f060000; public static final int mr_linear_out_slow_in=0x7f060001; } public static final class layout { public static final int abc_action_bar_title_item=0x7f030000; public static final int abc_action_bar_up_container=0x7f030001; public static final int abc_action_bar_view_list_nav_layout=0x7f030002; public static final int abc_action_menu_item_layout=0x7f030003; public static final int abc_action_menu_layout=0x7f030004; public static final int abc_action_mode_bar=0x7f030005; public static final int abc_action_mode_close_item_material=0x7f030006; public static final int abc_activity_chooser_view=0x7f030007; public static final int abc_activity_chooser_view_list_item=0x7f030008; public static final int abc_alert_dialog_button_bar_material=0x7f030009; public static final int abc_alert_dialog_material=0x7f03000a; public static final int abc_alert_dialog_title_material=0x7f03000b; public static final int abc_dialog_title_material=0x7f03000c; public static final int abc_expanded_menu_layout=0x7f03000d; public static final int abc_list_menu_item_checkbox=0x7f03000e; public static final int abc_list_menu_item_icon=0x7f03000f; public static final int abc_list_menu_item_layout=0x7f030010; public static final int abc_list_menu_item_radio=0x7f030011; public static final int abc_popup_menu_header_item_layout=0x7f030012; public static final int abc_popup_menu_item_layout=0x7f030013; public static final int abc_screen_content_include=0x7f030014; public static final int abc_screen_simple=0x7f030015; public static final int abc_screen_simple_overlay_action_mode=0x7f030016; public static final int abc_screen_toolbar=0x7f030017; public static final int abc_search_dropdown_item_icons_2line=0x7f030018; public static final int abc_search_view=0x7f030019; public static final int abc_select_dialog_material=0x7f03001a; public static final int design_bottom_navigation_item=0x7f03001b; public static final int design_bottom_sheet_dialog=0x7f03001c; public static final int design_layout_snackbar=0x7f03001d; public static final int design_layout_snackbar_include=0x7f03001e; public static final int design_layout_tab_icon=0x7f03001f; public static final int design_layout_tab_text=0x7f030020; public static final int design_menu_item_action_area=0x7f030021; public static final int design_navigation_item=0x7f030022; public static final int design_navigation_item_header=0x7f030023; public static final int design_navigation_item_separator=0x7f030024; public static final int design_navigation_item_subheader=0x7f030025; public static final int design_navigation_menu=0x7f030026; public static final int design_navigation_menu_item=0x7f030027; public static final int design_text_input_password_icon=0x7f030028; public static final int mr_chooser_dialog=0x7f030029; public static final int mr_chooser_list_item=0x7f03002a; public static final int mr_controller_material_dialog_b=0x7f03002b; public static final int mr_controller_volume_item=0x7f03002c; public static final int mr_playback_control=0x7f03002d; public static final int mr_volume_control=0x7f03002e; public static final int notification_action=0x7f03002f; public static final int notification_action_tombstone=0x7f030030; public static final int notification_media_action=0x7f030031; public static final int notification_media_cancel_action=0x7f030032; public static final int notification_template_big_media=0x7f030033; public static final int notification_template_big_media_custom=0x7f030034; public static final int notification_template_big_media_narrow=0x7f030035; public static final int notification_template_big_media_narrow_custom=0x7f030036; public static final int notification_template_custom_big=0x7f030037; public static final int notification_template_icon_group=0x7f030038; public static final int notification_template_lines_media=0x7f030039; public static final int notification_template_media=0x7f03003a; public static final int notification_template_media_custom=0x7f03003b; public static final int notification_template_part_chronometer=0x7f03003c; public static final int notification_template_part_time=0x7f03003d; public static final int select_dialog_item_material=0x7f03003e; public static final int select_dialog_multichoice_material=0x7f03003f; public static final int select_dialog_singlechoice_material=0x7f030040; public static final int support_simple_spinner_dropdown_item=0x7f030041; public static final int tabbar=0x7f030042; public static final int toolbar=0x7f030043; } public static final class string { public static final int abc_action_bar_home_description=0x7f090015; public static final int abc_action_bar_home_description_format=0x7f090016; public static final int abc_action_bar_home_subtitle_description_format=0x7f090017; public static final int abc_action_bar_up_description=0x7f090018; public static final int abc_action_menu_overflow_description=0x7f090019; public static final int abc_action_mode_done=0x7f09001a; public static final int abc_activity_chooser_view_see_all=0x7f09001b; public static final int abc_activitychooserview_choose_application=0x7f09001c; public static final int abc_capital_off=0x7f09001d; public static final int abc_capital_on=0x7f09001e; public static final int abc_font_family_body_1_material=0x7f09002a; public static final int abc_font_family_body_2_material=0x7f09002b; public static final int abc_font_family_button_material=0x7f09002c; public static final int abc_font_family_caption_material=0x7f09002d; public static final int abc_font_family_display_1_material=0x7f09002e; public static final int abc_font_family_display_2_material=0x7f09002f; public static final int abc_font_family_display_3_material=0x7f090030; public static final int abc_font_family_display_4_material=0x7f090031; public static final int abc_font_family_headline_material=0x7f090032; public static final int abc_font_family_menu_material=0x7f090033; public static final int abc_font_family_subhead_material=0x7f090034; public static final int abc_font_family_title_material=0x7f090035; public static final int abc_search_hint=0x7f09001f; public static final int abc_searchview_description_clear=0x7f090020; public static final int abc_searchview_description_query=0x7f090021; public static final int abc_searchview_description_search=0x7f090022; public static final int abc_searchview_description_submit=0x7f090023; public static final int abc_searchview_description_voice=0x7f090024; public static final int abc_shareactionprovider_share_with=0x7f090025; public static final int abc_shareactionprovider_share_with_application=0x7f090026; public static final int abc_toolbar_collapse_description=0x7f090027; public static final int appbar_scrolling_view_behavior=0x7f090036; public static final int bottom_sheet_behavior=0x7f090037; public static final int character_counter_pattern=0x7f090038; public static final int mr_button_content_description=0x7f090000; public static final int mr_cast_button_connected=0x7f090001; public static final int mr_cast_button_connecting=0x7f090002; public static final int mr_cast_button_disconnected=0x7f090003; public static final int mr_chooser_searching=0x7f090004; public static final int mr_chooser_title=0x7f090005; public static final int mr_controller_album_art=0x7f090006; public static final int mr_controller_casting_screen=0x7f090007; public static final int mr_controller_close_description=0x7f090008; public static final int mr_controller_collapse_group=0x7f090009; public static final int mr_controller_disconnect=0x7f09000a; public static final int mr_controller_expand_group=0x7f09000b; public static final int mr_controller_no_info_available=0x7f09000c; public static final int mr_controller_no_media_selected=0x7f09000d; public static final int mr_controller_pause=0x7f09000e; public static final int mr_controller_play=0x7f09000f; public static final int mr_controller_stop=0x7f090014; public static final int mr_controller_stop_casting=0x7f090010; public static final int mr_controller_volume_slider=0x7f090011; public static final int mr_system_route_name=0x7f090012; public static final int mr_user_route_category_name=0x7f090013; public static final int password_toggle_content_description=0x7f090039; public static final int path_password_eye=0x7f09003a; public static final int path_password_eye_mask_strike_through=0x7f09003b; public static final int path_password_eye_mask_visible=0x7f09003c; public static final int path_password_strike_through=0x7f09003d; public static final int search_menu_title=0x7f090028; public static final int status_bar_notification_info_overflow=0x7f090029; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0b00ae; public static final int AlertDialog_AppCompat_Light=0x7f0b00af; public static final int Animation_AppCompat_Dialog=0x7f0b00b0; public static final int Animation_AppCompat_DropDownUp=0x7f0b00b1; public static final int Animation_Design_BottomSheetDialog=0x7f0b0170; public static final int AppCompatDialogStyle=0x7f0b018b; public static final int Base_AlertDialog_AppCompat=0x7f0b00b2; public static final int Base_AlertDialog_AppCompat_Light=0x7f0b00b3; public static final int Base_Animation_AppCompat_Dialog=0x7f0b00b4; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b00b5; public static final int Base_CardView=0x7f0b000c; public static final int Base_DialogWindowTitle_AppCompat=0x7f0b00b6; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b00b7; public static final int Base_TextAppearance_AppCompat=0x7f0b004e; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b004f; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b0050; public static final int Base_TextAppearance_AppCompat_Button=0x7f0b0036; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b0051; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b0052; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b0053; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b0054; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b0055; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b0056; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b001a; public static final int Base_TextAppearance_AppCompat_Large=0x7f0b0057; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b001b; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0058; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0059; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b005a; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b001c; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b005b; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b00b8; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b005c; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b005d; public static final int Base_TextAppearance_AppCompat_Small=0x7f0b005e; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b001d; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b005f; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b001e; public static final int Base_TextAppearance_AppCompat_Title=0x7f0b0060; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b001f; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00a3; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0061; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0062; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0063; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0064; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0065; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0066; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b0067; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b00aa; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b00ab; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b00a4; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00b9; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0068; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0069; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b006a; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b006b; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b006c; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b00ba; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b006d; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b006e; public static final int Base_Theme_AppCompat=0x7f0b006f; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b00bb; public static final int Base_Theme_AppCompat_Dialog=0x7f0b0020; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b0021; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b00bc; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0022; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0010; public static final int Base_Theme_AppCompat_Light=0x7f0b0070; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b00bd; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b0023; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0024; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b00be; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0025; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0011; public static final int Base_ThemeOverlay_AppCompat=0x7f0b00bf; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b00c0; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b00c1; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b00c2; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0b0026; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0027; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b00c3; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0028; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0029; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0b002a; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0b0032; public static final int Base_V12_Widget_AppCompat_EditText=0x7f0b0033; public static final int Base_V21_Theme_AppCompat=0x7f0b0071; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b0072; public static final int Base_V21_Theme_AppCompat_Light=0x7f0b0073; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b0074; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0b0075; public static final int Base_V22_Theme_AppCompat=0x7f0b00a1; public static final int Base_V22_Theme_AppCompat_Light=0x7f0b00a2; public static final int Base_V23_Theme_AppCompat=0x7f0b00a5; public static final int Base_V23_Theme_AppCompat_Light=0x7f0b00a6; public static final int Base_V7_Theme_AppCompat=0x7f0b00c4; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b00c5; public static final int Base_V7_Theme_AppCompat_Light=0x7f0b00c6; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b00c7; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0b00c8; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b00c9; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0b00ca; public static final int Base_Widget_AppCompat_ActionBar=0x7f0b00cb; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b00cc; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b00cd; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b0076; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b0077; public static final int Base_Widget_AppCompat_ActionButton=0x7f0b0078; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0079; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b007a; public static final int Base_Widget_AppCompat_ActionMode=0x7f0b00ce; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b00cf; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0034; public static final int Base_Widget_AppCompat_Button=0x7f0b007b; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b007c; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b007d; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b00d0; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0b00a7; public static final int Base_Widget_AppCompat_Button_Small=0x7f0b007e; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b007f; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b00d1; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0080; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0081; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b00d2; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b000f; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b00d3; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b0082; public static final int Base_Widget_AppCompat_EditText=0x7f0b0035; public static final int Base_Widget_AppCompat_ImageButton=0x7f0b0083; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b00d4; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b00d5; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b00d6; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0084; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0085; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0086; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b0087; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0088; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0b00d7; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b0089; public static final int Base_Widget_AppCompat_ListView=0x7f0b008a; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b008b; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b008c; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b008d; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b008e; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b00d8; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b002b; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b002c; public static final int Base_Widget_AppCompat_RatingBar=0x7f0b008f; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0b00a8; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0b00a9; public static final int Base_Widget_AppCompat_SearchView=0x7f0b00d9; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b00da; public static final int Base_Widget_AppCompat_SeekBar=0x7f0b0090; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0b00db; public static final int Base_Widget_AppCompat_Spinner=0x7f0b0091; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b0012; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b0092; public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00dc; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0093; public static final int Base_Widget_Design_AppBarLayout=0x7f0b0171; public static final int Base_Widget_Design_TabLayout=0x7f0b0172; public static final int CardView=0x7f0b000b; public static final int CardView_Dark=0x7f0b000d; public static final int CardView_Light=0x7f0b000e; public static final int MainTheme=0x7f0b0189; /** Base theme applied no matter what API */ public static final int MainTheme_Base=0x7f0b018a; public static final int Platform_AppCompat=0x7f0b002d; public static final int Platform_AppCompat_Light=0x7f0b002e; public static final int Platform_ThemeOverlay_AppCompat=0x7f0b0094; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b0095; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b0096; public static final int Platform_V11_AppCompat=0x7f0b002f; public static final int Platform_V11_AppCompat_Light=0x7f0b0030; public static final int Platform_V14_AppCompat=0x7f0b0037; public static final int Platform_V14_AppCompat_Light=0x7f0b0038; public static final int Platform_V21_AppCompat=0x7f0b0097; public static final int Platform_V21_AppCompat_Light=0x7f0b0098; public static final int Platform_V25_AppCompat=0x7f0b00ac; public static final int Platform_V25_AppCompat_Light=0x7f0b00ad; public static final int Platform_Widget_AppCompat_Spinner=0x7f0b0031; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b0040; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b0041; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b0042; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b0043; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b0044; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b0045; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b0046; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b0047; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b0048; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b0049; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b004a; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b004b; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b004c; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b004d; public static final int TextAppearance_AppCompat=0x7f0b00dd; public static final int TextAppearance_AppCompat_Body1=0x7f0b00de; public static final int TextAppearance_AppCompat_Body2=0x7f0b00df; public static final int TextAppearance_AppCompat_Button=0x7f0b00e0; public static final int TextAppearance_AppCompat_Caption=0x7f0b00e1; public static final int TextAppearance_AppCompat_Display1=0x7f0b00e2; public static final int TextAppearance_AppCompat_Display2=0x7f0b00e3; public static final int TextAppearance_AppCompat_Display3=0x7f0b00e4; public static final int TextAppearance_AppCompat_Display4=0x7f0b00e5; public static final int TextAppearance_AppCompat_Headline=0x7f0b00e6; public static final int TextAppearance_AppCompat_Inverse=0x7f0b00e7; public static final int TextAppearance_AppCompat_Large=0x7f0b00e8; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b00e9; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b00ea; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b00eb; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00ec; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00ed; public static final int TextAppearance_AppCompat_Medium=0x7f0b00ee; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b00ef; public static final int TextAppearance_AppCompat_Menu=0x7f0b00f0; public static final int TextAppearance_AppCompat_Notification=0x7f0b0039; public static final int TextAppearance_AppCompat_Notification_Info=0x7f0b0099; public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0b009a; public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0b00f1; public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0b00f2; public static final int TextAppearance_AppCompat_Notification_Media=0x7f0b009b; public static final int TextAppearance_AppCompat_Notification_Time=0x7f0b009c; public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0b009d; public static final int TextAppearance_AppCompat_Notification_Title=0x7f0b003a; public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0b009e; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00f3; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b00f4; public static final int TextAppearance_AppCompat_Small=0x7f0b00f5; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b00f6; public static final int TextAppearance_AppCompat_Subhead=0x7f0b00f7; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00f8; public static final int TextAppearance_AppCompat_Title=0x7f0b00f9; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b00fa; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00fb; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b00fc; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b00fd; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b00fe; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b00ff; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0100; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0101; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0102; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b0103; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0b0104; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b0105; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b0106; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0107; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0108; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0109; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b010a; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b010b; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b010c; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b010d; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0b0173; public static final int TextAppearance_Design_Counter=0x7f0b0174; public static final int TextAppearance_Design_Counter_Overflow=0x7f0b0175; public static final int TextAppearance_Design_Error=0x7f0b0176; public static final int TextAppearance_Design_Hint=0x7f0b0177; public static final int TextAppearance_Design_Snackbar_Message=0x7f0b0178; public static final int TextAppearance_Design_Tab=0x7f0b0179; public static final int TextAppearance_MediaRouter_PrimaryText=0x7f0b0000; public static final int TextAppearance_MediaRouter_SecondaryText=0x7f0b0001; public static final int TextAppearance_MediaRouter_Title=0x7f0b0002; public static final int TextAppearance_StatusBar_EventContent=0x7f0b003b; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0b003c; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0b003d; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0b003e; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0b003f; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b010e; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b010f; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0110; public static final int Theme_AppCompat=0x7f0b0111; public static final int Theme_AppCompat_CompactMenu=0x7f0b0112; public static final int Theme_AppCompat_DayNight=0x7f0b0013; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0b0014; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0b0015; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0b0016; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0b0017; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0b0018; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0b0019; public static final int Theme_AppCompat_Dialog=0x7f0b0113; public static final int Theme_AppCompat_Dialog_Alert=0x7f0b0114; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b0115; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b0116; public static final int Theme_AppCompat_Light=0x7f0b0117; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0118; public static final int Theme_AppCompat_Light_Dialog=0x7f0b0119; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b011a; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b011b; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b011c; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b011d; public static final int Theme_AppCompat_NoActionBar=0x7f0b011e; public static final int Theme_Design=0x7f0b017a; public static final int Theme_Design_BottomSheetDialog=0x7f0b017b; public static final int Theme_Design_Light=0x7f0b017c; public static final int Theme_Design_Light_BottomSheetDialog=0x7f0b017d; public static final int Theme_Design_Light_NoActionBar=0x7f0b017e; public static final int Theme_Design_NoActionBar=0x7f0b017f; public static final int Theme_MediaRouter=0x7f0b0003; public static final int Theme_MediaRouter_Light=0x7f0b0004; public static final int Theme_MediaRouter_Light_DarkControlPanel=0x7f0b0005; public static final int Theme_MediaRouter_LightControlPanel=0x7f0b0006; public static final int ThemeOverlay_AppCompat=0x7f0b011f; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b0120; public static final int ThemeOverlay_AppCompat_Dark=0x7f0b0121; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b0122; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0b0123; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0124; public static final int ThemeOverlay_AppCompat_Light=0x7f0b0125; public static final int ThemeOverlay_MediaRouter_Dark=0x7f0b0007; public static final int ThemeOverlay_MediaRouter_Light=0x7f0b0008; public static final int Widget_AppCompat_ActionBar=0x7f0b0126; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0127; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0128; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0129; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b012a; public static final int Widget_AppCompat_ActionButton=0x7f0b012b; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b012c; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b012d; public static final int Widget_AppCompat_ActionMode=0x7f0b012e; public static final int Widget_AppCompat_ActivityChooserView=0x7f0b012f; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0130; public static final int Widget_AppCompat_Button=0x7f0b0131; public static final int Widget_AppCompat_Button_Borderless=0x7f0b0132; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b0133; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0134; public static final int Widget_AppCompat_Button_Colored=0x7f0b0135; public static final int Widget_AppCompat_Button_Small=0x7f0b0136; public static final int Widget_AppCompat_ButtonBar=0x7f0b0137; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b0138; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0139; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b013a; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b013b; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b013c; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b013d; public static final int Widget_AppCompat_EditText=0x7f0b013e; public static final int Widget_AppCompat_ImageButton=0x7f0b013f; public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0140; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0141; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0142; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0143; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0144; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0145; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0146; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0147; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0148; public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0149; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b014a; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b014b; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b014c; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b014d; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b014e; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b014f; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b0150; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0151; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b0152; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0153; public static final int Widget_AppCompat_Light_SearchView=0x7f0b0154; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0155; public static final int Widget_AppCompat_ListMenuView=0x7f0b0156; public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0157; public static final int Widget_AppCompat_ListView=0x7f0b0158; public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0159; public static final int Widget_AppCompat_ListView_Menu=0x7f0b015a; public static final int Widget_AppCompat_NotificationActionContainer=0x7f0b009f; public static final int Widget_AppCompat_NotificationActionText=0x7f0b00a0; public static final int Widget_AppCompat_PopupMenu=0x7f0b015b; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b015c; public static final int Widget_AppCompat_PopupWindow=0x7f0b015d; public static final int Widget_AppCompat_ProgressBar=0x7f0b015e; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b015f; public static final int Widget_AppCompat_RatingBar=0x7f0b0160; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0b0161; public static final int Widget_AppCompat_RatingBar_Small=0x7f0b0162; public static final int Widget_AppCompat_SearchView=0x7f0b0163; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0164; public static final int Widget_AppCompat_SeekBar=0x7f0b0165; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0b0166; public static final int Widget_AppCompat_Spinner=0x7f0b0167; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b0168; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0169; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b016a; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b016b; public static final int Widget_AppCompat_Toolbar=0x7f0b016c; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b016d; public static final int Widget_Design_AppBarLayout=0x7f0b016f; public static final int Widget_Design_BottomNavigationView=0x7f0b0180; public static final int Widget_Design_BottomSheet_Modal=0x7f0b0181; public static final int Widget_Design_CollapsingToolbar=0x7f0b0182; public static final int Widget_Design_CoordinatorLayout=0x7f0b0183; public static final int Widget_Design_FloatingActionButton=0x7f0b0184; public static final int Widget_Design_NavigationView=0x7f0b0185; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0b0186; public static final int Widget_Design_Snackbar=0x7f0b0187; public static final int Widget_Design_TabLayout=0x7f0b016e; public static final int Widget_Design_TextInputLayout=0x7f0b0188; public static final int Widget_MediaRouter_Light_MediaRouteButton=0x7f0b0009; public static final int Widget_MediaRouter_MediaRouteButton=0x7f0b000a; } 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 dk.ei.opgaveapp:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit dk.ei.opgaveapp:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked dk.ei.opgaveapp:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd dk.ei.opgaveapp:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions dk.ei.opgaveapp:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft dk.ei.opgaveapp:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight dk.ei.opgaveapp:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart dk.ei.opgaveapp:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation dk.ei.opgaveapp:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout dk.ei.opgaveapp:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions dk.ei.opgaveapp:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider dk.ei.opgaveapp:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation dk.ei.opgaveapp:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height dk.ei.opgaveapp:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll dk.ei.opgaveapp:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator dk.ei.opgaveapp:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout dk.ei.opgaveapp:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon dk.ei.opgaveapp:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle dk.ei.opgaveapp:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding dk.ei.opgaveapp:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo dk.ei.opgaveapp:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode dk.ei.opgaveapp:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme dk.ei.opgaveapp:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding dk.ei.opgaveapp:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle dk.ei.opgaveapp:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle dk.ei.opgaveapp:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle dk.ei.opgaveapp:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title dk.ei.opgaveapp:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle dk.ei.opgaveapp:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionBar_background @see #ActionBar_backgroundSplit @see #ActionBar_backgroundStacked @see #ActionBar_contentInsetEnd @see #ActionBar_contentInsetEndWithActions @see #ActionBar_contentInsetLeft @see #ActionBar_contentInsetRight @see #ActionBar_contentInsetStart @see #ActionBar_contentInsetStartWithNavigation @see #ActionBar_customNavigationLayout @see #ActionBar_displayOptions @see #ActionBar_divider @see #ActionBar_elevation @see #ActionBar_height @see #ActionBar_hideOnContentScroll @see #ActionBar_homeAsUpIndicator @see #ActionBar_homeLayout @see #ActionBar_icon @see #ActionBar_indeterminateProgressStyle @see #ActionBar_itemPadding @see #ActionBar_logo @see #ActionBar_navigationMode @see #ActionBar_popupTheme @see #ActionBar_progressBarPadding @see #ActionBar_progressBarStyle @see #ActionBar_subtitle @see #ActionBar_subtitleTextStyle @see #ActionBar_title @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { 0x7f01001d, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f010077 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#background} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name dk.ei.opgaveapp:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#backgroundStacked} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name dk.ei.opgaveapp:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetEnd} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetLeft} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetRight} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetStart} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#customNavigationLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#displayOptions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#divider} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#elevation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:elevation */ public static final int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#height} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#hideOnContentScroll} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#homeLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#icon} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#indeterminateProgressStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#itemPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#logo} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#navigationMode} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#popupTheme} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:popupTheme */ public static final int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#progressBarPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#progressBarStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#subtitle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#title} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:titleTextStyle */ public static final int ActionBar_titleTextStyle = 5; /** Attributes that can be used with a ActionBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> </table> @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout = { 0x010100b3 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity = 0; /** Attributes that can be used with a ActionMenuItemView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> </table> @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView = { 0x0101013f }; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ActionMenuItemView} array. @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth = 0; /** Attributes that can be used with a ActionMenuView. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMode_background dk.ei.opgaveapp:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit dk.ei.opgaveapp:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout dk.ei.opgaveapp:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height dk.ei.opgaveapp:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle dk.ei.opgaveapp:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle dk.ei.opgaveapp:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionMode_background @see #ActionMode_backgroundSplit @see #ActionMode_closeItemLayout @see #ActionMode_height @see #ActionMode_subtitleTextStyle @see #ActionMode_titleTextStyle */ public static final int[] ActionMode = { 0x7f01001d, 0x7f010023, 0x7f010024, 0x7f010028, 0x7f01002a, 0x7f01003a }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#background} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionMode} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name dk.ei.opgaveapp:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#closeItemLayout} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#height} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount dk.ei.opgaveapp:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f01003b, 0x7f01003c }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#expandActivityOverflowButtonDrawable} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#initialActivityCount} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a AlertDialog. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout dk.ei.opgaveapp:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout dk.ei.opgaveapp:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout dk.ei.opgaveapp:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout dk.ei.opgaveapp:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_showTitle dk.ei.opgaveapp:showTitle}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout dk.ei.opgaveapp:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_showTitle @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042 }; /** <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 dk.ei.opgaveapp.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 dk.ei.opgaveapp:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:showTitle */ public static final int AlertDialog_showTitle = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_elevation dk.ei.opgaveapp:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded dk.ei.opgaveapp:expanded}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_elevation @see #AppBarLayout_expanded */ public static final int[] AppBarLayout = { 0x010100d4, 0x7f010038, 0x7f010100 }; /** <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 dk.ei.opgaveapp.R.attr#elevation} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:elevation */ public static final int AppBarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:expanded */ public static final int AppBarLayout_expanded = 2; /** Attributes that can be used with a AppBarLayoutStates. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsed dk.ei.opgaveapp:state_collapsed}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsible dk.ei.opgaveapp:state_collapsible}</code></td><td></td></tr> </table> @see #AppBarLayoutStates_state_collapsed @see #AppBarLayoutStates_state_collapsible */ public static final int[] AppBarLayoutStates = { 0x7f010101, 0x7f010102 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:state_collapsible */ public static final int AppBarLayoutStates_state_collapsible = 1; /** Attributes that can be used with a AppBarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags dk.ei.opgaveapp:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator dk.ei.opgaveapp:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_Layout_layout_scrollFlags @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout = { 0x7f010103, 0x7f010104 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#layout_scrollFlags} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp: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 dk.ei.opgaveapp:srcCompat}</code></td><td></td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010043 }; /** <p>This symbol is the offset where the {@link android.R.attr#src} attribute's value can be found in the {@link #AppCompatImageView} array. @attr name android:src */ public static final int AppCompatImageView_android_src = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#srcCompat} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** Attributes that can be used with a AppCompatSeekBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMark dk.ei.opgaveapp:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint dk.ei.opgaveapp:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode dk.ei.opgaveapp:tickMarkTintMode}</code></td><td></td></tr> </table> @see #AppCompatSeekBar_android_thumb @see #AppCompatSeekBar_tickMark @see #AppCompatSeekBar_tickMarkTint @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f010044, 0x7f010045, 0x7f010046 }; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #AppCompatSeekBar} array. @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#tickMark} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:tickMark */ public static final int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#tickMarkTint} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#tickMarkTintMode} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode = 3; /** Attributes that can be used with a AppCompatTextHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> </table> @see #AppCompatTextHelper_android_drawableBottom @see #AppCompatTextHelper_android_drawableEnd @see #AppCompatTextHelper_android_drawableLeft @see #AppCompatTextHelper_android_drawableRight @see #AppCompatTextHelper_android_drawableStart @see #AppCompatTextHelper_android_drawableTop @see #AppCompatTextHelper_android_textAppearance */ public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom = 2; /** <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd = 6; /** <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft = 3; /** <p>This symbol is the offset where the {@link android.R.attr#drawableRight} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#drawableStart} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart = 5; /** <p>This symbol is the offset where the {@link android.R.attr#drawableTop} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance = 0; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps dk.ei.opgaveapp:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010047 }; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextView} array. @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textAllCaps} attribute's value can be found in the {@link #AppCompatTextView} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground dk.ei.opgaveapp:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme dk.ei.opgaveapp:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize dk.ei.opgaveapp:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle dk.ei.opgaveapp:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle dk.ei.opgaveapp:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle dk.ei.opgaveapp:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle dk.ei.opgaveapp:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle dk.ei.opgaveapp:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme dk.ei.opgaveapp:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme dk.ei.opgaveapp:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle dk.ei.opgaveapp:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle dk.ei.opgaveapp:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance dk.ei.opgaveapp:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor dk.ei.opgaveapp:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground dk.ei.opgaveapp:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle dk.ei.opgaveapp:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable dk.ei.opgaveapp:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable dk.ei.opgaveapp:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable dk.ei.opgaveapp:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable dk.ei.opgaveapp:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable dk.ei.opgaveapp:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle dk.ei.opgaveapp:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable dk.ei.opgaveapp:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable dk.ei.opgaveapp:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground dk.ei.opgaveapp:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle dk.ei.opgaveapp:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable dk.ei.opgaveapp:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle dk.ei.opgaveapp:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle dk.ei.opgaveapp:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle dk.ei.opgaveapp:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle dk.ei.opgaveapp:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons dk.ei.opgaveapp:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle dk.ei.opgaveapp:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme dk.ei.opgaveapp:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle dk.ei.opgaveapp:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle dk.ei.opgaveapp:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle dk.ei.opgaveapp:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle dk.ei.opgaveapp:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle dk.ei.opgaveapp:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle dk.ei.opgaveapp:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle dk.ei.opgaveapp:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle dk.ei.opgaveapp:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall dk.ei.opgaveapp:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle dk.ei.opgaveapp:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle dk.ei.opgaveapp:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent dk.ei.opgaveapp:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating dk.ei.opgaveapp:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal dk.ei.opgaveapp:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated dk.ei.opgaveapp:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight dk.ei.opgaveapp:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal dk.ei.opgaveapp:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary dk.ei.opgaveapp:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark dk.ei.opgaveapp:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal dk.ei.opgaveapp:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground dk.ei.opgaveapp:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding dk.ei.opgaveapp:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme dk.ei.opgaveapp:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal dk.ei.opgaveapp:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical dk.ei.opgaveapp:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle dk.ei.opgaveapp:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight dk.ei.opgaveapp:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground dk.ei.opgaveapp:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor dk.ei.opgaveapp:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle dk.ei.opgaveapp:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator dk.ei.opgaveapp:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle dk.ei.opgaveapp:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator dk.ei.opgaveapp:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog dk.ei.opgaveapp:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle dk.ei.opgaveapp:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle dk.ei.opgaveapp:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight dk.ei.opgaveapp:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge dk.ei.opgaveapp:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall dk.ei.opgaveapp:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft dk.ei.opgaveapp:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight dk.ei.opgaveapp:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground dk.ei.opgaveapp:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme dk.ei.opgaveapp:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth dk.ei.opgaveapp:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle dk.ei.opgaveapp:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle dk.ei.opgaveapp:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle dk.ei.opgaveapp:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle dk.ei.opgaveapp:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator dk.ei.opgaveapp:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall dk.ei.opgaveapp:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle dk.ei.opgaveapp:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle dk.ei.opgaveapp:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground dk.ei.opgaveapp:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless dk.ei.opgaveapp:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle dk.ei.opgaveapp:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle dk.ei.opgaveapp:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle dk.ei.opgaveapp:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu dk.ei.opgaveapp:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem dk.ei.opgaveapp:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall dk.ei.opgaveapp:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader dk.ei.opgaveapp:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle dk.ei.opgaveapp:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle dk.ei.opgaveapp:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu dk.ei.opgaveapp:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem dk.ei.opgaveapp:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl dk.ei.opgaveapp:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle dk.ei.opgaveapp:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle dk.ei.opgaveapp:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar dk.ei.opgaveapp:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay dk.ei.opgaveapp:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay dk.ei.opgaveapp:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor dk.ei.opgaveapp:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor dk.ei.opgaveapp:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor dk.ei.opgaveapp:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor dk.ei.opgaveapp:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor dk.ei.opgaveapp:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor dk.ei.opgaveapp:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle dk.ei.opgaveapp:windowNoTitle}</code></td><td></td></tr> </table> @see #AppCompatTheme_actionBarDivider @see #AppCompatTheme_actionBarItemBackground @see #AppCompatTheme_actionBarPopupTheme @see #AppCompatTheme_actionBarSize @see #AppCompatTheme_actionBarSplitStyle @see #AppCompatTheme_actionBarStyle @see #AppCompatTheme_actionBarTabBarStyle @see #AppCompatTheme_actionBarTabStyle @see #AppCompatTheme_actionBarTabTextStyle @see #AppCompatTheme_actionBarTheme @see #AppCompatTheme_actionBarWidgetTheme @see #AppCompatTheme_actionButtonStyle @see #AppCompatTheme_actionDropDownStyle @see #AppCompatTheme_actionMenuTextAppearance @see #AppCompatTheme_actionMenuTextColor @see #AppCompatTheme_actionModeBackground @see #AppCompatTheme_actionModeCloseButtonStyle @see #AppCompatTheme_actionModeCloseDrawable @see #AppCompatTheme_actionModeCopyDrawable @see #AppCompatTheme_actionModeCutDrawable @see #AppCompatTheme_actionModeFindDrawable @see #AppCompatTheme_actionModePasteDrawable @see #AppCompatTheme_actionModePopupWindowStyle @see #AppCompatTheme_actionModeSelectAllDrawable @see #AppCompatTheme_actionModeShareDrawable @see #AppCompatTheme_actionModeSplitBackground @see #AppCompatTheme_actionModeStyle @see #AppCompatTheme_actionModeWebSearchDrawable @see #AppCompatTheme_actionOverflowButtonStyle @see #AppCompatTheme_actionOverflowMenuStyle @see #AppCompatTheme_activityChooserViewStyle @see #AppCompatTheme_alertDialogButtonGroupStyle @see #AppCompatTheme_alertDialogCenterButtons @see #AppCompatTheme_alertDialogStyle @see #AppCompatTheme_alertDialogTheme @see #AppCompatTheme_android_windowAnimationStyle @see #AppCompatTheme_android_windowIsFloating @see #AppCompatTheme_autoCompleteTextViewStyle @see #AppCompatTheme_borderlessButtonStyle @see #AppCompatTheme_buttonBarButtonStyle @see #AppCompatTheme_buttonBarNegativeButtonStyle @see #AppCompatTheme_buttonBarNeutralButtonStyle @see #AppCompatTheme_buttonBarPositiveButtonStyle @see #AppCompatTheme_buttonBarStyle @see #AppCompatTheme_buttonStyle @see #AppCompatTheme_buttonStyleSmall @see #AppCompatTheme_checkboxStyle @see #AppCompatTheme_checkedTextViewStyle @see #AppCompatTheme_colorAccent @see #AppCompatTheme_colorBackgroundFloating @see #AppCompatTheme_colorButtonNormal @see #AppCompatTheme_colorControlActivated @see #AppCompatTheme_colorControlHighlight @see #AppCompatTheme_colorControlNormal @see #AppCompatTheme_colorPrimary @see #AppCompatTheme_colorPrimaryDark @see #AppCompatTheme_colorSwitchThumbNormal @see #AppCompatTheme_controlBackground @see #AppCompatTheme_dialogPreferredPadding @see #AppCompatTheme_dialogTheme @see #AppCompatTheme_dividerHorizontal @see #AppCompatTheme_dividerVertical @see #AppCompatTheme_dropDownListViewStyle @see #AppCompatTheme_dropdownListPreferredItemHeight @see #AppCompatTheme_editTextBackground @see #AppCompatTheme_editTextColor @see #AppCompatTheme_editTextStyle @see #AppCompatTheme_homeAsUpIndicator @see #AppCompatTheme_imageButtonStyle @see #AppCompatTheme_listChoiceBackgroundIndicator @see #AppCompatTheme_listDividerAlertDialog @see #AppCompatTheme_listMenuViewStyle @see #AppCompatTheme_listPopupWindowStyle @see #AppCompatTheme_listPreferredItemHeight @see #AppCompatTheme_listPreferredItemHeightLarge @see #AppCompatTheme_listPreferredItemHeightSmall @see #AppCompatTheme_listPreferredItemPaddingLeft @see #AppCompatTheme_listPreferredItemPaddingRight @see #AppCompatTheme_panelBackground @see #AppCompatTheme_panelMenuListTheme @see #AppCompatTheme_panelMenuListWidth @see #AppCompatTheme_popupMenuStyle @see #AppCompatTheme_popupWindowStyle @see #AppCompatTheme_radioButtonStyle @see #AppCompatTheme_ratingBarStyle @see #AppCompatTheme_ratingBarStyleIndicator @see #AppCompatTheme_ratingBarStyleSmall @see #AppCompatTheme_searchViewStyle @see #AppCompatTheme_seekBarStyle @see #AppCompatTheme_selectableItemBackground @see #AppCompatTheme_selectableItemBackgroundBorderless @see #AppCompatTheme_spinnerDropDownItemStyle @see #AppCompatTheme_spinnerStyle @see #AppCompatTheme_switchStyle @see #AppCompatTheme_textAppearanceLargePopupMenu @see #AppCompatTheme_textAppearanceListItem @see #AppCompatTheme_textAppearanceListItemSmall @see #AppCompatTheme_textAppearancePopupMenuHeader @see #AppCompatTheme_textAppearanceSearchResultSubtitle @see #AppCompatTheme_textAppearanceSearchResultTitle @see #AppCompatTheme_textAppearanceSmallPopupMenu @see #AppCompatTheme_textColorAlertDialogListItem @see #AppCompatTheme_textColorSearchUrl @see #AppCompatTheme_toolbarNavigationButtonStyle @see #AppCompatTheme_toolbarStyle @see #AppCompatTheme_windowActionBar @see #AppCompatTheme_windowActionBarOverlay @see #AppCompatTheme_windowActionModeOverlay @see #AppCompatTheme_windowFixedHeightMajor @see #AppCompatTheme_windowFixedHeightMinor @see #AppCompatTheme_windowFixedWidthMajor @see #AppCompatTheme_windowFixedWidthMinor @see #AppCompatTheme_windowMinWidthMajor @see #AppCompatTheme_windowMinWidthMinor @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionBarDivider} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionBarSize} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionBarTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name dk.ei.opgaveapp:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModeBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 95; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 93; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#alertDialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme = 96; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 101; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#buttonBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#buttonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 102; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 103; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#checkboxStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 104; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 105; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#colorAccent} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:colorAccent */ public static final int AppCompatTheme_colorAccent = 85; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#colorBackgroundFloating} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating = 92; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#colorButtonNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 89; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#colorControlActivated} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 87; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#colorControlHighlight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 88; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#colorControlNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 86; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#colorPrimary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 83; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 84; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 90; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#controlBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:controlBackground */ public static final int AppCompatTheme_controlBackground = 91; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#dialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#dividerHorizontal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#dividerVertical} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#editTextBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#editTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name dk.ei.opgaveapp:editTextColor */ public static final int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#editTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 106; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#imageButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#listMenuViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle = 114; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#panelBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:panelBackground */ public static final int AppCompatTheme_panelBackground = 79; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 81; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 80; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#popupMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#popupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#radioButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 107; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#ratingBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 108; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#ratingBarStyleIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 109; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#ratingBarStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 110; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#searchViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#seekBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 111; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#selectableItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#spinnerStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 112; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#switchStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:switchStyle */ public static final int AppCompatTheme_switchStyle = 113; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 78; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textAppearancePopupMenuHeader} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name dk.ei.opgaveapp:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 97; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name dk.ei.opgaveapp:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#toolbarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#windowActionBar} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#windowNoTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle = 3; /** Attributes that can be used with a BottomNavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomNavigationView_elevation dk.ei.opgaveapp:elevation}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemBackground dk.ei.opgaveapp:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconTint dk.ei.opgaveapp:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextColor dk.ei.opgaveapp:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_menu dk.ei.opgaveapp:menu}</code></td><td></td></tr> </table> @see #BottomNavigationView_elevation @see #BottomNavigationView_itemBackground @see #BottomNavigationView_itemIconTint @see #BottomNavigationView_itemTextColor @see #BottomNavigationView_menu */ public static final int[] BottomNavigationView = { 0x7f010038, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#elevation} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:elevation */ public static final int BottomNavigationView_elevation = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:itemBackground */ public static final int BottomNavigationView_itemBackground = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:itemIconTint */ public static final int BottomNavigationView_itemIconTint = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:itemTextColor */ public static final int BottomNavigationView_itemTextColor = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:menu */ public static final int BottomNavigationView_menu = 1; /** Attributes that can be used with a BottomSheetBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable dk.ei.opgaveapp:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight dk.ei.opgaveapp:behavior_peekHeight}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed dk.ei.opgaveapp:behavior_skipCollapsed}</code></td><td></td></tr> </table> @see #BottomSheetBehavior_Layout_behavior_hideable @see #BottomSheetBehavior_Layout_behavior_peekHeight @see #BottomSheetBehavior_Layout_behavior_skipCollapsed */ public static final int[] BottomSheetBehavior_Layout = { 0x7f010105, 0x7f010106, 0x7f010107 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp: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 dk.ei.opgaveapp:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f0100b9 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#allowStacking} attribute's value can be found in the {@link #ButtonBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp: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></td></tr> <tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardBackgroundColor dk.ei.opgaveapp:cardBackgroundColor}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardCornerRadius dk.ei.opgaveapp:cardCornerRadius}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardElevation dk.ei.opgaveapp:cardElevation}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardMaxElevation dk.ei.opgaveapp:cardMaxElevation}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardPreventCornerOverlap dk.ei.opgaveapp:cardPreventCornerOverlap}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardUseCompatPadding dk.ei.opgaveapp:cardUseCompatPadding}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPadding dk.ei.opgaveapp:contentPadding}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingBottom dk.ei.opgaveapp:contentPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingLeft dk.ei.opgaveapp:contentPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingRight dk.ei.opgaveapp:contentPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingTop dk.ei.opgaveapp:contentPaddingTop}</code></td><td></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, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b }; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #CardView} array. @attr name android:minHeight */ public static final int CardView_android_minHeight = 1; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #CardView} array. @attr name android:minWidth */ public static final int CardView_android_minWidth = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#cardBackgroundColor} attribute's value can be found in the {@link #CardView} 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 dk.ei.opgaveapp:cardBackgroundColor */ public static final int CardView_cardBackgroundColor = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#cardCornerRadius} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:cardCornerRadius */ public static final int CardView_cardCornerRadius = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#cardElevation} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:cardElevation */ public static final int CardView_cardElevation = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#cardMaxElevation} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:cardMaxElevation */ public static final int CardView_cardMaxElevation = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#cardPreventCornerOverlap} attribute's value can be found in the {@link #CardView} 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 dk.ei.opgaveapp:cardPreventCornerOverlap */ public static final int CardView_cardPreventCornerOverlap = 7; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#cardUseCompatPadding} attribute's value can be found in the {@link #CardView} 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 dk.ei.opgaveapp:cardUseCompatPadding */ public static final int CardView_cardUseCompatPadding = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentPadding} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentPadding */ public static final int CardView_contentPadding = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentPaddingBottom} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentPaddingBottom */ public static final int CardView_contentPaddingBottom = 12; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentPaddingLeft} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentPaddingLeft */ public static final int CardView_contentPaddingLeft = 9; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentPaddingRight} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentPaddingRight */ public static final int CardView_contentPaddingRight = 10; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentPaddingTop} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentPaddingTop */ public static final int CardView_contentPaddingTop = 11; /** 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 dk.ei.opgaveapp:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance dk.ei.opgaveapp:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim dk.ei.opgaveapp:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity dk.ei.opgaveapp:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin dk.ei.opgaveapp:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom dk.ei.opgaveapp:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd dk.ei.opgaveapp:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart dk.ei.opgaveapp:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop dk.ei.opgaveapp:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance dk.ei.opgaveapp:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration dk.ei.opgaveapp:scrimAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger dk.ei.opgaveapp:scrimVisibleHeightTrigger}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim dk.ei.opgaveapp:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title dk.ei.opgaveapp:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled dk.ei.opgaveapp:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId dk.ei.opgaveapp: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 = { 0x7f01001f, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115, 0x7f010116 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity = 14; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:title */ public static final int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled = 15; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp: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 dk.ei.opgaveapp:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier dk.ei.opgaveapp:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_Layout_layout_collapseMode @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout = { 0x7f010117, 0x7f010118 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp: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 dk.ei.opgaveapp:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr> </table> @see #ColorStateListItem_alpha @see #ColorStateListItem_android_alpha @see #ColorStateListItem_android_color */ public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f0100ba }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:alpha */ public static final int ColorStateListItem_alpha = 2; /** <p>This symbol is the offset where the {@link android.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:alpha */ public static final int ColorStateListItem_android_alpha = 1; /** <p>This symbol is the offset where the {@link android.R.attr#color} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:color */ public static final int ColorStateListItem_android_color = 0; /** Attributes that can be used with a CompoundButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTint dk.ei.opgaveapp:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode dk.ei.opgaveapp:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100bb, 0x7f0100bc }; /** <p>This symbol is the offset where the {@link android.R.attr#button} attribute's value can be found in the {@link #CompoundButton} array. @attr name android:button */ public static final int CompoundButton_android_button = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#buttonTint} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground dk.ei.opgaveapp:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f010119, 0x7f01011a }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#keylines} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:keylines */ public static final int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#statusBarBackground} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity dk.ei.opgaveapp:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior dk.ei.opgaveapp:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges dk.ei.opgaveapp:layout_dodgeInsetEdges}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge dk.ei.opgaveapp:layout_insetEdge}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline dk.ei.opgaveapp:layout_keyline}</code></td><td></td></tr> </table> @see #CoordinatorLayout_Layout_android_layout_gravity @see #CoordinatorLayout_Layout_layout_anchor @see #CoordinatorLayout_Layout_layout_anchorGravity @see #CoordinatorLayout_Layout_layout_behavior @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges @see #CoordinatorLayout_Layout_layout_insetEdge @see #CoordinatorLayout_Layout_layout_keyline */ public static final int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f, 0x7f010120 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#layout_anchor} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#layout_anchorGravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#layout_behavior} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#layout_dodgeInsetEdges} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#layout_insetEdge} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#layout_keyline} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle dk.ei.opgaveapp:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_textColorError dk.ei.opgaveapp:textColorError}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle @see #DesignTheme_textColorError */ public static final int[] DesignTheme = { 0x7f010121, 0x7f010122, 0x7f010123 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textColorError} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:textColorError */ public static final int DesignTheme_textColorError = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength dk.ei.opgaveapp:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength dk.ei.opgaveapp:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength dk.ei.opgaveapp:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color dk.ei.opgaveapp:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize dk.ei.opgaveapp:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars dk.ei.opgaveapp:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars dk.ei.opgaveapp:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness dk.ei.opgaveapp:thickness}</code></td><td></td></tr> </table> @see #DrawerArrowToggle_arrowHeadLength @see #DrawerArrowToggle_arrowShaftLength @see #DrawerArrowToggle_barLength @see #DrawerArrowToggle_color @see #DrawerArrowToggle_drawableSize @see #DrawerArrowToggle_gapBetweenBars @see #DrawerArrowToggle_spinBars @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle = { 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#arrowHeadLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#arrowShaftLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#barLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#color} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#drawableSize} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#gapBetweenBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#spinBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#thickness} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode dk.ei.opgaveapp:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth dk.ei.opgaveapp:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation dk.ei.opgaveapp:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize dk.ei.opgaveapp:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ dk.ei.opgaveapp:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor dk.ei.opgaveapp:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding dk.ei.opgaveapp:useCompatPadding}</code></td><td></td></tr> </table> @see #FloatingActionButton_backgroundTint @see #FloatingActionButton_backgroundTintMode @see #FloatingActionButton_borderWidth @see #FloatingActionButton_elevation @see #FloatingActionButton_fabSize @see #FloatingActionButton_pressedTranslationZ @see #FloatingActionButton_rippleColor @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton = { 0x7f010038, 0x7f0100fe, 0x7f0100ff, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#backgroundTint} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:backgroundTint */ public static final int FloatingActionButton_backgroundTint = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#backgroundTintMode} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:borderWidth */ public static final int FloatingActionButton_borderWidth = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#elevation} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:elevation */ public static final int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:fabSize */ public static final int FloatingActionButton_fabSize = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:rippleColor */ public static final int FloatingActionButton_rippleColor = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding = 7; /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide dk.ei.opgaveapp:behavior_autoHide}</code></td><td></td></tr> </table> @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f010129 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; /** Attributes that can be used with a ForegroundLinearLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding dk.ei.opgaveapp: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, 0x7f01012a }; /** <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 dk.ei.opgaveapp.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 dk.ei.opgaveapp:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider dk.ei.opgaveapp:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding dk.ei.opgaveapp:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild dk.ei.opgaveapp:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers dk.ei.opgaveapp:showDividers}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_android_baselineAligned @see #LinearLayoutCompat_android_baselineAlignedChildIndex @see #LinearLayoutCompat_android_gravity @see #LinearLayoutCompat_android_orientation @see #LinearLayoutCompat_android_weightSum @see #LinearLayoutCompat_divider @see #LinearLayoutCompat_dividerPadding @see #LinearLayoutCompat_measureWithLargestChild @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f010027, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7 }; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned = 2; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation = 1; /** <p>This symbol is the offset where the {@link android.R.attr#weightSum} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#divider} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#dividerPadding} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#measureWithLargestChild} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#showDividers} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:showDividers */ public static final int LinearLayoutCompat_showDividers = 7; /** Attributes that can be used with a LinearLayoutCompat_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_Layout_android_layout_gravity @see #LinearLayoutCompat_Layout_android_layout_height @see #LinearLayoutCompat_Layout_android_layout_weight @see #LinearLayoutCompat_Layout_android_layout_width */ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout_weight} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width = 1; /** Attributes that can be used with a ListPopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> </table> @see #ListPopupWindow_android_dropDownHorizontalOffset @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Attributes that can be used with a MediaRouteButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr> <tr><td><code>{@link #MediaRouteButton_buttonTint dk.ei.opgaveapp:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable dk.ei.opgaveapp:externalRouteEnabledDrawable}</code></td><td></td></tr> </table> @see #MediaRouteButton_android_minHeight @see #MediaRouteButton_android_minWidth @see #MediaRouteButton_buttonTint @see #MediaRouteButton_externalRouteEnabledDrawable */ public static final int[] MediaRouteButton = { 0x0101013f, 0x01010140, 0x7f010010, 0x7f0100bb }; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #MediaRouteButton} array. @attr name android:minHeight */ public static final int MediaRouteButton_android_minHeight = 1; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #MediaRouteButton} array. @attr name android:minWidth */ public static final int MediaRouteButton_android_minWidth = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#buttonTint} attribute's value can be found in the {@link #MediaRouteButton} 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 dk.ei.opgaveapp:buttonTint */ public static final int MediaRouteButton_buttonTint = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#externalRouteEnabledDrawable} attribute's value can be found in the {@link #MediaRouteButton} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:externalRouteEnabledDrawable */ public static final int MediaRouteButton_externalRouteEnabledDrawable = 2; /** Attributes that can be used with a MenuGroup. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> </table> @see #MenuGroup_android_checkableBehavior @see #MenuGroup_android_enabled @see #MenuGroup_android_id @see #MenuGroup_android_menuCategory @see #MenuGroup_android_orderInCategory @see #MenuGroup_android_visible */ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:enabled */ public static final int MenuGroup_android_enabled = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:id */ public static final int MenuGroup_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:visible */ public static final int MenuGroup_android_visible = 2; /** Attributes that can be used with a MenuItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuItem_actionLayout dk.ei.opgaveapp:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass dk.ei.opgaveapp:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass dk.ei.opgaveapp:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction dk.ei.opgaveapp:showAsAction}</code></td><td></td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_android_alphabeticShortcut @see #MenuItem_android_checkable @see #MenuItem_android_checked @see #MenuItem_android_enabled @see #MenuItem_android_icon @see #MenuItem_android_id @see #MenuItem_android_menuCategory @see #MenuItem_android_numericShortcut @see #MenuItem_android_onClick @see #MenuItem_android_orderInCategory @see #MenuItem_android_title @see #MenuItem_android_titleCondensed @see #MenuItem_android_visible @see #MenuItem_showAsAction */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionLayout} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionProviderClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#actionViewClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:actionViewClass */ public static final int MenuItem_actionViewClass = 15; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /** <p>This symbol is the offset where the {@link android.R.attr#checked} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuItem} array. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #MenuItem} array. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuItem} array. @attr name android:id */ public static final int MenuItem_android_id = 2; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /** <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /** <p>This symbol is the offset where the {@link android.R.attr#onClick} attribute's value can be found in the {@link #MenuItem} array. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /** <p>This symbol is the offset where the {@link android.R.attr#title} attribute's value can be found in the {@link #MenuItem} array. @attr name android:title */ public static final int MenuItem_android_title = 7; /** <p>This symbol is the offset where the {@link android.R.attr#titleCondensed} attribute's value can be found in the {@link #MenuItem} array. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuItem} array. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#showAsAction} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:showAsAction */ public static final int MenuItem_showAsAction = 13; /** Attributes that can be used with a MenuView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_preserveIconSpacing dk.ei.opgaveapp:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow dk.ei.opgaveapp:subMenuArrow}</code></td><td></td></tr> </table> @see #MenuView_android_headerBackground @see #MenuView_android_horizontalDivider @see #MenuView_android_itemBackground @see #MenuView_android_itemIconDisabledAlpha @see #MenuView_android_itemTextAppearance @see #MenuView_android_verticalDivider @see #MenuView_android_windowAnimationStyle @see #MenuView_preserveIconSpacing @see #MenuView_subMenuArrow */ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100cc, 0x7f0100cd }; /** <p>This symbol is the offset where the {@link android.R.attr#headerBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /** <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /** <p>This symbol is the offset where the {@link android.R.attr#itemBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemBackground */ public static final int MenuView_android_itemBackground = 5; /** <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /** <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /** <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #MenuView} array. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#preserveIconSpacing} attribute's value can be found in the {@link #MenuView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#subMenuArrow} attribute's value can be found in the {@link #MenuView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout dk.ei.opgaveapp:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground dk.ei.opgaveapp:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint dk.ei.opgaveapp:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance dk.ei.opgaveapp:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor dk.ei.opgaveapp:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu dk.ei.opgaveapp:menu}</code></td><td></td></tr> </table> @see #NavigationView_android_background @see #NavigationView_android_fitsSystemWindows @see #NavigationView_android_maxWidth @see #NavigationView_elevation @see #NavigationView_headerLayout @see #NavigationView_itemBackground @see #NavigationView_itemIconTint @see #NavigationView_itemTextAppearance @see #NavigationView_itemTextColor @see #NavigationView_menu */ public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010038, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #NavigationView} array. @attr name android:background */ public static final int NavigationView_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} attribute's value can be found in the {@link #NavigationView} array. @attr name android:fitsSystemWindows */ public static final int NavigationView_android_fitsSystemWindows = 1; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #NavigationView} array. @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#elevation} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:elevation */ public static final int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:headerLayout */ public static final int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:itemBackground */ public static final int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:itemIconTint */ public static final int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:itemTextAppearance */ public static final int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:itemTextColor */ public static final int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp: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 dk.ei.opgaveapp:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupAnimationStyle @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f0100ce }; /** <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#overlapAnchor} attribute's value can be found in the {@link #PopupWindow} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100cf }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#state_above_anchor} attribute's value can be found in the {@link #PopupWindowBackgroundState} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:paddingBottomNoButtons}</code></td><td></td></tr> <tr><td><code>{@link #RecycleListView_paddingTopNoTitle dk.ei.opgaveapp:paddingTopNoTitle}</code></td><td></td></tr> </table> @see #RecycleListView_paddingBottomNoButtons @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView = { 0x7f0100d0, 0x7f0100d1 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#paddingBottomNoButtons} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#paddingTopNoTitle} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle = 1; /** Attributes that can be used with a RecyclerView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager dk.ei.opgaveapp:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout dk.ei.opgaveapp:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount dk.ei.opgaveapp:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd dk.ei.opgaveapp:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_descendantFocusability @see #RecyclerView_android_orientation @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003 }; /** <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 dk.ei.opgaveapp.R.attr#layoutManager} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:layoutManager */ public static final int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:reverseLayout */ public static final int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:spanCount */ public static final int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp: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 dk.ei.opgaveapp:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f010131 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp: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 dk.ei.opgaveapp:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout = { 0x7f010132 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:behavior_overlapTop */ public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon dk.ei.opgaveapp:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon dk.ei.opgaveapp:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint dk.ei.opgaveapp:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon dk.ei.opgaveapp:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault dk.ei.opgaveapp:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout dk.ei.opgaveapp:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground dk.ei.opgaveapp:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint dk.ei.opgaveapp:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon dk.ei.opgaveapp:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon dk.ei.opgaveapp:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground dk.ei.opgaveapp:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout dk.ei.opgaveapp:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon dk.ei.opgaveapp:voiceIcon}</code></td><td></td></tr> </table> @see #SearchView_android_focusable @see #SearchView_android_imeOptions @see #SearchView_android_inputType @see #SearchView_android_maxWidth @see #SearchView_closeIcon @see #SearchView_commitIcon @see #SearchView_defaultQueryHint @see #SearchView_goIcon @see #SearchView_iconifiedByDefault @see #SearchView_layout @see #SearchView_queryBackground @see #SearchView_queryHint @see #SearchView_searchHintIcon @see #SearchView_searchIcon @see #SearchView_submitBackground @see #SearchView_suggestionRowLayout @see #SearchView_voiceIcon */ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #SearchView} array. @attr name android:focusable */ public static final int SearchView_android_focusable = 0; /** <p>This symbol is the offset where the {@link android.R.attr#imeOptions} attribute's value can be found in the {@link #SearchView} array. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 3; /** <p>This symbol is the offset where the {@link android.R.attr#inputType} attribute's value can be found in the {@link #SearchView} array. @attr name android:inputType */ public static final int SearchView_android_inputType = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SearchView} array. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#closeIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#commitIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#defaultQueryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#goIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#iconifiedByDefault} attribute's value can be found in the {@link #SearchView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#layout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#queryBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#queryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#searchHintIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#searchIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#submitBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#suggestionRowLayout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#voiceIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SnackbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_elevation dk.ei.opgaveapp:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth dk.ei.opgaveapp:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f010038, 0x7f010133 }; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SnackbarLayout} array. @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#elevation} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:elevation */ public static final int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:maxActionInlineWidth */ public static final int SnackbarLayout_maxActionInlineWidth = 2; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme dk.ei.opgaveapp:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_entries @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f010039 }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 3; /** <p>This symbol is the offset where the {@link android.R.attr#entries} attribute's value can be found in the {@link #Spinner} array. @attr name android:entries */ public static final int Spinner_android_entries = 0; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 1; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static final int Spinner_android_prompt = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#popupTheme} attribute's value can be found in the {@link #Spinner} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:popupTheme */ public static final int Spinner_popupTheme = 4; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText dk.ei.opgaveapp:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack dk.ei.opgaveapp:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth dk.ei.opgaveapp:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding dk.ei.opgaveapp:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance dk.ei.opgaveapp:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding dk.ei.opgaveapp:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint dk.ei.opgaveapp:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode dk.ei.opgaveapp:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track dk.ei.opgaveapp:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint dk.ei.opgaveapp:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode dk.ei.opgaveapp:trackTintMode}</code></td><td></td></tr> </table> @see #SwitchCompat_android_textOff @see #SwitchCompat_android_textOn @see #SwitchCompat_android_thumb @see #SwitchCompat_showText @see #SwitchCompat_splitTrack @see #SwitchCompat_switchMinWidth @see #SwitchCompat_switchPadding @see #SwitchCompat_switchTextAppearance @see #SwitchCompat_thumbTextPadding @see #SwitchCompat_thumbTint @see #SwitchCompat_thumbTintMode @see #SwitchCompat_track @see #SwitchCompat_trackTint @see #SwitchCompat_trackTintMode */ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9 }; /** <p>This symbol is the offset where the {@link android.R.attr#textOff} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOff */ public static final int SwitchCompat_android_textOff = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textOn} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOn */ public static final int SwitchCompat_android_textOn = 0; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:thumb */ public static final int SwitchCompat_android_thumb = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#showText} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:showText */ public static final int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#splitTrack} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:splitTrack */ public static final int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#switchMinWidth} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#switchPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:switchPadding */ public static final int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#switchTextAppearance} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#thumbTextPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#thumbTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:thumbTint */ public static final int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#thumbTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:thumbTintMode */ public static final int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#track} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:track */ public static final int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#trackTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:trackTint */ public static final int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#trackTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart dk.ei.opgaveapp:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity dk.ei.opgaveapp:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor dk.ei.opgaveapp:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight dk.ei.opgaveapp:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth dk.ei.opgaveapp:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth dk.ei.opgaveapp:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode dk.ei.opgaveapp:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding dk.ei.opgaveapp:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom dk.ei.opgaveapp:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd dk.ei.opgaveapp:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart dk.ei.opgaveapp:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop dk.ei.opgaveapp:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor dk.ei.opgaveapp:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance dk.ei.opgaveapp:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor dk.ei.opgaveapp:tabTextColor}</code></td><td></td></tr> </table> @see #TabLayout_tabBackground @see #TabLayout_tabContentStart @see #TabLayout_tabGravity @see #TabLayout_tabIndicatorColor @see #TabLayout_tabIndicatorHeight @see #TabLayout_tabMaxWidth @see #TabLayout_tabMinWidth @see #TabLayout_tabMode @see #TabLayout_tabPadding @see #TabLayout_tabPaddingBottom @see #TabLayout_tabPaddingEnd @see #TabLayout_tabPaddingStart @see #TabLayout_tabPaddingTop @see #TabLayout_tabSelectedTextColor @see #TabLayout_tabTextAppearance @see #TabLayout_tabTextColor */ public static final int[] TabLayout = { 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, 0x7f010143 }; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabBackground */ public static final int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabContentStart */ public static final int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabGravity */ public static final int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabMaxWidth */ public static final int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabMinWidth */ public static final int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabMode */ public static final int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabPadding */ public static final int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabPaddingStart */ public static final int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabPaddingTop */ public static final int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabTextAppearance */ public static final int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:tabTextColor */ public static final int TabLayout_tabTextColor = 9; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps dk.ei.opgaveapp:textAllCaps}</code></td><td></td></tr> </table> @see #TextAppearance_android_shadowColor @see #TextAppearance_android_shadowDx @see #TextAppearance_android_shadowDy @see #TextAppearance_android_shadowRadius @see #TextAppearance_android_textColor @see #TextAppearance_android_textColorHint @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010047 }; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor = 5; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx = 6; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy = 7; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius = 8; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorHint */ public static final int TextAppearance_android_textColorHint = 4; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#textAllCaps} attribute's value can be found in the {@link #TextAppearance} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name dk.ei.opgaveapp:textAllCaps */ public static final int TextAppearance_textAllCaps = 9; /** Attributes that can be used with a TextInputLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterEnabled dk.ei.opgaveapp:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength dk.ei.opgaveapp:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance dk.ei.opgaveapp:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance dk.ei.opgaveapp:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled dk.ei.opgaveapp:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance dk.ei.opgaveapp:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled dk.ei.opgaveapp:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled dk.ei.opgaveapp:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance dk.ei.opgaveapp:hintTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription dk.ei.opgaveapp:passwordToggleContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable dk.ei.opgaveapp:passwordToggleDrawable}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled dk.ei.opgaveapp:passwordToggleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTint dk.ei.opgaveapp:passwordToggleTint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode dk.ei.opgaveapp:passwordToggleTintMode}</code></td><td></td></tr> </table> @see #TextInputLayout_android_hint @see #TextInputLayout_android_textColorHint @see #TextInputLayout_counterEnabled @see #TextInputLayout_counterMaxLength @see #TextInputLayout_counterOverflowTextAppearance @see #TextInputLayout_counterTextAppearance @see #TextInputLayout_errorEnabled @see #TextInputLayout_errorTextAppearance @see #TextInputLayout_hintAnimationEnabled @see #TextInputLayout_hintEnabled @see #TextInputLayout_hintTextAppearance @see #TextInputLayout_passwordToggleContentDescription @see #TextInputLayout_passwordToggleDrawable @see #TextInputLayout_passwordToggleEnabled @see #TextInputLayout_passwordToggleTint @see #TextInputLayout_passwordToggleTintMode */ public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f010144, 0x7f010145, 0x7f010146, 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150, 0x7f010151 }; /** <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 dk.ei.opgaveapp.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 dk.ei.opgaveapp:counterEnabled */ public static final int TextInputLayout_counterEnabled = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:counterMaxLength */ public static final int TextInputLayout_counterMaxLength = 7; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance = 9; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:errorEnabled */ public static final int TextInputLayout_errorEnabled = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled = 10; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:hintEnabled */ public static final int TextInputLayout_hintEnabled = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription = 13; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable = 12; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled = 11; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint = 14; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:passwordToggleTintMode */ public static final int TextInputLayout_passwordToggleTintMode = 15; /** Attributes that can be used with a Toolbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_buttonGravity dk.ei.opgaveapp:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription dk.ei.opgaveapp:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon dk.ei.opgaveapp:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd dk.ei.opgaveapp:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions dk.ei.opgaveapp:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft dk.ei.opgaveapp:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight dk.ei.opgaveapp:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart dk.ei.opgaveapp:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation dk.ei.opgaveapp:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo dk.ei.opgaveapp:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription dk.ei.opgaveapp:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight dk.ei.opgaveapp:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription dk.ei.opgaveapp:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon dk.ei.opgaveapp:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme dk.ei.opgaveapp:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle dk.ei.opgaveapp:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance dk.ei.opgaveapp:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor dk.ei.opgaveapp:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title dk.ei.opgaveapp:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin dk.ei.opgaveapp:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom dk.ei.opgaveapp:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd dk.ei.opgaveapp:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart dk.ei.opgaveapp:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop dk.ei.opgaveapp:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins dk.ei.opgaveapp:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance dk.ei.opgaveapp:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor dk.ei.opgaveapp:titleTextColor}</code></td><td></td></tr> </table> @see #Toolbar_android_gravity @see #Toolbar_android_minHeight @see #Toolbar_buttonGravity @see #Toolbar_collapseContentDescription @see #Toolbar_collapseIcon @see #Toolbar_contentInsetEnd @see #Toolbar_contentInsetEndWithActions @see #Toolbar_contentInsetLeft @see #Toolbar_contentInsetRight @see #Toolbar_contentInsetStart @see #Toolbar_contentInsetStartWithNavigation @see #Toolbar_logo @see #Toolbar_logoDescription @see #Toolbar_maxButtonHeight @see #Toolbar_navigationContentDescription @see #Toolbar_navigationIcon @see #Toolbar_popupTheme @see #Toolbar_subtitle @see #Toolbar_subtitleTextAppearance @see #Toolbar_subtitleTextColor @see #Toolbar_title @see #Toolbar_titleMargin @see #Toolbar_titleMarginBottom @see #Toolbar_titleMarginEnd @see #Toolbar_titleMarginStart @see #Toolbar_titleMarginTop @see #Toolbar_titleMargins @see #Toolbar_titleTextAppearance @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f01001f, 0x7f010022, 0x7f010026, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010039, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa }; /** <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 dk.ei.opgaveapp.R.attr#buttonGravity} attribute's value can be found in the {@link #Toolbar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:buttonGravity */ public static final int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#collapseContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#collapseIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:collapseIcon */ public static final int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetLeft} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetRight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#logo} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#logoDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:logoDescription */ public static final int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#navigationContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#navigationIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:navigationIcon */ public static final int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#popupTheme} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp:popupTheme */ public static final int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#subtitle} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#subtitleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#titleMargin} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:titleMargin */ public static final int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#titleMarginBottom} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#titleMarginEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#titleMarginStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:titleMarginStart */ public static final int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#titleMarginTop} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:titleMarginTop */ public static final int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#titleMargins} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:titleMargins */ public static final int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.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 dk.ei.opgaveapp:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#titleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:titleTextColor */ public static final int Toolbar_titleTextColor = 27; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd dk.ei.opgaveapp:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart dk.ei.opgaveapp:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme dk.ei.opgaveapp:theme}</code></td><td></td></tr> </table> @see #View_android_focusable @see #View_android_theme @see #View_paddingEnd @see #View_paddingStart @see #View_theme */ public static final int[] View = { 0x01010000, 0x010100da, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #View} array. @attr name android:focusable */ public static final int View_android_focusable = 1; /** <p>This symbol is the offset where the {@link android.R.attr#theme} attribute's value can be found in the {@link #View} array. @attr name android:theme */ public static final int View_android_theme = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#paddingEnd} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#paddingStart} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#theme} attribute's value can be found in the {@link #View} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name dk.ei.opgaveapp: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 dk.ei.opgaveapp:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode dk.ei.opgaveapp:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100fe, 0x7f0100ff }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #ViewBackgroundHelper} array. @attr name android:background */ public static final int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#backgroundTint} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name dk.ei.opgaveapp:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link dk.ei.opgaveapp.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name dk.ei.opgaveapp:backgroundTintMode */ public static final int ViewBackgroundHelper_backgroundTintMode = 2; /** Attributes that can be used with a ViewStubCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> </table> @see #ViewStubCompat_android_id @see #ViewStubCompat_android_inflatedId @see #ViewStubCompat_android_layout */ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:id */ public static final int ViewStubCompat_android_id = 0; /** <p>This symbol is the offset where the {@link android.R.attr#inflatedId} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:layout */ public static final int ViewStubCompat_android_layout = 1; }; }
[ "klausgaarde@live.dk" ]
klausgaarde@live.dk
3ba4283dd4a4d6a91ad9bb371ea3e49e6b922b54
39cd68ff1bc36bfd96d465d3e7713574541e579a
/app/src/test/java/ru/startandroid/currencies/ExampleUnitTest.java
c728a9890d71966b128dd468f825d59b656ba8d0
[]
no_license
Manwtein/Currencies
0af221a2895816f0a29b697faf6eb4e1837441e5
3e773a160e6177a05513be092fcef01b6f968663
refs/heads/temp
2020-03-28T16:35:09.438859
2018-09-18T22:39:13
2018-09-18T22:39:13
148,708,974
0
0
null
null
null
null
UTF-8
Java
false
false
387
java
package ru.startandroid.currencies; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() { assertEquals(4, 2 + 2); } }
[ "manko.dmitry@outlook.com" ]
manko.dmitry@outlook.com
debf9679e585670a8c0b6de3bc0fff84e8dc8e0f
c474b03758be154e43758220e47b3403eb7fc1fc
/apk/decompiled/com.tinder_2018-07-26_source_from_JADX/sources/com/google/android/m4b/maps/av/C4678g.java
6ac28dae777ec63585a2671b769355f0f906daef
[]
no_license
EstebanDalelR/tinderAnalysis
f80fe1f43b3b9dba283b5db1781189a0dd592c24
941e2c634c40e5dbf5585c6876ef33f2a578b65c
refs/heads/master
2020-04-04T09:03:32.659099
2018-11-23T20:41:28
2018-11-23T20:41:28
155,805,042
0
0
null
2018-11-18T16:02:45
2018-11-02T02:44:34
null
UTF-8
Java
false
false
669
java
package com.google.android.m4b.maps.av; import com.google.android.m4b.maps.ar.C4664b; /* renamed from: com.google.android.m4b.maps.av.g */ public final class C4678g { /* renamed from: a */ public static final C4664b f17152a = new C4664b(); /* renamed from: b */ public static final C4664b f17153b = new C4664b(); /* renamed from: c */ private static C4664b f17154c = new C4664b(); /* renamed from: d */ private static C4664b f17155d = new C4664b(); static { f17152a.m20850a(539, 1, f17154c); f17153b.m20850a(539, 1, f17155d); f17154c.m20850a(1043, 1, null); f17155d.m20850a(1059, 1, null); } }
[ "jdguzmans@hotmail.com" ]
jdguzmans@hotmail.com
82e99296c710ded2016137ddd710540a3e1620c7
2443d42b6874610071cbddbb28429b2db5b70a4f
/day3/src/com/fitech/Main.java
5df493980dc13c10f81eac90724bca397eb2bebf
[]
no_license
callmeislaan/SmartOsc_Study
fd044d98c96d8325bcb942a71fdf088558419f3d
c6b8cdfd7c000d947ca82df75679cf0d955ed9bd
refs/heads/master
2022-12-23T09:53:43.745871
2020-09-25T21:42:05
2020-09-25T21:42:05
298,684,376
2
0
null
null
null
null
UTF-8
Java
false
false
4,988
java
package com.fitech; import java.util.Scanner; public class Main { private static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int choose; double inches; double miles; double gallons; do { System.out.println("---Menu---"); System.out.println("0. Exit"); System.out.println("1. Bai 1"); System.out.println("2. Bai 2"); System.out.println("3. Bai 3"); System.out.println("4. Bai 4"); System.out.println("5. Bai 5"); System.out.println("6. Bai 6"); System.out.println("your choose: "); choose = sc.nextInt(); switch (choose) { case 1: System.out.println("enter amount of inches: "); inches = sc.nextDouble(); System.out.println(inches + " inches = " + Conversions.inchesToCentimeters(inches) + " centimeters"); System.out.println("enter amount of gallons: : "); gallons = sc.nextDouble(); System.out.println(gallons + " gallons = " + Conversions.gallonsToLiters(gallons) + " liters"); System.out.println("enter amount of miles: "); miles = sc.nextDouble(); System.out.println(miles + " miles = " + Conversions.milesToKilometers(miles) + " kilometers"); break; case 2: System.out.println("enter amount of inches: "); inches = sc.nextDouble(); System.out.println(inches + " inches = " + new InchesToCentimeters().conversion(inches) + " centimeters"); System.out.println("enter amount of gallons: : "); gallons = sc.nextDouble(); System.out.println(gallons + " gallons = " + new GallonsToLiters().conversion(gallons) + " liters"); System.out.println("enter amount of miles: "); miles = sc.nextDouble(); System.out.println(miles + " miles = " + new MilesToKilometers().conversion(miles) + " kilometers"); break; case 3: int c; BankAccount checkingAccount = new CheckingAccount(); accountAction(sc, checkingAccount); break; case 4: BankAccount savingAccount = new SavingAccount(); accountAction(sc, savingAccount); break; case 5: sc.nextLine(); System.out.println("Enter name of point: "); String name = sc.nextLine(); System.out.println("Enter x: "); double x = sc.nextDouble(); System.out.println("Enter y: "); double y = sc.nextDouble(); Point labeledPoint = new LabeledPoint(name, x, y); System.out.println(labeledPoint.toString()); break; case 6: Shape rectangle = new Rectangle(); Shape circle = new Circle(); System.out.println("Enter x: "); x = sc.nextDouble(); System.out.println("Enter y: "); y = sc.nextDouble(); System.out.println("center point of rectangle: " + rectangle.centerPoint(new Point(x, y))); System.out.println("center point of circle: " + circle.centerPoint(new Point(x, y))); break; default:break; } } while (choose != 0); } private static void accountAction(Scanner sc, BankAccount savingAccount) { int c; do { System.out.println("Enter 0 to exit"); System.out.println("Enter 1 to deposit"); System.out.println("Enter 2 to withdrawal"); System.out.println("Enter 3 to watch your balance"); System.out.println("Please enter a number: "); c = sc.nextInt(); switch (c) { case 0: break; case 1: System.out.println("enter amount: "); savingAccount.deposit(sc.nextDouble()); System.out.println(savingAccount.toString()); break; case 2: System.out.println("enter amount: "); savingAccount.withdrawal(sc.nextDouble()); System.out.println(savingAccount.toString()); break; case 3: System.out.println(savingAccount.toString()); break; } } while (c != 0); } }
[ "truongphuoc7398@gmail.com" ]
truongphuoc7398@gmail.com
6984b11e4eb5d1d378c6fc7c1461303c3318f5e1
e820097c99fb212c1c819945e82bd0370b4f1cf7
/gwt-sh/src/main/java/com/skynet/spms/manager/customerService/ExchangeService/Other/impl/ComponentFailureSafetyDataImpl.java
d0cddfbe8dff7722e9e65ad1f7fb2cdd4ae08a0b
[]
no_license
jayanttupe/springas-train-example
7b173ca4298ceef543dc9cf8ae5f5ea365431453
adc2e0f60ddd85d287995f606b372c3d686c3be7
refs/heads/master
2021-01-10T10:37:28.615899
2011-12-20T07:47:31
2011-12-20T07:47:31
36,887,613
0
0
null
null
null
null
UTF-8
Java
false
false
286
java
package com.skynet.spms.manager.customerService.ExchangeService.Other.impl; import com.skynet.spms.manager.customerService.ExchangeService.Other.ComponentFailureSafetyDataManager; public class ComponentFailureSafetyDataImpl implements ComponentFailureSafetyDataManager { }
[ "usedtolove@3b6edebd-8678-f8c2-051a-d8e859c3524d" ]
usedtolove@3b6edebd-8678-f8c2-051a-d8e859c3524d
b91e921db09f116c49afb77a1d08df3eefee81dd
2e324724c1d8fbf902c9f7f6f125baa56da09df1
/app/src/main/java/com/alaaclips/mccassinment4/FirstActivity.java
c2847a11efb6e14e878048d53552a0c75121a012
[]
no_license
alaayousf/MCCAssinment4
5060dba6fc9f5af9469c72cd49a692e01dfe924c
0ad0dba5a4c79bdc36f1d8211ab76a69d4ada06e
refs/heads/master
2023-05-30T11:52:01.185458
2021-06-11T18:28:36
2021-06-11T18:28:36
376,078,069
0
0
null
null
null
null
UTF-8
Java
false
false
5,483
java
package com.alaaclips.mccassinment4; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; public class FirstActivity extends AppCompatActivity { Button button, button2, button3, button4; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_first); button = findViewById(R.id.button); button2 = findViewById(R.id.button2); button3 = findViewById(R.id.button3); button4 = findViewById(R.id.button4); Intent i = new Intent(this, MainActivity.class); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { i.putExtra("button","https://r1---sn-oxfnu5g2n-b15e.googlevideo.com/videoplayback?expire=1623448307&ei=k4bDYOvKLK74xN8P1ZuCqAE&ip=5.226.137.241&id=o-ADqAe2GxGbuKcdPSB4_FuhFDrrbhXwxDGSZw9Se4ZS-N&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=veaUIA2tCzd5vv6Xbg5C4GsF&gir=yes&clen=48311663&ratebypass=yes&dur=1067.723&lmt=1580034194576217&fexp=24001373,24007246&c=WEB&txp=5531432&n=iMYakgKXKuf9IGneGXI&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRgIhAIOIp0ZGyZ_vRMIqREaVQH4XO47i-RYMnrVxHrGeRcnAAiEA6jNyLxveIjoly01pS_SUJh3evDcnKdrnrcb3zrqxcUE%3D&redirect_counter=1&rm=sn-aigezs7e&req_id=22544c3a2136a3ee&cms_redirect=yes&ipbypass=yes&mh=Y-&mip=206.62.153.96&mm=31&mn=sn-oxfnu5g2n-b15e&ms=au&mt=1623426776&mv=m&mvi=1&pcm2cms=yes&pl=24&lsparams=ipbypass,mh,mip,mm,mn,ms,mv,mvi,pcm2cms,pl&lsig=AG3C_xAwRQIhAP1HzZhldQn8vaFvEIt4mdeQ3ytKcgw5p70ZZJMyIHsHAiAih6EfGzUp4k5olz08AwRpTU6dT9mMH_OsV9mxreyhVg%3D%3D"); startActivity(i); } }); button2.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { i.putExtra("button","https://r5---sn-npoeenl7.googlevideo.com/videoplayback?expire=1623448527&ei=b4fDYJyNEP6A6dsPo6isgA8&ip=36.81.177.104&id=o-ACUevxf-i36Jjk9DFPBKoCH-KLziKdWoU4UeWdqZfNIh&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=4bq5MyfVylevKnFUt_AJfUoF&gir=yes&clen=14112554&ratebypass=yes&dur=319.413&lmt=1575168160810875&fexp=24001373,24007246&c=WEB&txp=5531432&n=M013L9y4iZ3BK_IPPbC&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRQIhANCJCRpwW19Nw20BHGowoimAQMy1upYbVwM8Mnrlwkd3AiB7fZqeN0fWGH4T8ceuvr4B_-S7XohrkF7XjpVLj-c5iw%3D%3D&redirect_counter=1&rm=sn-2uuxa3vh-n0cd76&req_id=183e695d2b76a3ee&cms_redirect=yes&ipbypass=yes&mh=GV&mm=29&mn=sn-npoeenl7&ms=rdu&mt=1623426780&mv=m&mvi=5&pl=26&lsparams=ipbypass,mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgaNggCYQVZWu544OzSc1f3vaSnFF4cby1vuhTiII-QC4CIQCbo5CtfUczQK9a73zBWDr_PpsNY9I-QwzNco0QA0kgrA%3D%3D"); startActivity(i); } }); button3.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { i.putExtra("button","https://r8---sn-n8v7kne6.googlevideo.com/videoplayback?expire=1623448603&ei=u4fDYLDeH4uq7AShwaSQCg&ip=213.230.97.10&id=o-AEwuQHypEh-dY9WuDpWmwv67gQtJd38M1J2qnXiQEcs3&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=rwkDuWRPSHkLG478KpK5rpwF&gir=yes&clen=329606367&ratebypass=yes&dur=7253.774&lmt=1601124850284010&fexp=24001373,24007246&c=WEB&txp=5530422&n=NNYgahLEz49qnB_QQ_k&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgJkb4ymzRRABDzgpnF0WRjOUGgPFAv-9cYzT4PVD5GAsCIBH78k1x_ra7QLxDaJkmIfI29RZ31XiFamDzm165rZwO&rm=sn-01oxu-u5ns7r,sn-ug5onuxaxjvh-n8vz7r&req_id=19e3511c29d3a3ee&ipbypass=yes&redirect_counter=2&cms_redirect=yes&mh=Oe&mm=30&mn=sn-n8v7kne6&ms=nxu&mt=1623426749&mv=m&mvi=8&pl=23&lsparams=ipbypass,mh,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwQwIgGQD_AwKlgJLK6Y4Ajsar9RaGF_9q-oBgpnsbzrmaCvsCHyXe9Ij_GDylKvIdr3dhNQT200J57wY6NOg75A6wA9E%3D"); startActivity(i); } }); button4.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { i.putExtra("button","https://r4---sn-4g5e6nzl.googlevideo.com/videoplayback?expire=1623448737&ei=QYjDYPbtLMX18gTfsp7gBA&ip=173.195.15.211&id=o-ANGq5lAHkgiu7aSorHWpb9KcPKspEVcbPzOxphU1CPc2&itag=18&source=youtube&requiressl=yes&vprv=1&mime=video%2Fmp4&ns=LR9k2xYR-gW1SEHCmP27FMgF&gir=yes&clen=31385970&ratebypass=yes&dur=1704.089&lmt=1615634192336686&fexp=24001373,24007246&c=WEB&txp=5430434&n=Jus4j0MgxVA6F-PGa2t&sparams=expire%2Cei%2Cip%2Cid%2Citag%2Csource%2Crequiressl%2Cvprv%2Cmime%2Cns%2Cgir%2Cclen%2Cratebypass%2Cdur%2Clmt&sig=AOq0QJ8wRAIgOcmdrJBNLNN9HzX7ao1XWX0YPOpcEV7XynwpPR31pdoCIC6HqU8rpODfbrSF0ssT3hzpkg6kgPVL4C8VT5B6fZED&rm=sn-ab5eee7z&req_id=21e075bf8d09a3ee&ipbypass=yes&redirect_counter=2&cm2rm=sn-oxfnu5g2n-b15e7l&cms_redirect=yes&mh=1T&mip=206.62.153.96&mm=29&mn=sn-4g5e6nzl&ms=rdu&mt=1623427016&mv=m&mvi=4&pl=24&lsparams=ipbypass,mh,mip,mm,mn,ms,mv,mvi,pl&lsig=AG3C_xAwRQIgKYFWJPJrY9KHrlVCNQs6Z3IkekbEXIieC5P5n8B2DmECIQDQUVbUWexJrHsX75IjvTZUZRAkKwgun25bQN5bE0jZIQ%3D%3D"); startActivity(i); } }); } }
[ "uuee51014@gmail.com" ]
uuee51014@gmail.com
bad7f378867db779612785039c5395c1ecef5ae9
4f7131ba09e4a1a92f42e9f66f55abbbd0677f22
/src/main/java/com/jexhuang/model/bean/EmpDao.java
9ea94dc0ccd200479334e50d6292880566b94dc8
[]
no_license
jexhuang/UnitTestAndTDD
e38af85b3df4dbebf2dc7f4fb3fd36c1a8eb9043
4486cd765b4defa39a0e8b3812ff41d3539d8527
refs/heads/master
2016-09-14T13:06:46.927379
2016-04-23T08:03:44
2016-04-23T08:03:44
56,907,320
0
0
null
null
null
null
UTF-8
Java
false
false
140
java
package com.jexhuang.model.bean; public class EmpDao { public String findEmpNoFromDbByEmpId(String empId){ return "data from db"; } }
[ "m3m0080@gmail.com" ]
m3m0080@gmail.com
ec42e9891da1af053807bb496a9b1b04fbda7979
7e0297895eed263dc7d73955f996823bb6724053
/ex-07-circuitbreaker/services/store-api/src/main/java/org/bookstore/store/domain/Author.java
a98da2d2cb31c7f66de840466fa8fe8fd17f40f8
[]
no_license
agoncal/agoncal-formation-microservices
a4fe3072e33f4275c12cd0b02d420e290eb523f1
a710c429044d7f1c50793d279c8b4143b0e07758
refs/heads/master
2020-03-30T03:07:22.217554
2018-10-05T18:43:47
2018-10-05T18:43:47
150,670,188
4
1
null
2018-11-12T11:01:05
2018-09-28T01:46:28
Java
UTF-8
Java
false
false
4,488
java
package org.bookstore.store.domain; import com.fasterxml.jackson.annotation.JsonIgnore; import org.bookstore.store.domain.enumeration.Language; import javax.persistence.*; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; import java.io.Serializable; import java.time.LocalDate; import java.util.HashSet; import java.util.Objects; import java.util.Set; /** * A Author. */ @Entity @Table(name = "str_author") public class Author implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "sequenceGenerator") @SequenceGenerator(name = "sequenceGenerator") private Long id; @NotNull @Size(min = 2, max = 50) @Column(name = "first_name", length = 50, nullable = false) private String firstName; @NotNull @Size(min = 2, max = 50) @Column(name = "last_name", length = 50, nullable = false) private String lastName; @Size(max = 5000) @Column(name = "bio", length = 5000) private String bio; @Column(name = "date_of_birth") private LocalDate dateOfBirth; @Enumerated(EnumType.STRING) @Column(name = "preferred_language") private Language preferredLanguage; @ManyToMany(mappedBy = "authors") @JsonIgnore private Set<Book> books = new HashSet<>(); // jhipster-needle-entity-add-field - JHipster will add fields here, do not remove public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getFirstName() { return firstName; } public Author firstName(String firstName) { this.firstName = firstName; return this; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getLastName() { return lastName; } public Author lastName(String lastName) { this.lastName = lastName; return this; } public void setLastName(String lastName) { this.lastName = lastName; } public String getBio() { return bio; } public Author bio(String bio) { this.bio = bio; return this; } public void setBio(String bio) { this.bio = bio; } public LocalDate getDateOfBirth() { return dateOfBirth; } public Author dateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; return this; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } public Language getPreferredLanguage() { return preferredLanguage; } public Author preferredLanguage(Language preferredLanguage) { this.preferredLanguage = preferredLanguage; return this; } public void setPreferredLanguage(Language preferredLanguage) { this.preferredLanguage = preferredLanguage; } public Set<Book> getBooks() { return books; } public Author books(Set<Book> books) { this.books = books; return this; } public Author addBook(Book book) { this.books.add(book); book.getAuthors().add(this); return this; } public Author removeBook(Book book) { this.books.remove(book); book.getAuthors().remove(this); return this; } public void setBooks(Set<Book> books) { this.books = books; } // jhipster-needle-entity-add-getters-setters - JHipster will add getters and setters here, do not remove @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Author author = (Author) o; if (author.getId() == null || getId() == null) { return false; } return Objects.equals(getId(), author.getId()); } @Override public int hashCode() { return Objects.hashCode(getId()); } @Override public String toString() { return "Author{" + "id=" + getId() + ", firstName='" + getFirstName() + "'" + ", lastName='" + getLastName() + "'" + ", bio='" + getBio() + "'" + ", dateOfBirth='" + getDateOfBirth() + "'" + ", preferredLanguage='" + getPreferredLanguage() + "'" + "}"; } }
[ "antonio.goncalves@gmail.com" ]
antonio.goncalves@gmail.com
568e9ddffba9adb47d26a6c2d0cb79487d8d3fa7
647ec12ce50f06e7380fdbfb5b71e9e2d1ac03b4
/com.tencent.mm/classes.jar/com/tencent/mm/ui/widget/b/a.java
18b0f79619a199919c8a216e2554f2b8fd4a890f
[]
no_license
tsuzcx/qq_apk
0d5e792c3c7351ab781957bac465c55c505caf61
afe46ef5640d0ba6850cdefd3c11badbd725a3f6
refs/heads/main
2022-07-02T10:32:11.651957
2022-02-01T12:41:38
2022-02-01T12:41:38
453,860,108
36
9
null
2022-01-31T09:46:26
2022-01-31T02:43:22
Java
UTF-8
Java
false
false
41,809
java
package com.tencent.mm.ui.widget.b; import android.app.Activity; import android.content.Context; import android.content.res.Resources; import android.graphics.Rect; import android.graphics.drawable.ColorDrawable; import android.util.DisplayMetrics; import android.view.KeyEvent; import android.view.LayoutInflater; import android.view.MenuItem; import android.view.MotionEvent; import android.view.View; import android.view.View.MeasureSpec; import android.view.View.OnClickListener; import android.view.View.OnCreateContextMenuListener; import android.view.View.OnKeyListener; import android.view.View.OnLongClickListener; import android.view.View.OnTouchListener; import android.view.ViewGroup; import android.view.ViewGroup.LayoutParams; import android.view.Window; import android.widget.AbsListView; import android.widget.AdapterView; import android.widget.AdapterView.AdapterContextMenuInfo; import android.widget.AdapterView.OnItemClickListener; import android.widget.AdapterView.OnItemLongClickListener; import android.widget.BaseAdapter; import android.widget.FrameLayout; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.LinearLayout.LayoutParams; import android.widget.ListAdapter; import android.widget.ListView; import android.widget.PopupWindow.OnDismissListener; import android.widget.TextView; import com.tencent.matrix.trace.core.AppMethodBeat; import com.tencent.mm.ck.a.c; import com.tencent.mm.ck.a.d; import com.tencent.mm.ck.a.e; import com.tencent.mm.ck.a.f; import com.tencent.mm.ck.a.g; import com.tencent.mm.ck.a.j; import com.tencent.mm.ui.base.MMListPopupWindow; import com.tencent.mm.ui.base.s; import com.tencent.mm.ui.base.t; import com.tencent.mm.ui.base.u.f; import com.tencent.mm.ui.base.u.i; import com.tencent.mm.ui.base.v; import com.tencent.mm.ui.bc; import com.tencent.mm.ui.bd; import com.tencent.mm.ui.widget.imageview.WeImageView; import java.util.Iterator; import java.util.List; public class a implements View.OnKeyListener, AdapterView.OnItemClickListener, PopupWindow.OnDismissListener { private static boolean GfH = false; private static int akmm = 5; private static int qjs; private static int qjt; public u.i GAC; private View Kqo; public s Vtk; private View aeMz; public MMListPopupWindow aefY; public PopupWindow.OnDismissListener afLp; public boolean agjA; public boolean agjB; private boolean agjC; public a.a agjF; public boolean agjG; public boolean agjH; private b agjl; private v agjm; private v agjn; private v agjo; private int agjp; private DisplayMetrics agjq; private boolean agjr; public View agjs; public View.OnCreateContextMenuListener agjt; public u.f agju; public boolean agjv; public boolean agjw; public boolean agjx; public int agjy; public boolean agjz; public boolean akil; public int akmn; public Context mContext; private LayoutInflater mInflater; public long startTime; public a(Context paramContext) { AppMethodBeat.i(159475); this.mContext = null; this.aeMz = null; this.agjl = null; this.agjr = false; this.agjv = false; this.agjw = false; this.agjx = false; this.agjy = 0; this.agjz = false; this.agjA = false; this.agjB = true; this.agjC = true; this.akmn = 0; this.akil = false; this.startTime = 0L; this.agjG = true; this.agjH = false; this.mContext = paramContext; this.mInflater = ((LayoutInflater)paramContext.getSystemService("layout_inflater")); initView(); AppMethodBeat.o(159475); } public a(Context paramContext, View paramView) { AppMethodBeat.i(159474); this.mContext = null; this.aeMz = null; this.agjl = null; this.agjr = false; this.agjv = false; this.agjw = false; this.agjx = false; this.agjy = 0; this.agjz = false; this.agjA = false; this.agjB = true; this.agjC = true; this.akmn = 0; this.akil = false; this.startTime = 0L; this.agjG = true; this.agjH = false; this.mContext = paramContext; this.aeMz = paramView; this.mInflater = ((LayoutInflater)paramContext.getSystemService("layout_inflater")); initView(); jIw(); AppMethodBeat.o(159474); } private int c(ListAdapter paramListAdapter) { AppMethodBeat.i(159487); int n = View.MeasureSpec.makeMeasureSpec(0, 0); int i1 = View.MeasureSpec.makeMeasureSpec(0, 0); int i2 = paramListAdapter.getCount(); int j = 0; int i = 0; View localView = null; int k = 0; int m; if (j < i2) { m = paramListAdapter.getItemViewType(j); if (m == i) { break label135; } localView = null; i = m; } label135: for (;;) { localView = paramListAdapter.getView(j, localView, new FrameLayout(this.mContext)); m = k; if (localView != null) { localView.measure(n, i1); m = Math.max(k, localView.getMeasuredWidth()); } j += 1; k = m; break; AppMethodBeat.o(159487); return k; } } private void initView() { AppMethodBeat.i(159485); diW(); this.Vtk = new s(this.mContext); this.agjl = new b((byte)0); this.agjq = this.mContext.getResources().getDisplayMetrics(); AppMethodBeat.o(159485); } private boolean isShowing() { AppMethodBeat.i(159481); if ((this.aefY != null) && (this.aefY.qjH.isShowing())) { AppMethodBeat.o(159481); return true; } AppMethodBeat.o(159481); return false; } private boolean jIu() { AppMethodBeat.i(159482); if ((this.agjm != null) && (this.agjm.isShowing())) { AppMethodBeat.o(159482); return true; } AppMethodBeat.o(159482); return false; } private void jIw() { AppMethodBeat.i(159486); this.aeMz.setOnTouchListener(new View.OnTouchListener() { public final boolean onTouch(View paramAnonymousView, MotionEvent paramAnonymousMotionEvent) { AppMethodBeat.i(251898); switch (paramAnonymousMotionEvent.getAction() & 0xFF) { } for (;;) { AppMethodBeat.o(251898); return false; a.aqz((int)paramAnonymousMotionEvent.getRawX()); a.Hn((int)paramAnonymousMotionEvent.getRawY()); a.b(a.this, a.g(a.this)); a.daN(); bc.i("MicroMsg.MMPopupMenu", "popmenu view set , x_down=" + a.bPa() + "y_down=" + a.ddn(), new Object[0]); } } }); AppMethodBeat.o(159486); } public static int kMr() { return akmm; } private boolean oU(int paramInt1, int paramInt2) { AppMethodBeat.i(159479); if ((isShowing()) || (jIu()) || (jIv())) { AppMethodBeat.o(159479); return false; } Object localObject; if ((this.mContext instanceof Activity)) { localObject = ((ViewGroup)((Activity)this.mContext).getWindow().getDecorView()).findViewById(16908290); if (localObject != null) { Rect localRect = new Rect(); ((View)localObject).getGlobalVisibleRect(localRect); if (localRect.left <= 0) {} } } for (int i = 1; i != 0; i = 0) { bc.w("MicroMsg.MMPopupMenu", "is swiping, PASS tryShow", new Object[0]); AppMethodBeat.o(159479); return false; } if (((this.agjw) || (this.agjx)) && (this.agju != null)) { this.agju.OnCreateContextMMMenu(this.Vtk, this.aeMz, null); } int k; for (;;) { k = this.agjl.getCount() * this.mContext.getResources().getDimensionPixelSize(a.d.SmallListHeight); if ((k != 0) || (this.agjv) || (this.agjw) || (this.agjx)) { break; } AppMethodBeat.o(159479); return false; if (this.agjt != null) { this.agjt.onCreateContextMenu(this.Vtk, this.aeMz, null); } } int m = this.mContext.getResources().getDimensionPixelSize(a.d.edgePadding); i = c(this.agjl); int j = bd.bs(this.mContext, a.d.minMenuWidth); if (i < j) { i = j; if (this.Vtk.size() < 3) { break label773; } } label773: for (boolean bool = false;; bool = true) { if (!this.agjr) { if (this.agjs != null) { this.agjs.setSelected(true); } } else { label336: if (!this.agjv) { break label371; } oV(paramInt1, paramInt2); } for (;;) { AppMethodBeat.o(159479); return true; break; this.aeMz.setSelected(true); break label336; label371: if (this.agjw) { oW(paramInt1, paramInt2); } else if (this.agjx) { oX(paramInt1, paramInt2); } else { localObject = b.a(this.mContext, i, paramInt1, paramInt2, k, m, bool); this.agjp = (paramInt2 - this.mContext.getResources().getDimensionPixelSize(a.d.edgePadding)); bc.d("MicroMsg.MMPopupMenu", "showPointY=" + paramInt2 + "verticalOffset=" + this.agjp, new Object[0]); this.aefY = new MMListPopupWindow(this.mContext, null, 0); this.aefY.setOnDismissListener(this); this.aefY.un = new AdapterView.OnItemClickListener() { public final void onItemClick(AdapterView<?> paramAnonymousAdapterView, View paramAnonymousView, int paramAnonymousInt, long paramAnonymousLong) { AppMethodBeat.i(251900); com.tencent.mm.hellhoundlib.b.b localb = new com.tencent.mm.hellhoundlib.b.b(); localb.cH(paramAnonymousAdapterView); localb.cH(paramAnonymousView); localb.sc(paramAnonymousInt); localb.hB(paramAnonymousLong); com.tencent.mm.hellhoundlib.a.a.c("com/tencent/mm/ui/widget/menu/MMPopupMenu$5", "android/widget/AdapterView$OnItemClickListener", "onItemClick", "(Landroid/widget/AdapterView;Landroid/view/View;IJ)V", this, localb.aYj()); if (a.b(a.this) != null) { a.b(a.this).onMMMenuItemSelected(a.a(a.this).getItem(paramAnonymousInt), paramAnonymousInt); } if ((a.c(a.this) != null) && (a.c(a.this).qjH.isShowing())) { a.c(a.this).dismiss(); } com.tencent.mm.hellhoundlib.a.a.a(this, "com/tencent/mm/ui/widget/menu/MMPopupMenu$5", "android/widget/AdapterView$OnItemClickListener", "onItemClick", "(Landroid/widget/AdapterView;Landroid/view/View;IJ)V"); AppMethodBeat.o(251900); } }; this.aefY.setAdapter(this.agjl); this.aefY.LA(this.agjG); this.aefY.ug = this.agjH; this.aefY.setBackgroundDrawable(this.mContext.getResources().getDrawable(a.e.sub_menu_bg)); this.aefY.aAU(((b.a)localObject).agjL); this.aefY.tZ = ((b.a)localObject).uLg; this.aefY.ad(((b.a)localObject).CMA); this.aefY.ul = this.aeMz; this.aefY.setContentWidth(i); this.aefY.eN(); if ((!(this.mContext instanceof Activity)) || (((Activity)this.mContext).isFinishing())) { break label765; } this.aefY.show(); this.aefY.adRQ.setOnKeyListener(this); this.aefY.adRQ.setDivider(new ColorDrawable(this.mContext.getResources().getColor(a.c.small_line_color))); this.aefY.adRQ.setSelector(this.mContext.getResources().getDrawable(a.e.popup_menu_selector)); this.aefY.adRQ.setDividerHeight(0); this.aefY.adRQ.setVerticalScrollBarEnabled(false); this.aefY.adRQ.setHorizontalScrollBarEnabled(false); } } label765: AppMethodBeat.o(159479); return false; } } private void oV(int paramInt1, int paramInt2) { AppMethodBeat.i(159480); int j = this.mContext.getResources().getDimensionPixelOffset(a.d.NormalPadding); int k = this.mContext.getResources().getDimensionPixelOffset(a.d.LargePadding); this.agjm = new v(this.mContext); this.agjm.setOnDismissListener(this); this.agjm.setWidth(-2); this.agjm.setHeight(-2); this.agjm.setBackgroundDrawable(this.mContext.getResources().getDrawable(a.e.sub_menu_bg)); this.agjm.setFocusable(this.agjz); this.agjm.setOutsideTouchable(this.agjA); LinearLayout localLinearLayout = new LinearLayout(this.mContext); localLinearLayout.setLayoutParams(new LinearLayout.LayoutParams(-2, -2)); localLinearLayout.setOrientation(0); localLinearLayout.setBackgroundColor(this.mContext.getResources().getColor(a.c.BG_5)); final int i = 0; if (i < this.Vtk.size()) { TextView localTextView = (TextView)this.mInflater.inflate(a.g.horizontal_popup_item, null, false); localTextView.setBackgroundResource(a.e.popup_menu_selector); if (i == 0) { localTextView.setPadding(k, 0, j, 0); } for (;;) { localTextView.setText(((MenuItem)this.Vtk.adRW.get(i)).getTitle()); localTextView.setOnClickListener(new View.OnClickListener() { public final void onClick(View paramAnonymousView) { AppMethodBeat.i(251895); com.tencent.mm.hellhoundlib.b.b localb = new com.tencent.mm.hellhoundlib.b.b(); localb.cH(paramAnonymousView); com.tencent.mm.hellhoundlib.a.a.c("com/tencent/mm/ui/widget/menu/MMPopupMenu$6", "android/view/View$OnClickListener", "onClick", "(Landroid/view/View;)V", this, localb.aYj()); if (a.b(a.this) != null) { a.b(a.this).onMMMenuItemSelected(a.a(a.this).getItem(i), i); } a.d(a.this).dismiss(); com.tencent.mm.hellhoundlib.a.a.a(this, "com/tencent/mm/ui/widget/menu/MMPopupMenu$6", "android/view/View$OnClickListener", "onClick", "(Landroid/view/View;)V"); AppMethodBeat.o(251895); } }); localLinearLayout.addView(localTextView); i += 1; break; if (i == this.Vtk.size() - 1) { localTextView.setPadding(j, 0, k, 0); } } } localLinearLayout.measure(View.MeasureSpec.makeMeasureSpec(0, 0), View.MeasureSpec.makeMeasureSpec(0, 0)); i = localLinearLayout.getMeasuredHeight(); this.agjm.setWidth(localLinearLayout.getMeasuredWidth() + bd.fromDPToPix(this.mContext, 24)); this.agjm.setContentView(localLinearLayout); if (((this.mContext instanceof Activity)) && (!((Activity)this.mContext).isFinishing())) { this.agjm.showAtLocation(this.aeMz, 0, paramInt1, paramInt2 - i); } AppMethodBeat.o(159480); } private void oW(int paramInt1, int paramInt2) { AppMethodBeat.i(251972); this.agjn = new v(this.mContext); this.agjn.setOnDismissListener(this); this.agjn.setWidth(-2); this.agjn.setHeight(-2); this.agjn.setFocusable(this.agjB); this.agjn.setOutsideTouchable(true); this.agjn.setAnimationStyle(a.j.PopCenterAnimation); this.agjn.setInputMethodMode(2); View localView = View.inflate(this.mContext, a.g.grid_popup_layout, null); localView.setLayoutParams(new LinearLayout.LayoutParams(-2, -2)); if (this.agjy > 0) { localObject = (LinearLayout)localView.findViewById(a.f.pop_bubble); ((LinearLayout)localObject).setMinimumWidth(this.agjy); ((LinearLayout)localObject).setGravity(1); } LinearLayout localLinearLayout1 = (LinearLayout)localView.findViewById(a.f.menu_line_one); LinearLayout localLinearLayout2 = (LinearLayout)localView.findViewById(a.f.menu_line_two); Object localObject = localView.findViewById(a.f.menu_divider); ImageView localImageView1 = (ImageView)localView.findViewById(a.f.cursor_iv); ImageView localImageView2 = (ImageView)localView.findViewById(a.f.cursor_iv_top); localLinearLayout1.setVisibility(0); localLinearLayout1.removeAllViews(); if (this.Vtk.size() > akmm) { localLinearLayout2.setVisibility(0); localLinearLayout2.removeAllViews(); ((View)localObject).setVisibility(0); } label547: label556: label988: label991: label994: for (;;) { final int i = 0; int j; int k; for (;;) { if (i < this.Vtk.size()) { localObject = null; if (this.agjF != null) { localObject = this.agjF.a(this.mContext, (MenuItem)this.Vtk.adRW.get(i)); } if (localObject != null) { break label988; } localObject = View.inflate(this.mContext, a.g.pop_grid_menu_item, null); WeImageView localWeImageView = (WeImageView)((View)localObject).findViewById(a.f.icon); TextView localTextView = (TextView)((View)localObject).findViewById(a.f.title); localWeImageView.setImageDrawable(((MenuItem)this.Vtk.adRW.get(i)).getIcon()); localTextView.setText(((MenuItem)this.Vtk.adRW.get(i)).getTitle()); if ((this.akil) && ((this.Vtk.adRW.get(i) instanceof t))) { j = ((t)this.Vtk.adRW.get(i)).iconColor; k = ((t)this.Vtk.adRW.get(i)).XXf; if (j != 0) { localWeImageView.setIconColor(j); } if (k != 0) { localTextView.setTextColor(k); } } label493: ((View)localObject).setOnClickListener(new View.OnClickListener() { public final void onClick(View paramAnonymousView) { AppMethodBeat.i(251892); com.tencent.mm.hellhoundlib.b.b localb = new com.tencent.mm.hellhoundlib.b.b(); localb.cH(paramAnonymousView); com.tencent.mm.hellhoundlib.a.a.c("com/tencent/mm/ui/widget/menu/MMPopupMenu$7", "android/view/View$OnClickListener", "onClick", "(Landroid/view/View;)V", this, localb.aYj()); if (a.b(a.this) != null) { a.b(a.this).onMMMenuItemSelected(a.a(a.this).getItem(i), i); } a.e(a.this).dismiss(); com.tencent.mm.hellhoundlib.a.a.a(this, "com/tencent/mm/ui/widget/menu/MMPopupMenu$7", "android/view/View$OnClickListener", "onClick", "(Landroid/view/View;)V"); AppMethodBeat.o(251892); } }); if (((t)this.Vtk.adRW.get(i)).adSc) { if (localLinearLayout2.getChildCount() < akmm) { localLinearLayout2.addView((View)localObject); } i += 1; continue; i = 0; if (i >= this.Vtk.size()) { break label991; } if (!((t)this.Vtk.getItem(i)).adSc) { break; } } } } for (i = 1;; i = 0) { if (i == 0) { break label994; } localLinearLayout2.setVisibility(0); localLinearLayout2.removeAllViews(); ((View)localObject).setVisibility(0); break; i += 1; break label556; if (localLinearLayout1.getChildCount() < akmm) { localLinearLayout1.addView((View)localObject); break label547; } if (localLinearLayout2.getChildCount() >= akmm) { break label547; } localLinearLayout2.addView((View)localObject); break label547; this.agjn.setContentView(localView); localView.measure(View.MeasureSpec.makeMeasureSpec(0, 0), View.MeasureSpec.makeMeasureSpec(0, 0)); int m = localView.getMeasuredHeight(); i = localView.getMeasuredWidth(); j = bd.fromDPToPix(this.mContext, 12); k = paramInt1 - (int)(i / 2.0F); if (k + i > this.agjq.widthPixels - j) { i = this.agjq.widthPixels - j - i; j = paramInt2 - m - bd.bs(this.mContext, a.d.Edge_0_5_A); if (j >= 0) { break label934; } j = this.aeMz.getHeight(); paramInt2 = bd.bs(this.mContext, a.d.Edge_0_5_A) + (j + paramInt2); localImageView2.setVisibility(0); localImageView1.setVisibility(8); localObject = (LinearLayout.LayoutParams)localImageView2.getLayoutParams(); ((LinearLayout.LayoutParams)localObject).leftMargin = (paramInt1 - i - bd.fromDPToPix(this.mContext, 7)); localImageView2.setLayoutParams((ViewGroup.LayoutParams)localObject); } for (paramInt1 = paramInt2;; paramInt1 = j) { if (this.Vtk.size() == 0) { localImageView1.setVisibility(8); localImageView2.setVisibility(8); } if (((this.mContext instanceof Activity)) && (!((Activity)this.mContext).isFinishing())) { this.agjn.showAtLocation(this.aeMz, 0, i, paramInt1); this.startTime = System.currentTimeMillis(); } AppMethodBeat.o(251972); return; i = k; if (k >= j) { break; } i = j; break; localImageView2.setVisibility(8); localImageView1.setVisibility(0); localObject = (LinearLayout.LayoutParams)localImageView1.getLayoutParams(); ((LinearLayout.LayoutParams)localObject).leftMargin = (paramInt1 - i - bd.fromDPToPix(this.mContext, 7)); localImageView1.setLayoutParams((ViewGroup.LayoutParams)localObject); } break label493; } } } private void oX(int paramInt1, int paramInt2) { AppMethodBeat.i(251983); this.agjo = new v(this.mContext); this.agjo.setOnDismissListener(this); this.agjo.setWidth(-2); this.agjo.setHeight(-2); this.agjo.setFocusable(true); this.agjo.setOutsideTouchable(true); this.agjo.setAnimationStyle(a.j.PopCenterAnimation); this.agjo.setInputMethodMode(2); View localView = View.inflate(this.mContext, a.g.text_style_popuo_layout, null); localView.setLayoutParams(new LinearLayout.LayoutParams(-2, -2)); LinearLayout localLinearLayout = (LinearLayout)localView.findViewById(a.f.menu_line); ImageView localImageView1 = (ImageView)localView.findViewById(a.f.cursor_iv); ImageView localImageView2 = (ImageView)localView.findViewById(a.f.cursor_iv_top); localLinearLayout.setVisibility(0); localLinearLayout.removeAllViews(); final int i = 0; if (i < this.Vtk.size()) { if (this.agjF == null) { break label634; } } label580: label634: for (Object localObject1 = this.agjF.a(this.mContext, (MenuItem)this.Vtk.adRW.get(i));; localObject1 = null) { Object localObject2 = localObject1; if (localObject1 == null) { localObject2 = View.inflate(this.mContext, a.g.pop_text_menu_item, null); ((TextView)((View)localObject2).findViewById(a.f.content_text)).setText(((MenuItem)this.Vtk.adRW.get(i)).getTitle()); } ((View)localObject2).setOnClickListener(new View.OnClickListener() { public final void onClick(View paramAnonymousView) { AppMethodBeat.i(251890); com.tencent.mm.hellhoundlib.b.b localb = new com.tencent.mm.hellhoundlib.b.b(); localb.cH(paramAnonymousView); com.tencent.mm.hellhoundlib.a.a.c("com/tencent/mm/ui/widget/menu/MMPopupMenu$8", "android/view/View$OnClickListener", "onClick", "(Landroid/view/View;)V", this, localb.aYj()); if (a.b(a.this) != null) { a.b(a.this).onMMMenuItemSelected(a.a(a.this).getItem(i), i); } a.f(a.this).dismiss(); com.tencent.mm.hellhoundlib.a.a.a(this, "com/tencent/mm/ui/widget/menu/MMPopupMenu$8", "android/view/View$OnClickListener", "onClick", "(Landroid/view/View;)V"); AppMethodBeat.o(251890); } }); if (localLinearLayout.getChildCount() < 5) { localLinearLayout.addView((View)localObject2); } i += 1; break; this.agjo.setContentView(localView); localView.measure(View.MeasureSpec.makeMeasureSpec(0, 0), View.MeasureSpec.makeMeasureSpec(0, 0)); int m = localView.getMeasuredHeight(); i = localView.getMeasuredWidth(); int j = bd.fromDPToPix(this.mContext, 12); int k = paramInt1 - (int)(i / 2.0F); if (k + i > this.agjq.widthPixels - j) { i = this.agjq.widthPixels - j - i; j = paramInt2 - m - bd.bs(this.mContext, a.d.Edge_0_5_A); if (j >= 0) { break label580; } j = this.aeMz.getHeight(); paramInt2 = bd.bs(this.mContext, a.d.Edge_0_5_A) + (j + paramInt2); localImageView2.setVisibility(0); localImageView1.setVisibility(8); localObject1 = (LinearLayout.LayoutParams)localImageView2.getLayoutParams(); ((LinearLayout.LayoutParams)localObject1).leftMargin = (paramInt1 - i - bd.fromDPToPix(this.mContext, 7)); localImageView2.setLayoutParams((ViewGroup.LayoutParams)localObject1); } for (paramInt1 = paramInt2;; paramInt1 = j) { if (this.Vtk.size() == 0) { localImageView1.setVisibility(8); localImageView2.setVisibility(8); } if (((this.mContext instanceof Activity)) && (!((Activity)this.mContext).isFinishing())) { this.agjo.showAtLocation(this.aeMz, 0, i, paramInt1); this.startTime = System.currentTimeMillis(); } AppMethodBeat.o(251983); return; i = k; if (k >= j) { break; } i = j; break; localImageView2.setVisibility(8); localImageView1.setVisibility(0); localObject1 = (LinearLayout.LayoutParams)localImageView1.getLayoutParams(); ((LinearLayout.LayoutParams)localObject1).leftMargin = (paramInt1 - i - bd.fromDPToPix(this.mContext, 7)); localImageView1.setLayoutParams((ViewGroup.LayoutParams)localObject1); } } } public final void a(View paramView, int paramInt1, long paramLong, View.OnCreateContextMenuListener paramOnCreateContextMenuListener, u.i parami, int paramInt2, int paramInt3) { AppMethodBeat.i(159477); this.GAC = parami; this.aeMz = paramView; jIw(); this.Vtk.clear(); parami = new AdapterView.AdapterContextMenuInfo(paramView, paramInt1, paramLong); paramOnCreateContextMenuListener.onCreateContextMenu(this.Vtk, paramView, parami); paramView = this.Vtk.adRW.iterator(); while (paramView.hasNext()) { ((t)paramView.next()).adSb = parami; } if ((paramInt2 == 0) && (paramInt3 == 0)) { cMz(); AppMethodBeat.o(159477); return; } fQ(paramInt2, paramInt3); AppMethodBeat.o(159477); } public final void a(View paramView, View.OnCreateContextMenuListener paramOnCreateContextMenuListener, u.i parami, int paramInt1, int paramInt2) { AppMethodBeat.i(159478); this.GAC = parami; this.aeMz = paramView; if ((!(paramView instanceof TextView)) && ((paramInt1 == 0) || (paramInt2 == 0))) { jIw(); } this.Vtk.clear(); paramOnCreateContextMenuListener.onCreateContextMenu(this.Vtk, paramView, null); if ((paramInt1 == 0) && (paramInt2 == 0)) { cMz(); AppMethodBeat.o(159478); return; } fQ(paramInt1, paramInt2); AppMethodBeat.o(159478); } public final void a(final View paramView, final u.f paramf, u.i parami) { AppMethodBeat.i(252082); this.aeMz = paramView; jIw(); this.GAC = parami; if ((paramView instanceof AbsListView)) { bc.v("MicroMsg.MMPopupMenu", "registerForPopupMenu AbsListView", new Object[0]); ((AbsListView)paramView).setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() { public final boolean onItemLongClick(AdapterView<?> paramAnonymousAdapterView, View paramAnonymousView, int paramAnonymousInt, long paramAnonymousLong) { AppMethodBeat.i(251899); a.a(a.this).clear(); bc.v("MicroMsg.MMPopupMenu", "registerForPopupMenu AbsListView long click", new Object[0]); paramAnonymousAdapterView = new AdapterView.AdapterContextMenuInfo(paramAnonymousView, paramAnonymousInt, paramAnonymousLong); paramf.OnCreateContextMMMenu(a.a(a.this), paramAnonymousView, paramAnonymousAdapterView); paramAnonymousView = a.a(a.this).adRW.iterator(); while (paramAnonymousView.hasNext()) { ((t)paramAnonymousView.next()).adSb = paramAnonymousAdapterView; } a.this.cMz(); AppMethodBeat.o(251899); return true; } }); AppMethodBeat.o(252082); return; } bc.v("MicroMsg.MMPopupMenu", "registerForPopupMenu normal view", new Object[0]); paramView.setOnLongClickListener(new View.OnLongClickListener() { public final boolean onLongClick(View paramAnonymousView) { AppMethodBeat.i(251902); com.tencent.mm.hellhoundlib.b.b localb = new com.tencent.mm.hellhoundlib.b.b(); localb.cH(paramAnonymousView); com.tencent.mm.hellhoundlib.a.a.c("com/tencent/mm/ui/widget/menu/MMPopupMenu$4", "android/view/View$OnLongClickListener", "onLongClick", "(Landroid/view/View;)Z", this, localb.aYj()); bc.v("MicroMsg.MMPopupMenu", "registerForPopupMenu normal view long click", new Object[0]); a.a(a.this).clear(); a.a(a.this, paramAnonymousView); paramf.OnCreateContextMMMenu(a.a(a.this), paramAnonymousView, null); paramAnonymousView = new int[2]; paramView.getLocationInWindow(paramAnonymousView); int i = paramAnonymousView[0] + (int)(paramView.getWidth() / 2.0F); int j = paramAnonymousView[1]; if ((i == 0) && (j == 0)) { a.this.cMz(); } for (;;) { com.tencent.mm.hellhoundlib.a.a.a(true, this, "com/tencent/mm/ui/widget/menu/MMPopupMenu$4", "android/view/View$OnLongClickListener", "onLongClick", "(Landroid/view/View;)Z"); AppMethodBeat.o(251902); return true; a.this.fQ(i, j); } } }); AppMethodBeat.o(252082); } public final void a(View paramView, u.f paramf, u.i parami, int paramInt1, int paramInt2) { AppMethodBeat.i(252090); this.GAC = parami; this.aeMz = paramView; if ((!(paramView instanceof TextView)) && ((paramInt1 == 0) || (paramInt2 == 0))) { jIw(); } this.Vtk.clear(); paramf.OnCreateContextMMMenu(this.Vtk, paramView, null); if ((paramInt1 == 0) && (paramInt2 == 0)) { cMz(); AppMethodBeat.o(252090); return; } fQ(paramInt1, paramInt2); AppMethodBeat.o(252090); } public final void b(View paramView, u.f paramf, u.i parami, int paramInt1, int paramInt2) { AppMethodBeat.i(252095); this.GAC = parami; this.aeMz = paramView; if ((!(paramView instanceof TextView)) && ((paramInt1 == 0) || (paramInt2 == 0))) { jIw(); } this.Vtk.clear(); paramf.OnCreateContextMMMenu(this.Vtk, paramView, null); if ((paramInt1 == 0) && (paramInt2 == 0)) { cMz(); AppMethodBeat.o(252095); return; } fQ(paramInt1, paramInt2); AppMethodBeat.o(252095); } public final void c(View paramView, final View.OnCreateContextMenuListener paramOnCreateContextMenuListener, u.i parami) { AppMethodBeat.i(159476); this.aeMz = paramView; jIw(); this.GAC = parami; if ((paramView instanceof AbsListView)) { bc.v("MicroMsg.MMPopupMenu", "registerForPopupMenu AbsListView", new Object[0]); ((AbsListView)paramView).setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() { public final boolean onItemLongClick(AdapterView<?> paramAnonymousAdapterView, View paramAnonymousView, int paramAnonymousInt, long paramAnonymousLong) { AppMethodBeat.i(159465); a.a(a.this).clear(); bc.v("MicroMsg.MMPopupMenu", "registerForPopupMenu AbsListView long click", new Object[0]); paramAnonymousAdapterView = new AdapterView.AdapterContextMenuInfo(paramAnonymousView, paramAnonymousInt, paramAnonymousLong); paramOnCreateContextMenuListener.onCreateContextMenu(a.a(a.this), paramAnonymousView, paramAnonymousAdapterView); paramAnonymousView = a.a(a.this).adRW.iterator(); while (paramAnonymousView.hasNext()) { ((t)paramAnonymousView.next()).adSb = paramAnonymousAdapterView; } a.this.cMz(); AppMethodBeat.o(159465); return true; } }); AppMethodBeat.o(159476); return; } bc.v("MicroMsg.MMPopupMenu", "registerForPopupMenu normal view", new Object[0]); paramView.setOnLongClickListener(new View.OnLongClickListener() { public final boolean onLongClick(View paramAnonymousView) { AppMethodBeat.i(159466); com.tencent.mm.hellhoundlib.b.b localb = new com.tencent.mm.hellhoundlib.b.b(); localb.cH(paramAnonymousView); com.tencent.mm.hellhoundlib.a.a.c("com/tencent/mm/ui/widget/menu/MMPopupMenu$2", "android/view/View$OnLongClickListener", "onLongClick", "(Landroid/view/View;)Z", this, localb.aYj()); bc.v("MicroMsg.MMPopupMenu", "registerForPopupMenu normal view long click", new Object[0]); a.a(a.this).clear(); a.a(a.this, paramAnonymousView); paramOnCreateContextMenuListener.onCreateContextMenu(a.a(a.this), paramAnonymousView, null); if ((paramAnonymousView.getTag(a.f.touch_loc) instanceof int[])) { paramAnonymousView = (int[])paramAnonymousView.getTag(a.f.touch_loc); if (paramAnonymousView == null) { a.this.cMz(); } } for (;;) { com.tencent.mm.hellhoundlib.a.a.a(true, this, "com/tencent/mm/ui/widget/menu/MMPopupMenu$2", "android/view/View$OnLongClickListener", "onLongClick", "(Landroid/view/View;)Z"); AppMethodBeat.o(159466); return true; a.this.fQ(paramAnonymousView[0], paramAnonymousView[1]); continue; a.this.cMz(); } } }); AppMethodBeat.o(159476); } public boolean cMz() { AppMethodBeat.i(186016); boolean bool = fQ(0, 0); AppMethodBeat.o(186016); return bool; } public boolean diW() { AppMethodBeat.i(159483); if (isShowing()) { if (this.aefY != null) { this.aefY.dismiss(); } AppMethodBeat.o(159483); return true; } if (jIu()) { if (this.agjm != null) { this.agjm.dismiss(); } AppMethodBeat.o(159483); return true; } if (jIv()) { if (this.agjn != null) { this.agjn.dismiss(); } AppMethodBeat.o(159483); return true; } AppMethodBeat.o(159483); return false; } public boolean fQ(int paramInt1, int paramInt2) { AppMethodBeat.i(159484); if (((this.aeMz != null) && (!this.aeMz.equals(this.Kqo))) || ((!GfH) && ((paramInt1 != 0) || (paramInt2 != 0)))) { qjs = paramInt1; qjt = paramInt2; } this.Kqo = null; int k = qjs; int n = qjt; GfH = false; if (this.agjq == null) { this.agjq = this.mContext.getResources().getDisplayMetrics(); } int j = k; int i; int m; if (this.aeMz != null) { int[] arrayOfInt = new int[2]; this.aeMz.getLocationOnScreen(arrayOfInt); i = k; if (k == 0) { i = arrayOfInt[0] + this.aeMz.getWidth() / 2; } m = arrayOfInt[1]; j = arrayOfInt[1] + this.aeMz.getHeight(); k = m; if (m < 0) { k = 0; } m = j; if (j > this.agjq.heightPixels) { m = this.agjq.heightPixels; } j = i; if (n != 0) {} } for (j = (k + m) / 2;; j = k) { bc.i("MicroMsg.MMPopupMenu", "show popMenu , xDown:%s, yDown:%s, showPointX:%s, showPointY:%s", new Object[] { Integer.valueOf(paramInt1), Integer.valueOf(paramInt2), Integer.valueOf(i), Integer.valueOf(j) }); if ((!isShowing()) || (!jIu()) || (!jIv())) { bool1 = oU(i, j); AppMethodBeat.o(159484); return bool1; } boolean bool1 = diW(); boolean bool2 = oU(i, j); AppMethodBeat.o(159484); return bool2 & bool1; k = n; i = j; } } public final boolean jIv() { AppMethodBeat.i(252102); if ((this.agjn != null) && (this.agjn.isShowing())) { AppMethodBeat.o(252102); return true; } AppMethodBeat.o(252102); return false; } public final int kMq() { AppMethodBeat.i(369640); if ((this.agjn != null) && (this.agjn.getContentView() != null)) { View localView = this.agjn.getContentView(); localView.measure(0, 0); int i = localView.getMeasuredHeight(); AppMethodBeat.o(369640); return i; } AppMethodBeat.o(369640); return 0; } public void onDismiss() { AppMethodBeat.i(159488); if (!this.agjr) { if (this.agjs == null) { break label51; } this.agjs.setSelected(false); } for (;;) { if (this.afLp != null) { this.afLp.onDismiss(); } AppMethodBeat.o(159488); return; label51: this.aeMz.setSelected(false); } } public void onItemClick(AdapterView<?> paramAdapterView, View paramView, int paramInt, long paramLong) { AppMethodBeat.i(252147); com.tencent.mm.hellhoundlib.b.b localb = new com.tencent.mm.hellhoundlib.b.b(); localb.cH(paramAdapterView); localb.cH(paramView); localb.sc(paramInt); localb.hB(paramLong); com.tencent.mm.hellhoundlib.a.a.c("com/tencent/mm/ui/widget/menu/MMPopupMenu", "android/widget/AdapterView$OnItemClickListener", "onItemClick", "(Landroid/widget/AdapterView;Landroid/view/View;IJ)V", this, localb.aYj()); com.tencent.mm.hellhoundlib.a.a.a(this, "com/tencent/mm/ui/widget/menu/MMPopupMenu", "android/widget/AdapterView$OnItemClickListener", "onItemClick", "(Landroid/widget/AdapterView;Landroid/view/View;IJ)V"); AppMethodBeat.o(252147); } public boolean onKey(View paramView, int paramInt, KeyEvent paramKeyEvent) { AppMethodBeat.i(252137); com.tencent.mm.hellhoundlib.b.b localb = new com.tencent.mm.hellhoundlib.b.b(); localb.cH(paramView); localb.sc(paramInt); localb.cH(paramKeyEvent); com.tencent.mm.hellhoundlib.a.a.c("com/tencent/mm/ui/widget/menu/MMPopupMenu", "android/view/View$OnKeyListener", "onKey", "(Landroid/view/View;ILandroid/view/KeyEvent;)Z", this, localb.aYj()); com.tencent.mm.hellhoundlib.a.a.a(false, this, "com/tencent/mm/ui/widget/menu/MMPopupMenu", "android/view/View$OnKeyListener", "onKey", "(Landroid/view/View;ILandroid/view/KeyEvent;)Z"); AppMethodBeat.o(252137); return false; } final class b extends BaseAdapter { private b() {} private String getItem(int paramInt) { AppMethodBeat.i(159471); String str = (String)((MenuItem)a.a(a.this).adRW.get(paramInt)).getTitle(); AppMethodBeat.o(159471); return str; } public final int getCount() { AppMethodBeat.i(159470); int i = a.a(a.this).size(); AppMethodBeat.o(159470); return i; } public final long getItemId(int paramInt) { return paramInt; } public final View getView(int paramInt, View paramView, ViewGroup paramViewGroup) { AppMethodBeat.i(159472); Object localObject = null; if (paramView == null) { paramViewGroup = (TextView)a.h(a.this).inflate(a.g.popup_submenu_item, paramViewGroup, false); } for (;;) { paramView = getItem(paramInt); if (paramViewGroup != null) { paramViewGroup.setTag(paramView); paramViewGroup.setText(paramView); paramViewGroup.setBackgroundResource(a.e.popup_menu_selector); } if ((a.i(a.this)) && (a.j(a.this) != 0)) { paramViewGroup.setTextColor(a.k(a.this).getResources().getColor(a.j(a.this))); } AppMethodBeat.o(159472); return paramViewGroup; paramViewGroup = localObject; if ((paramView instanceof TextView)) { paramViewGroup = (TextView)paramView; } } } } } /* Location: L:\local\mybackup\temp\qq_apk\com.tencent.mm\classes8.jar * Qualified Name: com.tencent.mm.ui.widget.b.a * JD-Core Version: 0.7.0.1 */
[ "98632993+tsuzcx@users.noreply.github.com" ]
98632993+tsuzcx@users.noreply.github.com
4378b152090cf7762dc88e7d2a24c712f010b65e
316e7b55e04379c5534f1ec5ade1e7855671051b
/Lindley.DesarrolloxCliente/src/lindley/desarrolloxcliente/ws/bean/ConsultarResumenResponse.java
ef77dc235e2be2a08a8d7c839d1ddffdc9a6166f
[]
no_license
jels1988/msonicdroid
5a4d118703b1b3449086a67f9f412ca5505f90e9
eb36329e537c4963e1f6842d81f3c179fc8670e1
refs/heads/master
2021-01-10T09:02:11.276309
2013-07-18T21:16:08
2013-07-18T21:16:08
44,779,314
0
0
null
null
null
null
UTF-8
Java
false
false
401
java
package lindley.desarrolloxcliente.ws.bean; import java.util.ArrayList; import lindley.desarrolloxcliente.to.ResumenValueTO; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import net.msonic.lib.ResponseBase; public class ConsultarResumenResponse extends ResponseBase { @Expose() @SerializedName("DAT") public ArrayList<ResumenValueTO> datos; }
[ "mzegarra@gmail.com" ]
mzegarra@gmail.com
098b735b9d969f50099100b2ed2ffd2897c83480
8ec981e516cd7254d53bdb225d53aad2c06ee7a2
/src/main/java/com/t248/lmf/crm/controller/ExploitController.java
6547b157e084c2c096a7f0fe4957644f2bb980ef
[]
no_license
2767274907/crm
5d728c4ace6e31d46a62cab5342e4ab04f5505e1
c5446e76c5d86df6d788ad7987e1cf0db53e76c6
refs/heads/master
2023-05-12T20:12:46.996859
2020-02-29T03:05:16
2020-02-29T03:05:16
243,885,521
3
0
null
2023-05-08T04:15:02
2020-02-29T01:36:54
HTML
UTF-8
Java
false
false
4,750
java
package com.t248.lmf.crm.controller; import com.t248.lmf.crm.entity.*; import com.t248.lmf.crm.repository.DictRepostitor; import com.t248.lmf.crm.service.ChanceService; import com.t248.lmf.crm.service.IUserService; 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.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; import javax.annotation.Resource; import javax.servlet.http.HttpSession; import java.util.Date; import java.util.HashMap; import java.util.Map; @Controller public class ExploitController { @Resource private ChanceService chanceService; @Resource private DictRepostitor dictRepostitor; @Resource private IUserService userService; @RequestMapping(value = "/exploit/list") public String list(@RequestParam(required = false) String chcCustName, @RequestParam(required = false) String chcLinkman, @RequestParam(required = false) String chcTitle, Model model, @RequestParam(required = false, defaultValue = "1") int pageIndex){ Sort sort = Sort.by(Sort.Direction.ASC,"chcId"); Pageable pageable = PageRequest.of(pageIndex-1,5,sort); Page<Chance> chancePager = chanceService.findChances("未分配","noteq",chcCustName,chcTitle,chcLinkman,pageable); model.addAttribute("chancePager",chancePager); model.addAttribute("chcCustName",chcCustName); model.addAttribute("chcLinkman",chcLinkman); model.addAttribute("chcTitle",chcTitle); return "exploit/list"; } @RequestMapping("/exploit/save") public String save(Plan plan, HttpSession session){ System.out.println(plan.getPlaTodo()); System.out.println(plan.getPlaChcId()); System.out.println(plan.getPlaDate()); chanceService.planSave(plan); // chanceService.save(chance); // return "forward:/exploit/list"; return "redirect:/exploit/list"; } @RequestMapping("/exploit/upd") public String upd(Long chcId,Model model){ Chance chance = chanceService.getChance(chcId); model.addAttribute("chance",chance); model.addAttribute("lv",dictRepostitor.findDictsByDictValue(chance.getChcClientGrade())); return "exploit/upd"; } @RequestMapping("/exploit/edit") public String edit(Long chcId,Model model){ Chance chance = chanceService.getChance(chcId); model.addAttribute("chance",chance); model.addAttribute("lv",dictRepostitor.findDictsByDictValue(chance.getChcClientGrade())); return "exploit/edit"; } @RequestMapping("/exploit/upd2") public String upd2(Long chcId,Model model){ Chance chance = chanceService.getChance(chcId); model.addAttribute("chance",chance); model.addAttribute("lv",dictRepostitor.findDictsByDictValue(chance.getChcClientGrade())); return "exploit/upd2"; } @RequestMapping("/plan/result") @ResponseBody public Object result(Long chcId,String tp){ Map<String,String> map = new HashMap<String,String>(); try{ Chance chance = chanceService.getChance(chcId); if (tp.trim().equals("t")){ System.out.println("成功"); Customer customer = new Customer(); customer.setCustNo("KH"+new Date().getTime()); customer.setCustName(chance.getChcCustName()); customer.setCustRegion(chance.getChcArea()); User user = userService.getUser(chance.getChcDueId()); customer.setUser(user); customer.setCustManagerName(user.getUsrName()); Dict dict = dictRepostitor.findDictsByDictValue(chance.getChcClientGrade()); customer.setCustLevel(Long.parseLong(dict.getDictValue())); customer.setCustLevelLabel(dict.getDictItem()); chanceService.saveCustomer(customer); map.put("flag","true"); }else if(tp.trim().equals("f")){ System.out.println("失败"); map.put("flag","false"); } chance.setChcStatus("已归档"); chanceService.save(chance); map.put("delResult","true"); }catch(Exception e){ e.printStackTrace(); map.put("delResult","false"); } return map; } }
[ "2767274907@qq.com" ]
2767274907@qq.com
060d17012a7d0a3488a5f9ccc9c53da02cd80e28
d5a8ce3cab92fe40dd0690ae2e22738a3d681cfb
/NoteDao.java
d9b78371d31d313e7912528968b46d16d6667cba
[]
no_license
kaito1412-1102/MVVM
40948b0c583ba699b2728b8de19d9ffbb711f3b1
5e7cd83d194ca1360f9f339d9f2420de960455a2
refs/heads/main
2023-06-02T03:13:05.148463
2021-06-17T09:10:37
2021-06-17T09:10:37
377,767,484
0
0
null
null
null
null
UTF-8
Java
false
false
607
java
package com.example.mvvmdemo.databse; import com.example.mvvmdemo.Note; import java.util.List; import androidx.lifecycle.LiveData; import androidx.room.Dao; import androidx.room.Delete; import androidx.room.Insert; import androidx.room.Query; import androidx.room.Update; @Dao public interface NoteDao { @Insert void insert(Note note); @Update void update(Note note); @Delete void delete(Note note); @Query("DELETE FROM note_table") void deleteAllNotes(); @Query("SELECT * FROM note_table") LiveData<List<Note>> getAllNotes(); }
[ "noreply@github.com" ]
kaito1412-1102.noreply@github.com
99b4eadfa170a6e1c05bfbf338d4f85db483400b
1fa032bf38f549ad06456f07f2d80ff1ba525ffb
/src/main/java/com/opennetwork/secureim/websocket/session/WebSocketSessionContextValueFactoryProvider.java
d600d1f8b54847751502ae1a83fd185b82785859
[]
no_license
opennetworkproject/secure-im-server
39beabca6da5a18949bda85591dfcb3034e89531
40efbe6b17b1be480ed016de0fd8d0bad9113744
refs/heads/master
2021-05-10T18:50:47.421020
2018-01-30T15:34:26
2018-01-30T15:34:26
118,135,784
0
0
null
null
null
null
UTF-8
Java
false
false
2,766
java
package com.opennetwork.secureim.websocket.session; import org.glassfish.hk2.api.InjectionResolver; import org.glassfish.hk2.api.ServiceLocator; import org.glassfish.hk2.api.TypeLiteral; import org.glassfish.hk2.utilities.binding.AbstractBinder; import org.glassfish.jersey.server.internal.inject.AbstractContainerRequestValueFactory; import org.glassfish.jersey.server.internal.inject.AbstractValueFactoryProvider; import org.glassfish.jersey.server.internal.inject.MultivaluedParameterExtractorProvider; import org.glassfish.jersey.server.internal.inject.ParamInjectionResolver; import org.glassfish.jersey.server.model.Parameter; import org.glassfish.jersey.server.spi.internal.ValueFactoryProvider; import com.opennetwork.secureim.websocket.servlet.WebSocketServletRequest; import javax.inject.Inject; import javax.inject.Singleton; import java.security.Principal; @Singleton public class WebSocketSessionContextValueFactoryProvider extends AbstractValueFactoryProvider { @Inject public WebSocketSessionContextValueFactoryProvider(MultivaluedParameterExtractorProvider mpep, ServiceLocator injector) { super(mpep, injector, Parameter.Source.UNKNOWN); } @Override public AbstractContainerRequestValueFactory<WebSocketSessionContext> createValueFactory(Parameter parameter) { if (parameter.getAnnotation(WebSocketSession.class) == null) { return null; } return new AbstractContainerRequestValueFactory<WebSocketSessionContext>() { public WebSocketSessionContext provide() { Principal principal = getContainerRequest().getSecurityContext().getUserPrincipal(); if (principal == null) { throw new IllegalStateException("Cannot inject a custom principal into unauthenticated request"); } if (!(principal instanceof WebSocketServletRequest.ContextPrincipal)) { throw new IllegalArgumentException("Cannot inject a non-WebSocket AuthPrincipal into request"); } return ((WebSocketServletRequest.ContextPrincipal)principal).getContext(); } }; } @Singleton private static class WebSocketSessionInjectionResolver extends ParamInjectionResolver<WebSocketSession> { public WebSocketSessionInjectionResolver() { super(WebSocketSessionContextValueFactoryProvider.class); } } public static class Binder extends AbstractBinder { public Binder() { } @Override protected void configure() { bind(WebSocketSessionContextValueFactoryProvider.class).to(ValueFactoryProvider.class).in(Singleton.class); bind(WebSocketSessionInjectionResolver.class).to(new TypeLiteral<InjectionResolver<WebSocketSession>>() { }).in(Singleton.class); } } }
[ "omitvoid@outlook.com" ]
omitvoid@outlook.com
2fb2b4adb15c8abb5701b67dd26c41d5b489c7bc
3fc9d18f5cfccb07ae475563342487134f221fb6
/app/src/main/java/hightecit/andalus/kuwait/model/DrawerEnum.java
1aecd3bfa7d64f2d9b55a6eb148d37bdbcbcb6d1
[]
no_license
ShabanaKhatri/Andalus
f72ac8d0cca680f1587de4c19c88b094fdc605e1
0f53db5701db3dc6e699cad9122ff44f4ab1b993
refs/heads/master
2021-07-16T04:28:38.072473
2017-10-24T07:37:48
2017-10-24T07:37:48
108,093,065
0
0
null
null
null
null
UTF-8
Java
false
false
124
java
package hightecit.andalus.kuwait.model; /** * Created by HITSPL on 6/1/2017. */ public enum DrawerEnum { Settings }
[ "parth.hightecit@hotmail.com" ]
parth.hightecit@hotmail.com
24cb64f6ee7ea451033986be66ac82c1e9a5cb01
bc02af4745d97a227602b7e1fc79c7cb0bd535fd
/server-192/src/main/java/com/ForeSee/ForeSee/util/JedisUtil_113.java
202aa77d9dfb8646fe378e19cb4b0609fdd2cf72
[]
no_license
zhongshsh/ForeSee_BackEnd
d143b98e576028b256fe7dff491bd1cae9b081da
b8c44475351a871dedfadbdb81a158c16c934149
refs/heads/master
2023-08-18T17:19:21.637341
2021-10-10T02:54:49
2021-10-10T02:54:49
343,775,036
1
0
null
2021-09-30T06:49:24
2021-03-02T12:57:54
Java
UTF-8
Java
false
false
1,256
java
package com.ForeSee.ForeSee.util; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.stereotype.Component; import redis.clients.jedis.Jedis; import redis.clients.jedis.JedisPool; import redis.clients.jedis.JedisPoolConfig; /** * @author Zhongshsh * @ClassName JedisUtil_113 * @Description JedisPool配置以及连接 */ public class JedisUtil_113 { public JedisUtil_113(){ } public JedisPool initPoll_113(){ JedisPoolConfig jedisPoolConfig=new JedisPoolConfig(); jedisPoolConfig.setMaxTotal(1000); jedisPoolConfig.setMaxIdle(100); jedisPoolConfig.setMinIdle(0); jedisPoolConfig.setTestOnBorrow(true); jedisPoolConfig.setTestOnCreate(false); jedisPoolConfig.setTestOnReturn(true); jedisPoolConfig.setTestWhileIdle(true); jedisPoolConfig.setMaxWaitMillis(10*1000); return new JedisPool(jedisPoolConfig,"192.168.1.113",6479,3000,"nopassword"); } JedisPool jedisPool_113; public Jedis getClient_113(){ jedisPool_113 = initPoll_113(); return jedisPool_113.getResource(); } }
[ "zhongshsh5@mail2.sysu.edu.cn" ]
zhongshsh5@mail2.sysu.edu.cn
d6fe08f7bd469294149809914abfacaa9b8a5675
1e76ee0ca852a146d3ac7a0e6f70bdb957c339ca
/src/main/java/org/scd/controller/LocationController.java
4d86b0975073300142bc209eb2fca9c62f9eb104
[]
no_license
tomoss/scd_spring_server_location_app
3d4f1b8e55301fdc4ca161c4cf8fd10d778c7776
d445316929d995e446f47d4f1f9d2a9a24882056
refs/heads/master
2020-04-02T02:21:58.680829
2019-03-05T17:02:50
2019-03-05T17:02:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,959
java
package org.scd.controller; import org.scd.config.exception.BusinessException; import org.scd.model.Location; import org.scd.model.dto.DateDTO; import org.scd.model.dto.LocationDTO; import org.scd.model.security.CustomUserDetails; import org.scd.service.LocationService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpHeaders; import org.springframework.http.ResponseEntity; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.web.bind.annotation.*; import java.util.List; @CrossOrigin(origins = "http://localhost:51071") @RestController() @RequestMapping("/locations") public class LocationController { @Autowired private LocationService locationService; @PostMapping(path = "/add") public ResponseEntity<Location> addLocation(@RequestBody final LocationDTO locationDTO) throws BusinessException{ final CustomUserDetails userPrincipal = (CustomUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); return ResponseEntity.ok(locationService.addLocation(userPrincipal, locationDTO)); } @GetMapping(path = "/{id}") public ResponseEntity<Location> getLocation(@PathVariable final Long id) throws BusinessException{ final CustomUserDetails userPrincipal = (CustomUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); return ResponseEntity.ok(locationService.findLocationById(userPrincipal,id)); } @PutMapping(path = "/{id}") public ResponseEntity<Location> updateLocation(@PathVariable final Long id,@RequestBody LocationDTO locationDTO) throws BusinessException{ final CustomUserDetails userPrincipal = (CustomUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); return ResponseEntity.ok(locationService.updateLocationById(userPrincipal,id,locationDTO)); } @DeleteMapping(path = "/{id}") public ResponseEntity deleteLocation(@PathVariable final Long id) throws BusinessException{ final CustomUserDetails userPrincipal = (CustomUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); locationService.deleteLocationById(userPrincipal,id); return ResponseEntity.noContent().build(); } @GetMapping(path = "/me") public ResponseEntity<List<Location>> getLocations() throws BusinessException{ final CustomUserDetails userPrincipal = (CustomUserDetails) SecurityContextHolder.getContext().getAuthentication().getPrincipal(); return ResponseEntity.ok(locationService.getLocationsByUser(userPrincipal)); } @PostMapping(path = "/all/{id}") public ResponseEntity<List<Location>> getFilteredLocations(@PathVariable final Long id, @RequestBody DateDTO dateDTO) throws BusinessException{ return ResponseEntity.ok(locationService.getFilteredLocations(id,dateDTO)); } }
[ "ionut.tomoss@gmail.com" ]
ionut.tomoss@gmail.com
8f5782e18cc643878551e8e9aa78c51467da8c52
ae5eb1a38b4d22c82dfd67c86db73592094edc4b
/project69/src/main/java/org/gradle/test/performance/largejavamultiproject/project69/p349/Production6990.java
470896a043428c1606df072043ca86e74c9b5235
[]
no_license
big-guy/largeJavaMultiProject
405cc7f55301e1fd87cee5878a165ec5d4a071aa
1cd6a3f9c59e9b13dffa35ad27d911114f253c33
refs/heads/main
2023-03-17T10:59:53.226128
2021-03-04T01:01:39
2021-03-04T01:01:39
344,307,977
0
0
null
null
null
null
UTF-8
Java
false
false
1,887
java
package org.gradle.test.performance.largejavamultiproject.project69.p349; public class Production6990 { private String property0; public String getProperty0() { return property0; } public void setProperty0(String value) { property0 = value; } private String property1; public String getProperty1() { return property1; } public void setProperty1(String value) { property1 = value; } private String property2; public String getProperty2() { return property2; } public void setProperty2(String value) { property2 = value; } private String property3; public String getProperty3() { return property3; } public void setProperty3(String value) { property3 = value; } private String property4; public String getProperty4() { return property4; } public void setProperty4(String value) { property4 = value; } private String property5; public String getProperty5() { return property5; } public void setProperty5(String value) { property5 = value; } private String property6; public String getProperty6() { return property6; } public void setProperty6(String value) { property6 = value; } private String property7; public String getProperty7() { return property7; } public void setProperty7(String value) { property7 = value; } private String property8; public String getProperty8() { return property8; } public void setProperty8(String value) { property8 = value; } private String property9; public String getProperty9() { return property9; } public void setProperty9(String value) { property9 = value; } }
[ "sterling.greene@gmail.com" ]
sterling.greene@gmail.com
351813ea1e9b4e14ec8c92c4d7f8c3ede7f0403e
39d5ce2aff8775220e7177e4f100f3b5f54bee01
/src/costanzo/MysteryBox.java
c2c559bb9339fffce4f30764692c95acb5cc6db1
[]
no_license
AndrewCostanzo/Zombies
0da5224abd95e8195961d2a3f002279c643e9755
8f8cd5750dddd4ee68f002fef5f7ceb4155a1b67
refs/heads/master
2022-11-21T17:47:03.727259
2020-07-28T21:14:29
2020-07-28T21:14:29
283,298,721
0
0
null
null
null
null
UTF-8
Java
false
false
1,375
java
package costanzo; import org.bukkit.Material; import org.bukkit.entity.Player; import org.bukkit.inventory.Inventory; import org.bukkit.inventory.ItemStack; import org.bukkit.scheduler.BukkitRunnable; public class MysteryBox extends BukkitRunnable { public static Utils util = new Utils(); public static Inventory inv; public static ItemStack item; public MysteryBox(Inventory inv){ this.inv = inv; } public void run(){ Player p = Main.getInstance().box.p; if(Main.getInstance().box.p.getName() == null){ return; }else{ //Inventory inv = Main.getInstance().box.box.get(p.getInventory()); if(Main.getInstance().box.cycle == 0){ item = new ItemStack(Material.WOOD_AXE,1); inv.setItem(4,item); Main.getInstance().box.cycle++; }else{ item = new ItemStack(Material.WOOD_SWORD,1); inv.setItem(4,item); Main.getInstance().box.cycle--; } //add more items here ( no hassle! ) } Main.getInstance().box.mboxCounter++; if(Main.getInstance().box.mboxCounter > 5){ p.getInventory().addItem(item); p.closeInventory(); this.cancel(); Main.getInstance().box.mboxCounter=0; } } }
[ "atc1512@rit.edu" ]
atc1512@rit.edu
63d77463ff275d9a9285811f9e392e08ade06b02
24baaa1b687a4703ddd4dbd48a55e39fdc039bde
/auth/src/main/java/com/auth/config/AuthorizationServerConfig.java
acff3a8aa773d924ba365991a19962db65e3b116
[]
no_license
happyzwh/oauth2
924220c0106a895b06b1da46efc40c1bcdbca925
4ca03d89fea1bfeb007c0e7b7057776f1205f732
refs/heads/main
2023-02-20T19:45:34.389171
2021-01-22T08:57:43
2021-01-22T08:57:43
331,830,517
0
0
null
null
null
null
UTF-8
Java
false
false
5,750
java
package com.auth.config; import com.auth.jwt.JwtTokenEnhancer; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Primary; import org.springframework.http.HttpMethod; import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.core.userdetails.UserDetailsService; import org.springframework.security.oauth2.config.annotation.builders.JdbcClientDetailsServiceBuilder; import org.springframework.security.oauth2.config.annotation.configurers.ClientDetailsServiceConfigurer; import org.springframework.security.oauth2.config.annotation.web.configuration.AuthorizationServerConfigurerAdapter; import org.springframework.security.oauth2.config.annotation.web.configuration.EnableAuthorizationServer; import org.springframework.security.oauth2.config.annotation.web.configurers.AuthorizationServerEndpointsConfigurer; import org.springframework.security.oauth2.config.annotation.web.configurers.AuthorizationServerSecurityConfigurer; import org.springframework.security.oauth2.provider.ClientDetailsService; import org.springframework.security.oauth2.provider.token.DefaultTokenServices; import org.springframework.security.oauth2.provider.token.TokenEnhancer; import org.springframework.security.oauth2.provider.token.TokenEnhancerChain; import org.springframework.security.oauth2.provider.token.TokenStore; import org.springframework.security.oauth2.provider.token.store.JwtAccessTokenConverter; import javax.annotation.Resource; import javax.sql.DataSource; import java.util.Arrays; @Configuration @EnableAuthorizationServer public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter { @Autowired private AuthenticationManager authenticationManager; @Autowired private UserDetailsService userDetailsService; @Autowired private DataSource dataSource; @Resource private TokenStore redisTokenStore; @Override public void configure(AuthorizationServerSecurityConfigurer security) throws Exception { security // 开启/oauth/token_key验证端口无权限访问 .tokenKeyAccess("permitAll()") // 开启/oauth/check_token验证端口认证权限访问 .checkTokenAccess("isAuthenticated()") // 开启后请求需要带上 client_id client_secret 不需要 Basic 请求头 // 默认请求头 Basic Base64(client_id+client_secret) .allowFormAuthenticationForClients(); } @Override public void configure(ClientDetailsServiceConfigurer clients) throws Exception { clients.withClientDetails(clientDetails()); } @Bean public ClientDetailsService clientDetails() throws Exception{ return new JdbcClientDetailsServiceBuilder().dataSource(dataSource).build(); } @Override public void configure(AuthorizationServerEndpointsConfigurer endpoints) throws Exception { // endpoints.accessTokenConverter(jwtAccessTokenConverter()); // endpoints.tokenStore(jwtTokenStore()); // endpoints.tokenServices(defaultTokenServices()); // 自定义jwt生成token方式 TokenEnhancerChain tokenEnhancerChain = new TokenEnhancerChain(); tokenEnhancerChain.setTokenEnhancers(Arrays.asList(tokenEnhancer(), jwtAccessTokenConverter())); endpoints.authenticationManager(authenticationManager) .userDetailsService(userDetailsService) .allowedTokenEndpointRequestMethods(HttpMethod.GET, HttpMethod.POST) //指定token存储位置 .tokenStore(redisTokenStore) .accessTokenConverter(jwtAccessTokenConverter()) // 自定义jwt生成token方式 .tokenEnhancer(tokenEnhancerChain) // 配置TokenServices参数 如果需要默认的uuid就不用注释了 .tokenServices(defaultTokenServices()); // .reuseRefreshTokens(false); //自定义异常处理 // .exceptionTranslator(new SophiaWebResponseExceptionTranslator()); } // 生成token的处理 @Primary @Bean public DefaultTokenServices defaultTokenServices() { DefaultTokenServices tokenServices = new DefaultTokenServices(); tokenServices.setTokenStore(redisTokenStore); // 是否支持 refreshToken tokenServices.setSupportRefreshToken(true); // 是否复用 refreshToken tokenServices.setReuseRefreshToken(true); tokenServices.setTokenEnhancer(tokenEnhancer()); // token有效期自定义设置,默认12小时 tokenServices.setAccessTokenValiditySeconds(60 * 60 * 12); //默认30天,这里修改 tokenServices.setRefreshTokenValiditySeconds(60 * 60 * 24 * 7); return tokenServices; } // @Bean // public JwtTokenStore jwtTokenStore() { // return new JwtTokenStore(jwtAccessTokenConverter()); // } // @Bean // RedisTokenStore redisTokenStore(){ // return new RedisTokenStore(redisConnectionFactory); // } @Bean public JwtAccessTokenConverter jwtAccessTokenConverter() { JwtAccessTokenConverter jwtAccessTokenConverter = new JwtAccessTokenConverter(); jwtAccessTokenConverter.setSigningKey("example"); // Sets the JWT signing key return jwtAccessTokenConverter; } /** * 注入自定义token生成方式(jwt) */ @Bean public TokenEnhancer tokenEnhancer() { return new JwtTokenEnhancer(); } }
[ "zhangwenhui@formssi.com" ]
zhangwenhui@formssi.com
10f0a99364accc73573b8eed774e3169084189d9
e5a73967ba1719a8108bea10ada2c19da589cfc1
/src/main/java/ch/rasc/extdirectspring/demo/are/AreService.java
6dc12e9597190361f635fb2e4c2294da1edd3387
[]
no_license
twodiefor/extdirectspring-demo
a24a037d7fe29f8e638336ec0a83434ac9f43461
dcca7ab386fd69078f5c2b40283c25b66a4e18ad
refs/heads/master
2021-01-15T10:20:34.793312
2014-03-18T15:26:04
2014-03-18T15:26:04
null
0
0
null
null
null
null
UTF-8
Java
false
false
8,705
java
/** * Copyright 2010-2013 Ralph Schaer <ralphschaer@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package ch.rasc.extdirectspring.demo.are; import java.io.IOException; import java.io.OutputStream; import java.math.BigDecimal; import java.nio.charset.StandardCharsets; import java.util.Collection; import java.util.List; import javax.servlet.http.HttpServletResponse; import org.joda.time.LocalDate; import org.joda.time.format.DateTimeFormat; import org.joda.time.format.DateTimeFormatter; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import ch.ralscha.extdirectspring.annotation.ExtDirectMethod; import ch.ralscha.extdirectspring.annotation.ExtDirectMethodType; import ch.ralscha.extdirectspring.bean.ExtDirectStoreReadRequest; import ch.ralscha.extdirectspring.filter.Filter; import ch.ralscha.extdirectspring.filter.StringFilter; import ch.rasc.extclassgenerator.ModelGenerator; import ch.rasc.extclassgenerator.OutputFormat; import com.google.common.base.Predicate; import com.google.common.base.Predicates; import com.google.common.collect.Collections2; import com.google.common.collect.ImmutableCollection; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; @Controller public class AreService { @ExtDirectMethod(value = ExtDirectMethodType.STORE_READ, group = "are") public ImmutableCollection<Company> read(@RequestParam(required = false) String coId, ExtDirectStoreReadRequest edsRequest) { if (coId != null) { return ImmutableList.of(companyDb.get(coId)); } if (!edsRequest.getFilters().isEmpty()) { List<Predicate<Company>> predicates = getPredicates(edsRequest.getFilters()); return ImmutableList.copyOf(Collections2.filter(companyDb.values(), Predicates.and(predicates))); } return companyDb.values(); } @ExtDirectMethod(value = ExtDirectMethodType.STORE_READ, group = "are") public ImmutableCollection<History> historyRead(ExtDirectStoreReadRequest request) { StringFilter filter = request.getFirstFilterForField("companyId"); if (filter != null) { return ImmutableList.copyOf(companyDb.get(filter.getValue()).getHistory()); } ImmutableList.Builder<History> allHistory = ImmutableList.builder(); for (Company company : companyDb.values()) { allHistory.addAll(company.getHistory()); } return allHistory.build(); } private static ImmutableMap<String, Company> companyDb; { ImmutableMap.Builder<String, Company> builder = ImmutableMap.builder(); Company c = new Company("3m Co"); builder.put(c.getCoId(), c); c = new Company("Alcoa Inc"); builder.put(c.getCoId(), c); c = new Company("Altria Group Inc"); builder.put(c.getCoId(), c); c = new Company("American Express Company"); builder.put(c.getCoId(), c); c = new Company("American International Group, Inc."); builder.put(c.getCoId(), c); c = new Company("Boeing Co."); builder.put(c.getCoId(), c); c = new Company("Caterpillar Inc."); builder.put(c.getCoId(), c); c = new Company("Citigroup, Inc."); builder.put(c.getCoId(), c); c = new Company("E.I. du Pont de Nemours and Company"); builder.put(c.getCoId(), c); c = new Company("Exxon Mobil Corp"); builder.put(c.getCoId(), c); c = new Company("General Electric Company"); builder.put(c.getCoId(), c); c = new Company("General Motors Corporation"); builder.put(c.getCoId(), c); c = new Company("Hewlett-Packard Co."); builder.put(c.getCoId(), c); c = new Company("Honeywell Intl Inc"); builder.put(c.getCoId(), c); c = new Company("Intel Corporation"); builder.put(c.getCoId(), c); c = new Company("International Business Machines"); builder.put(c.getCoId(), c); c = new Company("Johnson & Johnson"); builder.put(c.getCoId(), c); c = new Company("JP Morgan & Chase & Co"); builder.put(c.getCoId(), c); c = new Company("McDonald Corporation"); builder.put(c.getCoId(), c); c = new Company("Merck & Co., Inc."); builder.put(c.getCoId(), c); c = new Company("Microsoft Corporation"); builder.put(c.getCoId(), c); c = new Company("Pfizer Inc"); builder.put(c.getCoId(), c); c = new Company("The Coca-Cola Company"); builder.put(c.getCoId(), c); c = new Company("The Home Depot, Inc."); builder.put(c.getCoId(), c); c = new Company("The Procter & Gamble Company"); builder.put(c.getCoId(), c); c = new Company("United Technologies Corporation"); builder.put(c.getCoId(), c); c = new Company("Verizon Communications"); builder.put(c.getCoId(), c); c = new Company("Wal-Mart Stores, Inc."); builder.put(c.getCoId(), c); companyDb = builder.build(); } @RequestMapping({ "/extjs42/associationrowexpander/models.js", "/extjs41/associationrowexpander/models.js" }) public void models(HttpServletResponse response) throws IOException { String company = ModelGenerator.generateJavascript(Company.class, OutputFormat.EXTJS4, false); String history = ModelGenerator.generateJavascript(History.class, OutputFormat.EXTJS4, false); byte[] code = (company + history).getBytes(StandardCharsets.UTF_8); response.setContentType("application/javascript"); response.setCharacterEncoding(StandardCharsets.UTF_8.name()); response.setContentLength(code.length); @SuppressWarnings("resource") OutputStream out = response.getOutputStream(); out.write(code); } public List<Predicate<Company>> getPredicates(Collection<Filter> filters) { List<Predicate<Company>> predicates = Lists.newArrayList(); for (Filter filter : filters) { if (filter.getField().equals("company")) { predicates.add(new CompanyPredicate(((StringFilter) filter).getValue())); } else if (filter.getField().equals("price")) { predicates.add(new PricePredicate(((StringFilter) filter).getValue())); } else if (filter.getField().equals("change")) { predicates.add(new ChangePredicate(((StringFilter) filter).getValue())); } else if (filter.getField().equals("pctChange")) { predicates.add(new PctChangePredicate(((StringFilter) filter).getValue())); } else if (filter.getField().equals("lastChange")) { predicates.add(new LastChangePredicate(((StringFilter) filter).getValue())); } } return predicates; } private static class CompanyPredicate implements Predicate<Company> { private final String value; CompanyPredicate(String value) { this.value = value; } @Override public boolean apply(Company company) { return company.getCompany().toLowerCase().startsWith(value.trim().toLowerCase()); } } private static class PricePredicate implements Predicate<Company> { private final BigDecimal value; PricePredicate(String value) { this.value = new BigDecimal(value); } @Override public boolean apply(Company company) { return company.getPrice().compareTo(value) == 0; } } private static class ChangePredicate implements Predicate<Company> { private final BigDecimal value; ChangePredicate(String value) { this.value = new BigDecimal(value); } @Override public boolean apply(Company company) { return company.getChange().compareTo(value) == 0; } } private static class PctChangePredicate implements Predicate<Company> { private final BigDecimal value; PctChangePredicate(String value) { this.value = new BigDecimal(value); } @Override public boolean apply(Company company) { return company.getPctChange().compareTo(value) == 0; } } private static class LastChangePredicate implements Predicate<Company> { private final DateTimeFormatter formatter1 = DateTimeFormat.forPattern("MM/dd/yyyy"); private final DateTimeFormatter formatter2 = DateTimeFormat.forPattern("yyy-MM-dd"); private final LocalDate value; LastChangePredicate(String value) { if (value.length() > 10) { this.value = LocalDate.parse(value.substring(0, 10), formatter2); } else { this.value = LocalDate.parse(value, formatter1); } } @Override public boolean apply(Company company) { return company.getLastChange().toLocalDate().compareTo(value) == 0; } } }
[ "ralphschaer@gmail.com" ]
ralphschaer@gmail.com
65359c5e2e554b4dc5b0b2cbbd68f2112668bbca
f1d20d6c7e6ec5ed491274fcc11e74bb010c57d3
/company-central-client/src/main/java/com/ihappy/partner/domain/dto/request/partner/AddInvateRegisterPartnerReqDTO.java
1c78788f8038cc417fcf03538c9ee3321823aaa7
[]
no_license
P79N6A/company-central
79273c8e90732cf73f2f8b08c006654809e08736
f1a83f62a5cf41f8bfcf79c708a54d736fb1a46b
refs/heads/master
2020-04-12T02:41:38.769868
2018-12-18T07:45:31
2018-12-18T07:45:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,311
java
package com.ihappy.partner.domain.dto.request.partner; import com.ihappy.partner.exception.PartnerException; import com.ihappy.company.common.enumtype.CompanyErrorCodeEnum; import com.ihappy.gateway.dto.ICallRequestBaseDTO; import com.ihappy.partner.common.enumtype.PartnerErrorCodeEnum; import java.util.Date; /** * Created by sunjd on 2018/6/12. * 添加邀请注册的 供应商/客户 */ public class AddInvateRegisterPartnerReqDTO extends ICallRequestBaseDTO { private static final long serialVersionUID = -4152529590227121069L; /** * 发起邀请公司di */ private Long compId; /** * 接受邀请注册公司id */ private Long partnerCompId; /** * 0、供应商 1、客户 2、零售会员 */ private Integer partnerType; /** * 被邀请注册公司手机号 */ private String registerCompanyMobile; /** * 伙伴名称 */ private String partnerName; /** * 消息发送用户 */ private Long receiveUserId; /** * 1.已存在(不需要设置密码)2.不存在(密码必传) */ private Integer registType; public Integer getRegistType() { return registType; } public void setRegistType(Integer registType) { this.registType = registType; } public Long getReceiveUserId() { return receiveUserId; } public void setReceiveUserId(Long receiveUserId) { this.receiveUserId = receiveUserId; } public Long getCompId() { return compId; } public void setCompId(Long compId) { this.compId = compId; } public Long getPartnerCompId() { return partnerCompId; } public void setPartnerCompId(Long partnerCompId) { this.partnerCompId = partnerCompId; } public Integer getPartnerType() { return partnerType; } public void setPartnerType(Integer partnerType) { this.partnerType = partnerType; } public String getRegisterCompanyMobile() { return registerCompanyMobile; } public void setRegisterCompanyMobile(String registerCompanyMobile) { this.registerCompanyMobile = registerCompanyMobile; } public String getPartnerName() { return partnerName; } public void setPartnerName(String partnerName) { this.partnerName = partnerName; } @Override public void validation() { if (compId == null) { throw new PartnerException(CompanyErrorCodeEnum. COMPANY_ID_IS_NULL.getErrCode(), CompanyErrorCodeEnum.COMPANY_ID_IS_NULL.getErrMsg()); } if (partnerCompId == null) { throw new PartnerException(PartnerErrorCodeEnum. PARTNER_COMPANY_ID_IS_NULL.getErrCode(), PartnerErrorCodeEnum.PARTNER_COMPANY_ID_IS_NULL.getErrMsg()); } if (partnerType == null){ throw new PartnerException(PartnerErrorCodeEnum. PARTNER_TYPE_IS_NULL.getErrCode(), PartnerErrorCodeEnum.PARTNER_TYPE_IS_NULL.getErrMsg()); } if (registType == null){ registType = 1; } setCreateTime(new Date()); setUpdateTime(new Date()); } }
[ "zhangmengdan@ihappy.net.cn" ]
zhangmengdan@ihappy.net.cn
e0a563a7041894d19cb4857111403837a2316bb8
2bc275688b993ae74cb8450ff508238463007cd7
/src/main/java/com/hqw/demo/config/IntercepterConfig.java
0715fb4f2b6d0333fffff4bca9362cb20e734598
[]
no_license
GSWcurry30/SpringBoot
e9fb4bfd5312b63d765a52dc26fa5bcd9f70c483
d5ae4a5105d6ed28a75dfc1bb3e2ae402034bb3b
refs/heads/master
2020-04-16T22:11:03.911273
2019-01-16T02:36:08
2019-01-16T02:36:08
165,956,633
0
0
null
null
null
null
UTF-8
Java
false
false
596
java
package com.hqw.demo.config; import com.hqw.demo.intercepter.LoginIntercepter; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; @Configuration public class IntercepterConfig extends WebMvcConfigurerAdapter { @Override public void addInterceptors(InterceptorRegistry registry){ registry.addInterceptor(new LoginIntercepter()).addPathPatterns("/test2/**"); super.addInterceptors(registry); } }
[ "huqingwei@100tal.com" ]
huqingwei@100tal.com
3922e9ed72e9f6f3f3c9b0da8977166b5dfc7e49
f8f5f7c230785d776c0b70f9fb4028ccd8421dc2
/December_Silver_2015/lightson.java
c2026503a776d95abe5ede276a2b0f96bd4da121
[]
no_license
Balakumaran-Bala/USACO
6ec28682ae2b803a823a1249fb27b4d31f81521d
284524d79c5d68f2145b4922337c57d58efb0034
refs/heads/master
2020-04-03T13:35:23.293951
2018-11-23T20:53:14
2018-11-23T20:53:14
155,289,221
0
0
null
null
null
null
UTF-8
Java
false
false
2,309
java
package December_Silver_2015; import java.util.*; import java.io.*; public class lightson { public static class Pair { int x; int y; public Pair(int x, int y) { this.x = x; this.y = y; } } public static void main(String[] args) throws IOException { BufferedReader f = new BufferedReader(new FileReader("lightson.in")); PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("lightson.out"))); StringTokenizer st = new StringTokenizer(f.readLine()); int N = Integer.parseInt(st.nextToken()); int M = Integer.parseInt(st.nextToken()); LinkedList<Pair>[][] grid = new LinkedList[N][N]; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { grid[i][j] = new LinkedList<Pair>(); } } for (int i = 0; i < M; i++) { st = new StringTokenizer(f.readLine()); int r = Integer.parseInt(st.nextToken()) - 1; int c = Integer.parseInt(st.nextToken()) - 1; int x = Integer.parseInt(st.nextToken()) - 1; int y = Integer.parseInt(st.nextToken()) - 1; Pair p = new Pair(x, y); grid[r][c].add(p); } int[][] visited = new int[N][N]; visited[0][0] = 1; boolean needToExplore = true; while (needToExplore) { needToExplore = dfs(grid, visited, 0, 0); for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { if (visited[i][j] == 2) visited[i][j] = 1; } } } int count = 0; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { if (visited[i][j] == 1) count++; } } out.println(count); out.close(); } public static boolean dfs(LinkedList<Pair>[][] grid, int[][] v, int row, int col) { if ((row < 0 || row >= grid.length) || (col < 0 || col >= grid.length)) return false; if (v[row][col] == 0 || v[row][col] == 2) return false; v[row][col] = 2; boolean switched = false; for (Pair p : grid[row][col]) { if (v[p.x][p.y] == 0) { v[p.x][p.y] = 1; switched = true; } } switched |= dfs(grid, v, row+1, col); switched |= dfs(grid, v, row, col+1); switched |= dfs(grid, v, row-1, col); switched |= dfs(grid, v, row, col-1); return switched; } }
[ "balakumaran55@gmail.com" ]
balakumaran55@gmail.com
aba84702ed489b38f8896057aac8123563cd4aec
04ff58d98f6d787202f8eec3a297bf507753aadc
/sims/app/models/Event.java
9d1be16995bd32fc6b33e76fca2e47264014ce88
[]
no_license
juanedi/seginf-sims
d80a2fe64515c8b589fc68daa1c501da93e31923
9c253a08f740a471f67471447f581dbcc6aad73a
refs/heads/master
2022-07-07T07:37:15.762410
2012-08-06T00:03:40
2012-08-06T00:03:40
4,308,832
0
0
null
2022-06-30T21:20:38
2012-05-12T18:46:45
JavaScript
UTF-8
Java
false
false
2,197
java
package models; import java.util.Date; import java.util.LinkedList; import java.util.List; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax.persistence.JoinColumn; import javax.persistence.JoinTable; import javax.persistence.ManyToMany; import javax.persistence.ManyToOne; import javax.persistence.Table; import org.apache.commons.lang.Validate; import play.db.jpa.Model; /** * Evento de auditoría. * * @author Juan Edi */ @Entity @Table(name = "accouting_events") public class Event extends Model { @Column(name = "date", nullable = false) public Date date; @Column(name = "type") @Enumerated(EnumType.STRING) public EventType type; @ManyToOne(optional = false) @JoinColumn(name = "user_id") public User responsible; @ManyToMany @JoinTable( name = "events_apps", joinColumns = @JoinColumn(name = "event_id"), inverseJoinColumns = @JoinColumn(name = "app_id")) public List<App> relatedApps; @ManyToMany @JoinTable( name = "users_apps", joinColumns = @JoinColumn(name = "user_id"), inverseJoinColumns = @JoinColumn(name = "app_id")) public List<User> relatedUsers; @Column(name = "description", nullable = false) public String description; /** constructor default */ public Event() { // Hibernate } /** construye un evento nuevo */ public Event(final Date date, final EventType type, final User responsible, final List<App> relatedApps, final List<User> relatedUsers, final String description) { Validate.notNull(date); Validate.notNull(type); Validate.notNull(responsible); Validate.notNull(relatedApps); Validate.notNull(relatedUsers); Validate.notEmpty(description); this.date = date; this.type = type; this.responsible = responsible; this.relatedApps = new LinkedList<App>(relatedApps); this.relatedUsers = new LinkedList<User>(); if (!relatedUsers.contains(responsible)) { this.relatedUsers.add(responsible); } this.relatedUsers.addAll(relatedUsers); this.description = description; } }
[ "juanedi@zauberlabs.com" ]
juanedi@zauberlabs.com
ddf5aa9a7b3f4260611ee75e64a93182d2b9e2c6
c37c3fa6b28887a979264fd28be33241c6ba9920
/edu.eafit.maestria.activa.tva/src/tva/mpeg21/_2011/DescriptionMetadataType.java
6e6c1b354da282b644787dfde2ef0397fd2b5a27
[]
no_license
wvelezva/tesisgitrepository
6d2e4410d7422015efde9dc40a0aaa3308830605
1296d4c2cabd5497cf83645e112f416fdd27c6db
refs/heads/master
2021-01-01T16:20:24.999410
2012-07-12T23:45:53
2012-07-12T23:45:53
2,657,973
0
0
null
null
null
null
UTF-8
Java
false
false
5,418
java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.05.23 at 05:28:03 PM COT // package tva.mpeg21._2011; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for DescriptionMetadataType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="DescriptionMetadataType"> * &lt;complexContent> * &lt;extension base="{urn:tva:mpeg21:2011}DIABaseType"> * &lt;sequence> * &lt;element name="ClassificationSchemeAlias" maxOccurs="unbounded"> * &lt;complexType> * &lt;complexContent> * &lt;extension base="{urn:tva:mpeg21:2011}DIABaseType"> * &lt;attribute name="alias" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> * &lt;attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * &lt;/extension> * &lt;/complexContent> * &lt;/complexType> * &lt;/element> * &lt;/sequence> * &lt;/extension> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DescriptionMetadataType", propOrder = { "classificationSchemeAlias" }) public class DescriptionMetadataType extends DIABaseType { @XmlElement(name = "ClassificationSchemeAlias", required = true) protected List<DescriptionMetadataType.ClassificationSchemeAlias> classificationSchemeAlias; /** * Gets the value of the classificationSchemeAlias property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the classificationSchemeAlias property. * * <p> * For example, to add a new item, do as follows: * <pre> * getClassificationSchemeAlias().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DescriptionMetadataType.ClassificationSchemeAlias } * * */ public List<DescriptionMetadataType.ClassificationSchemeAlias> getClassificationSchemeAlias() { if (classificationSchemeAlias == null) { classificationSchemeAlias = new ArrayList<DescriptionMetadataType.ClassificationSchemeAlias>(); } return this.classificationSchemeAlias; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType> * &lt;complexContent> * &lt;extension base="{urn:tva:mpeg21:2011}DIABaseType"> * &lt;attribute name="alias" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> * &lt;attribute name="href" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * &lt;/extension> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class ClassificationSchemeAlias extends DIABaseType { @XmlAttribute(name = "alias", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String alias; @XmlAttribute(name = "href", required = true) @XmlSchemaType(name = "anyURI") protected String href; /** * Gets the value of the alias property. * * @return * possible object is * {@link String } * */ public String getAlias() { return alias; } /** * Sets the value of the alias property. * * @param value * allowed object is * {@link String } * */ public void setAlias(String value) { this.alias = value; } /** * Gets the value of the href property. * * @return * possible object is * {@link String } * */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is * {@link String } * */ public void setHref(String value) { this.href = value; } } }
[ "wvelezva@gmail.com" ]
wvelezva@gmail.com
9e921a9ad09d428b18aab2a5f973194e030042e3
5e9b2f2b58de3a5836b6414d8e15041a217e364a
/PBO3-10117116-Latihan7-Integer/src/pbo3/pkg10117116/latihan7/integer/PBO310117116Latihan7Integer.java
6d71554cd103f2d9cf88f1fcf6f9900e48df6c4c
[]
no_license
muhammadfitrayana/Pertemuan1
c9dafec81d2ce3b0d359d0557c12617a9ab3f333
13f082f47e3cc45b46130948c78256b058948f36
refs/heads/master
2020-03-29T11:40:51.990911
2018-09-22T10:37:06
2018-09-22T10:37:06
149,865,196
0
0
null
null
null
null
UTF-8
Java
false
false
972
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package pbo3.pkg10117116.latihan7.integer; /** * * @author * NAMA : Muhammad Fitrayana * Kelas : PBO3 * NIM : 10117116 * Deskripsi Tugas : Program Ini Berisi Program Untuk Mendeklarasikan Nilai * Menggunakan tipe data Integer , Long , Char , dan Short */ public class PBO310117116Latihan7Integer { /** * @param args the command line arguments */ public static void main(String[] args) { byte b; short s; int i; long l; b = 120; s = 32767; i = 1_000_000_000; l = 90000000000L; System.out.println("byte : " + b); System.out.println("short : " + s); System.out.println("int : " + i); System.out.println("long : " + l); } }
[ "noreply@github.com" ]
muhammadfitrayana.noreply@github.com
a8c8463cde0640a29a30dce98442918345ddf196
4350f2cca1298feed9ed0dba5035cf3649eb9383
/src/learningSwing/InterruptableLongRunningCallable.java
ca6e05ef4a9c7a4fccf967b40a94da79bc9705c4
[]
no_license
yubaoquan/dostring
67cb02f23aa81f5fe836a3a61fc5a7668b335af7
be4e228caab4ec331ac1dffa85913c3fbaa9f239
refs/heads/master
2020-03-25T12:23:41.895487
2015-01-26T12:36:10
2015-01-26T12:36:23
18,030,884
0
0
null
null
null
null
UTF-8
Java
false
false
1,638
java
package learningSwing; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.concurrent.Callable; import javax.swing.JButton; import javax.swing.JFrame; import static learningSwing.SwingConsole.*; class CallableTask extends Task implements Callable<String>{ public String call() { run(); return "Return value of " + this; } } public class InterruptableLongRunningCallable extends JFrame{ private JButton b1 = new JButton("Start Long Runing Task"); private JButton b2 = new JButton("End Long Running Task"); private JButton b3 = new JButton("Get Results"); private TaskManager<String,CallableTask> manager = new TaskManager<String, CallableTask>(); public InterruptableLongRunningCallable() { b1.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent evt) { CallableTask task = new CallableTask(); manager.add(task); System.out.println(task + " added to the queue"); } }); b2.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent evt) { for (String result : manager.perge()) { System.out.println(result); } } }); b3.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent evt) { for (TaskItem<String, CallableTask> tt : manager) { tt.task.id(); } for (String result : manager.getResults()) { System.out.println(result); } } }); setLayout(new FlowLayout()); add(b1); add(b2); add(b3); } public static void main(String[] args) { run(new InterruptableLongRunningCallable(),200,150); } }
[ "1079139460@qq.com" ]
1079139460@qq.com
198e59f6c186a2d8be1bb2aba4a16199781e60d9
afc3a531b1aa528029e2d5c9834c1a2c0fc51235
/src/main/java/sonar/logistics/info/providers/fluids/AE2ExternalFluidProvider.java
4b36ce514bae2825a89312175cbc1ff308730ad6
[]
no_license
naluisio/Practical-Logistics
fd61800bcc0e1ffd1511e373c5b384386fc9323a
77853c064c9f2c5daf40328f3b7ff80c2d9e119b
refs/heads/master
2021-01-15T16:47:04.807243
2016-02-18T15:40:36
2016-02-18T15:40:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,046
java
package sonar.logistics.info.providers.fluids; import java.util.List; import net.minecraft.tileentity.TileEntity; import net.minecraftforge.common.util.ForgeDirection; import sonar.core.fluid.StoredFluidStack; import sonar.core.inventory.StoredItemStack; import sonar.core.utils.ActionType; import sonar.logistics.api.LogisticsAPI; import sonar.logistics.api.providers.FluidHandler; import sonar.logistics.api.providers.InventoryHandler; import sonar.logistics.integration.AE2Helper; import appeng.api.AEApi; import appeng.api.config.Actionable; import appeng.api.implementations.tiles.ITileStorageMonitorable; import appeng.api.networking.security.BaseActionSource; import appeng.api.networking.security.IActionHost; import appeng.api.networking.security.MachineSource; import appeng.api.storage.IExternalStorageHandler; import appeng.api.storage.IMEInventory; import appeng.api.storage.IMEMonitor; import appeng.api.storage.IStorageMonitorable; import appeng.api.storage.StorageChannel; import appeng.api.storage.data.IAEFluidStack; import appeng.api.storage.data.IAEItemStack; import appeng.api.storage.data.IItemList; import cpw.mods.fml.common.Loader; public class AE2ExternalFluidProvider extends FluidHandler { public static String name = "AE2-External-Inventory"; @Override public String getName() { return name; } @Override public boolean canHandleFluids(TileEntity tile, ForgeDirection dir) { IExternalStorageHandler handler = AEApi.instance().registries().externalStorage().getHandler(tile, dir, StorageChannel.FLUIDS, AE2Helper.sourceHandler); return handler != null; } @Override public boolean getFluids(List<StoredFluidStack> fluids, TileEntity tile, ForgeDirection dir) { IMEInventory inv = AE2Helper.getMEInventory(tile, dir, StorageChannel.FLUIDS); if (inv == null) { return false; } IItemList<IAEFluidStack> items = inv.getAvailableItems(AEApi.instance().storage().createFluidList()); if (items == null) { return false; } for (IAEFluidStack item : items) { LogisticsAPI.getFluidHelper().addFluidToList(fluids, AE2Helper.convertAEFluidStack(item)); } return true; } @Override public StoredFluidStack addStack(StoredFluidStack add, TileEntity tile, ForgeDirection dir, ActionType action) { IMEInventory inv = AE2Helper.getMEInventory(tile, dir, StorageChannel.FLUIDS); if (inv == null) { return add; } return AE2Helper.convertAEFluidStack(inv.injectItems(AE2Helper.convertStoredFluidStack(add), AE2Helper.getActionable(action), AE2Helper.sourceHandler)); } @Override public StoredFluidStack removeStack(StoredFluidStack remove, TileEntity tile, ForgeDirection dir, ActionType action) { IMEInventory inv = AE2Helper.getMEInventory(tile, dir, StorageChannel.FLUIDS); if (inv == null) { return remove; } return AE2Helper.convertAEFluidStack(inv.extractItems(AE2Helper.convertStoredFluidStack(remove), AE2Helper.getActionable(action), AE2Helper.sourceHandler)); } public boolean isLoadable() { return Loader.isModLoaded("appliedenergistics2"); } }
[ "ollielansdell@hotmail.co.uk" ]
ollielansdell@hotmail.co.uk
09e16c519dcf13a3a5614dad6cda7b44a014dcef
a8b3c13646f3ef1cc2f0a67476de5895a546a1f3
/src/test/java/de/stefanzindl/calendernews/CalenderNewsApplicationIntegrationTest.java
71f0c821aee08720bf829e0354b9e012c9295d05
[]
no_license
zindlsn/calendernews
d8914bdb73b1ff37b607b4033c7a64fe2165775a
3c11679e6e57f5991dd74228312d1d67bf6d5db0
refs/heads/master
2021-01-14T00:11:03.564407
2020-06-21T08:21:40
2020-06-21T08:21:40
242,538,034
1
0
null
null
null
null
UTF-8
Java
false
false
490
java
package de.stefanzindl.calendernews; import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; /** * Integration test to verify that the {@link CalenderNewsApplication} boots. DO NOT ADD MORE TESTS TO THIS CLASS! */ @RunWith(SpringRunner.class) @SpringBootTest class CalenderNewsApplicationIntegrationTest { @Test void contextLoads() { } }
[ "st148777@stud.uni-stuttgart.de" ]
st148777@stud.uni-stuttgart.de
46b01022e0ab097b5547556d452e32d6610a5558
1f30a5f52305b94cee9da8b7b0b50ff97476c08b
/app/src/main/java/com/softuvo/ipundit/custom_calander/utils/CalUtil.java
5b8bacb529a435234980cbd777a5dcf2daca8236
[]
no_license
PunditMason/punditandroid
5d2b448fbc07157ea5f25f39180b9cdf19a5439e
713002cc64e6cbc957f2c1f6c8aedcb358dae944
refs/heads/master
2021-09-10T15:24:32.972285
2018-03-28T12:43:58
2018-03-28T12:43:58
99,030,515
0
0
null
null
null
null
UTF-8
Java
false
false
5,693
java
package com.softuvo.ipundit.custom_calander.utils; import com.softuvo.ipundit.config.App; import com.softuvo.ipundit.custom_calander.RWeekCalendar; import org.joda.time.LocalDateTime; /** * The MIT License (MIT) Copyright (c) 2015 Ramesh M Nair Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ public class CalUtil { LocalDateTime mStartDate,selectedDate; /** * Get the day difference in the selected day and the first day in the week * * @param dayName */ public static int mDateGap(String dayName) { if (dayName.equals("mon")) { return 1; } else if (dayName.equals("tue")) { return 2; } else if (dayName.equals("wed")) { return 3; } else if (dayName.equals("thu")) { return 4; } else if (dayName.equals("fri")) { return 5; } else if (dayName.equals("sat")) { return 6; } else { return 0; } } /** * Initial calculation of the week * * @param mStartDate */ public void calculate(LocalDateTime mStartDate,int type) { //Initializing Start with current month final LocalDateTime currentDateTime = mStartDate; setStartDate(currentDateTime.getYear(), currentDateTime.getMonthOfYear(), currentDateTime.getDayOfMonth()); /*Check for difference of weeks for alignment of days*/ int weekGap = CalUtil.mDateGap(currentDateTime.dayOfWeek().getAsText().substring(0, 3).toLowerCase()); if (weekGap != 0) { //If the there is week gap we need to maintain in the calender else alignment will be a mess if(type== RWeekCalendar.FDF_CALENDER) { //If the week gap is in FDF calender first get the current days number of the week int currentWeekNumber=new LocalDateTime().dayOfWeek().get(); //Subtract it with the rest of the days(Week gap) to get the rest of the days weekGap = weekGap - currentWeekNumber; } //This will add the additional days LocalDateTime ldt=mStartDate.minusDays(weekGap); // Set the the new startDate after new calculated days setStartDate(ldt.getYear(), ldt.getMonthOfYear(), ldt.getDayOfMonth()); } else { //Some times the week gap will be zero in that case If the selected calender is FDFCalender if(type== RWeekCalendar.FDF_CALENDER) { //Subtract total days of week (7) with the week day number of current date int currentWeekNumber=7-new LocalDateTime().dayOfWeek().get(); if(currentWeekNumber!=0) { // Set the the new startDate after new calculated days LocalDateTime ldt=mStartDate.minusDays(currentWeekNumber); setStartDate(ldt.getYear(), ldt.getMonthOfYear(), ldt.getDayOfMonth()); } } } } /* *//** * Initial calculation of the week * * @param *//* public void calculate(Context mContext,LocalDateTime currentDateTime) { // //Initializing Start with current month // final LocalDateTime currentDateTime = new LocalDateTime(); setStartDate(currentDateTime.getYear(), currentDateTime.getMonthOfYear(), currentDateTime.getDayOfMonth()); int weekGap = CalUtil.mDateGap(currentDateTime.dayOfWeek().getAsText().substring(0, 3).toLowerCase()); if (weekGap != 0) { //if the current date is not the first day of the week the rest of days is added *//* //Calendar set to the current date Calendar calendar = Calendar.getInstance(); calendar.add(Calendar.DAY_OF_YEAR, -weekGap); //now the date is weekGap days back Log.i("weekGap", "" + calendar.getTime().toString()); LocalDateTime ldt = LocalDateTime.fromCalendarFields(calendar); *//* LocalDateTime ldt=currentDateTime.minusDays(weekGap); setStartDate(ldt.getYear(), ldt.getMonthOfYear(), ldt.getDayOfMonth()); } }*/ /*Set The Start day (week)from calender*/ private void setStartDate(int year, int month, int day) { mStartDate = new LocalDateTime(year, month, day, 0, 0, 0); selectedDate = mStartDate; App.getAppContext().setDate(selectedDate); } /* public LocalDateTime getSelectedDate() { return selectedDate; }*/ public LocalDateTime getStartDate() { return mStartDate; } }
[ "neha.kalia@softuvo.com" ]
neha.kalia@softuvo.com
c92c9555d6f7a54c3fa1e3b7eb45c5cea43e33bf
a20077f6aef8ab399e1e72e867540bc5c62bad86
/Proxy/src/main/java/com/crow/remoteproxy/GumballMonitor.java
3b031adf66b96e5dd331dfc505756bd5c7221205
[]
no_license
Vicome/DesignPattern-Learning
477212f5939943530ff58c987cb00cd9b5eb9f13
874306cab5661b4550a367a293bbadc4e2168dab
refs/heads/master
2020-08-01T03:26:48.364802
2017-07-21T17:14:42
2017-07-21T17:14:42
null
0
0
null
null
null
null
UTF-8
Java
false
false
510
java
package com.crow.remoteproxy; import java.rmi.*; public class GumballMonitor { GumballMachineRemote machine; public GumballMonitor(GumballMachineRemote machine) { this.machine = machine; } public void report() { try { System.out.println("Gumball Machine: " + machine.getLocation()); System.out.println("Current inventory: " + machine.getCount() + " gumballs"); System.out.println("Current state: " + machine.getState()); } catch (RemoteException e) { e.printStackTrace(); } } }
[ "wwwzeyuan@vip.qq.com" ]
wwwzeyuan@vip.qq.com
246a6c069de73e5b331fe41d84660a82a7c4e733
e567e543fcc6285664ac97b50181a88e11271e64
/src/main/java/com/github/tix320/ravel/api/bean/BeanDefinition.java
c414d03c8dea49b6a9c617b710b5d498bdb4e05a
[]
no_license
tix320/ravel
f5b9ad517c960505d364eeaf367c52a29426e4d8
44366fc11419622b6e17c158ec7f65ded4b70aca
refs/heads/master
2023-03-03T11:32:24.120821
2021-02-13T10:29:54
2021-02-13T10:29:54
288,971,721
3
0
null
2021-02-13T10:29:55
2020-08-20T10:06:22
Java
UTF-8
Java
false
false
789
java
package com.github.tix320.ravel.api.bean; import java.util.List; import com.github.tix320.ravel.api.scope.Scope; /** * @author Tigran Sargsyan on 25-Aug-20 */ public final class BeanDefinition { private final BeanKey beanKey; private final Scope scope; private final List<BeanKey> dependencies; private final BeanFactory factory; public BeanDefinition(BeanKey beanKey, Scope scope, List<BeanKey> dependencies, BeanFactory factory) { this.beanKey = beanKey; this.scope = scope; this.dependencies = dependencies; this.factory = factory; } public BeanKey getBeanKey() { return beanKey; } public Scope getScope() { return scope; } public List<BeanKey> getDependencies() { return dependencies; } public BeanFactory getFactory() { return factory; } }
[ "tigran.sargsyan@outlook.com" ]
tigran.sargsyan@outlook.com
b405b9576e30db87fe7da26bef7f739da5093021
ee2eb3d9c40896f6309bf7abd6ea502046955c24
/src/civ/model/ModelElement.java
8f5bedbfb3bbb13d065a69f7ecb31e83f18f5cde
[]
no_license
alestrooisma/CivGame
6c4e38c626df0015fcdd105c09abb4dd745f1e44
9d3c1b6f3f743f51e1f0c5ffb14b0e1d3b1f4e3f
refs/heads/master
2016-09-09T21:26:40.098168
2014-03-18T19:55:14
2014-03-18T19:55:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
159
java
package civ.model; import civ.controller.Controller; /** * * @author ale */ public interface ModelElement { public void update(Controller controller); }
[ "ale@strooisma" ]
ale@strooisma
5303950ed6c8a4b2d1ffe60a91ac5216dbfef43a
bc5bf572ed5c17ebcdecce2181c8f943b7863ee3
/src/main/java/spring/core/custom_event/LoginEvent.java
1e15fe93356d1c7b2ef995ab3cf71199bcd85e27
[]
no_license
spring-tour/spring-basic
9a5050c4f36a862710209ddf3f622f59edb359e3
4cb6960c30093f501361383d008849891d468fb9
refs/heads/master
2021-01-01T16:35:07.198047
2015-05-29T06:36:25
2015-05-29T06:36:25
32,960,412
0
0
null
null
null
null
UTF-8
Java
false
false
590
java
package spring.core.custom_event; import java.util.Date; import org.springframework.context.ApplicationEvent; /** * * @author senola * @timer 2015-5-18 * 描述: 自定义事件 */ public class LoginEvent extends ApplicationEvent{ private static final long serialVersionUID = 5957034989276958584L; private Date date; public LoginEvent(Object source) { super(source); this.date = new Date(getTimestamp()); System.out.println("LoginEvent--------------constructor"); } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } }
[ "zhijun_wang@kingdee.com" ]
zhijun_wang@kingdee.com
9a56d1d35212efb190b33e7f41cce800986815e5
421f0a75a6b62c5af62f89595be61f406328113b
/generated_tests/no_seeding/85_shop-umd.cs.shop.JSListOperators-1.0-2/umd/cs/shop/JSListOperators_ESTest_scaffolding.java
5f40e36469e77bc88918b1170b568a4669a42551
[]
no_license
tigerqiu712/evosuite-model-seeding-empirical-evaluation
c78c4b775e5c074aaa5e6ca56bc394ec03c2c7c6
11a920b8213d9855082d3946233731c843baf7bc
refs/heads/master
2020-12-23T21:04:12.152289
2019-10-30T08:02:29
2019-10-30T08:02:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
533
java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Mon Oct 28 15:00:29 GMT 2019 */ package umd.cs.shop; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After; import org.evosuite.runtime.sandbox.Sandbox; import org.evosuite.runtime.sandbox.Sandbox.SandboxMode; @EvoSuiteClassExclude public class JSListOperators_ESTest_scaffolding { // Empty scaffolding for empty test suite }
[ "pderakhshanfar@bsr01.win.tue.nl" ]
pderakhshanfar@bsr01.win.tue.nl
b7793459241b15d2340d8dce83fafb397a766925
647ec12ce50f06e7380fdbfb5b71e9e2d1ac03b4
/com.tencent.mm/classes.jar/com/tencent/mm/plugin/textstatus/ui/TextStatusEditActivity$$ExternalSyntheticLambda14.java
080329d5052646eb234483eb54ca1014c751f003
[]
no_license
tsuzcx/qq_apk
0d5e792c3c7351ab781957bac465c55c505caf61
afe46ef5640d0ba6850cdefd3c11badbd725a3f6
refs/heads/main
2022-07-02T10:32:11.651957
2022-02-01T12:41:38
2022-02-01T12:41:38
453,860,108
36
9
null
2022-01-31T09:46:26
2022-01-31T02:43:22
Java
UTF-8
Java
false
false
509
java
package com.tencent.mm.plugin.textstatus.ui; import android.view.View; import android.view.View.OnClickListener; public final class TextStatusEditActivity$$ExternalSyntheticLambda14 implements View.OnClickListener { public final void onClick(View arg1) {} } /* Location: L:\local\mybackup\temp\qq_apk\com.tencent.mm\classes5.jar * Qualified Name: com.tencent.mm.plugin.textstatus.ui.TextStatusEditActivity..ExternalSyntheticLambda14 * JD-Core Version: 0.7.0.1 */
[ "98632993+tsuzcx@users.noreply.github.com" ]
98632993+tsuzcx@users.noreply.github.com
06474e848746879dfa7a136c92d3153e19e884f5
dae060927fed04950805185140563203c683dba7
/src/main/java/com/algaworks/cobranca/enumeration/TituloStatusEnum.java
f8ee3a886aadff40a70e32a1ca5c74a2b7ff35cf
[]
no_license
brunofelix7/cobranca
be21468e374bb45d001f3e1f042b63855f7546d3
cc661218830f942d244ddbd2a7eb843ba4c82b8e
refs/heads/master
2021-01-18T22:53:52.468682
2020-09-14T21:10:44
2020-09-14T21:10:44
87,078,927
0
0
null
null
null
null
UTF-8
Java
false
false
302
java
package com.algaworks.cobranca.enumeration; public enum TituloStatusEnum { PENDENTE("Pendente"), RECEBIDO("Recebido"); private String descricao; TituloStatusEnum(String descricao){ this.descricao = descricao; } public String getDescricao() { return descricao; } }
[ "bruno.felix10@hotmail.com" ]
bruno.felix10@hotmail.com
a589a87219fd6211efebb54e30cadcb7e9c023b7
de057260a68b0bd2dcd937aed753185e84301abb
/完整项目/src/userInfor/TeacherCur.java
853c4ca18f31cd069dc9b1b03d916df8f5f647c3
[]
no_license
Lumnca/teacherWeb
bf412e6cc3056cf61ba54d70f846528a57c008fe
06fd8f98e381bf4cacab61e5fd2d404f3dcbee08
refs/heads/master
2020-05-15T12:57:00.886932
2019-05-09T14:47:17
2019-05-09T14:47:17
182,283,567
3
0
null
null
null
null
UTF-8
Java
false
false
1,151
java
package userInfor; import java.sql.ResultSet; import java.util.ArrayList; import java.util.List; public class TeacherCur { public List<Cur> CurList; private int curnum; private String id; private String name; public TeacherCur(){ CurList = new ArrayList<>(); } public TeacherCur(String id,String name,int n){ CurList = new ArrayList<>(); this.id = id; this.name = name; this.curnum = n; } public String getName() { return name; } public void setName(String name) { this.name = name; } public void setId(String id) { this.id = id; } public String getId() { return id; } public void GetInfro(ResultSet rs){ try{ while (rs.next()){ CurList.add( new Cur(rs.getString(4),rs.getString(3), rs.getInt(5),rs.getString(6)) ); } } catch (Exception e){ System.out.println("错误信息:"+e.getMessage()); e.printStackTrace(); } } }
[ "724119519@qq.com" ]
724119519@qq.com
49f20551a204022de472a2946a9cbe6cce021b5b
6b44876e6e5fa0e04f6ac6b29b501e386928f299
/tools/VisualizadorAemet/src/main/java/es/upm/fi/dia/oeg/map4rdf/share/PolyLineBean.java
b8ef0cf91272490d4ed947257096dd7296d21bb2
[ "MIT" ]
permissive
boricles/aemet
509bd4796242a1ed5ee58edaf2089143120cce01
4ffa94067c8632dfe82552567fc5b31d6940f3d0
refs/heads/master
2021-01-19T13:53:14.824259
2012-11-16T19:05:17
2012-11-16T19:05:17
2,423,277
3
1
null
null
null
null
MacCentralEurope
Java
false
false
1,686
java
/** * Copyright (c) 2011 Ontology Engineering Group, * Departamento de Inteligencia Artificial, * Facultad de Informática, Universidad * Politécnica de Madrid, Spain * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package es.upm.fi.dia.oeg.map4rdf.share; import java.util.List; /** * @author Alexander De Leon */ public class PolyLineBean extends PolygonBean implements PolyLine { PolyLineBean() { super(); } public PolyLineBean(String uri, List<Point> points) { super(uri, points); } public PolyLineBean(String uri, Point... points) { super(uri, points); } @Override public Type getType() { return Type.POLYLINE; } }
[ "boricles@gmail.com" ]
boricles@gmail.com
fd085e7ed3aab9f4b07e34d53ac78ad845dc78d5
dc3cb9b0c33b8fefbf9fd0ccdd7d7b18795c63e2
/Day24/src/threadmethod/Demo1_Name.java
5d93b2df1b8a0cea787ccfb47e92a40216b72fc1
[]
no_license
April-Chou/BlackHorse
2f3c8b916e6fabc09123df7d1162196976dabbc5
207a6a3ac4129b14c54b0fe536c3f4bc973dc2d6
refs/heads/master
2020-04-22T16:50:33.995244
2019-03-13T16:19:10
2019-03-13T16:19:10
170,514,887
0
0
null
null
null
null
UTF-8
Java
false
false
970
java
package threadmethod; public class Demo1_Name { public static void main(String[] args) { // TODO Auto-generated method stub // demo1(); demo2(); } /** * */ private static void demo2() { new Thread() { public void run() { this.setName("Xiao Guo"); System.out.println(this.getName() + " : aaaaa"); } }.start(); // new thread new Thread() { public void run() { this.setName("Ciri"); System.out.println(this.getName() + " : cdefghijklmn"); } }.start(); } /** * */ @SuppressWarnings("unused") /* * 通过构造方法给name赋值 */ private static void demo1() { new Thread("Geralt") { //gei 给线程名称赋值 public void run() { System.out.println(this.getName() + " : aaaaaaaaa"); } }.start(); new Thread("Yennefer") { public void run() { System.out.println(this.getName() + " : bbbbbbb"); } }.start(); } }
[ "zhouchunzhe@gmail.com" ]
zhouchunzhe@gmail.com
ba9a9cd631f5c61719e83c4547b86d71ad2f35b8
1ffdcff169506aea2d515d165107e9b6d370bc33
/BinaryTree/PrintCousin.java
a9a1637f9104833d7f97c7367534e0a1778dcff4
[]
no_license
mithuniiit/Algorithms
83339d8bb0a589c42c7d0db7fbe7e24c7889e056
284206edc1d8a26894d567b5fe97842f4effa798
refs/heads/master
2020-11-24T12:13:16.028692
2020-11-01T12:50:14
2020-11-01T12:50:14
228,138,224
0
1
null
null
null
null
UTF-8
Java
false
false
1,209
java
package trees; import java.util.LinkedList; import java.util.Queue; import trees.LevelOrderByNewLine.Node; public class PrintCousin { public static void printCousine(Node root, int key) { if(root == null) System.out.println("No Cousine"); if(root.data == key) System.out.println("No Cousine"); Queue<Node> q = new LinkedList<>(); q.add(root); while(!q.isEmpty()) { Node temp = q.poll(); if( (temp.left != null && temp.left.data == key) || (temp.right != null && temp.right.data == key)) { while(!q.isEmpty()) { temp = q.poll(); if(temp.left != null) System.out.println(temp.left.data); if(temp.right != null) System.out.println(temp.right.data); } return; } if(temp.left != null) q.add(temp.left); if(temp.right != null) q.add(temp.right); } } public static void main(String[] args) { Node root = new Node(1); root.left = new Node(2); root.right = new Node(3); root.left.left = new Node(4); root.left.right = new Node(5); root.right.left = new Node(6); root.right.right = new Node(7); printCousine(root,4); } }
[ "noreply@github.com" ]
mithuniiit.noreply@github.com
78003667a55fd989534ef13a9a5b0d932954947d
d1aba50218ea26454db88eb9249a144492c99f79
/app/src/main/java/com/victor/andriod/criminalintent/SingleFragment.java
e93df45ea5dc20ac1913cfc6e8faa38415f1079d
[]
no_license
victorCauich/criminalIntent
f091efa7ab61eea14545382237eea03f4721a8f6
b88304788da93228e3c9dc882c37c4854ee5b3cc
refs/heads/master
2020-05-25T20:13:26.872835
2019-05-22T06:11:48
2019-05-22T06:11:48
187,970,395
0
0
null
null
null
null
UTF-8
Java
false
false
884
java
package com.victor.andriod.criminalintent; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentManager; public abstract class SingleFragment extends FragmentActivity { public abstract Fragment createFragment(); @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_fragment); FragmentManager fmm= getSupportFragmentManager(); Fragment fragment= fmm.findFragmentById(R.id.fragment_container); if (fragment==null){ fragment= createFragment(); fmm.beginTransaction() .add(R.id.fragment_container,fragment) .commit(); } } }
[ "al053941@uacam.mx" ]
al053941@uacam.mx
134590a420b693bbe05d74a550bce8d5b5291e01
aa348e6bd29cfa73b185b69d8779d6e0d512650f
/app/src/androidTest/java/realgodjj/example/com/handlerthreaddemo/ExampleInstrumentedTest.java
bad26b33d096703af81c5b28d51824301cd50912
[]
no_license
RealgodJJ/HandlerThreadDemo
613f5b533731dfcde1a96fafc029fab6ea781b33
1384117f4439f57a577b1baecfa35eb0090a7f88
refs/heads/master
2020-09-13T17:18:33.335792
2019-11-25T06:27:55
2019-11-25T06:27:55
222,851,743
0
0
null
null
null
null
UTF-8
Java
false
false
754
java
package realgodjj.example.com.handlerthreaddemo; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("realgodjj.example.com.myservice", appContext.getPackageName()); } }
[ "xiaozhiqiu13@sina.com" ]
xiaozhiqiu13@sina.com
04b1e481a009f53f97f52c181dbe6a800c03fa23
8818d6a1111866a7e4ea525abdd881916c389ade
/src/main/java/com/blastedstudios/scab/ai/bt/actions/Aim.java
6d9d9d891b2117cee80729a953b550f2fe6b3113
[]
no_license
narfman0/scab
5994ce446fce31d023781f74b406aaf60f4d22b2
8210cf6f6321f475fc46d957947e16d1af0496ee
refs/heads/master
2021-01-10T07:00:28.536296
2016-08-20T05:49:10
2016-08-20T05:49:10
51,808,220
0
0
null
null
null
null
UTF-8
Java
false
false
1,850
java
// ******************************************************* // MACHINE GENERATED CODE // DO NOT MODIFY // // Generated on 11/15/2014 22:29:17 // ******************************************************* package com.blastedstudios.scab.ai.bt.actions; /** ModelAction class created from MMPM action Aim. */ public class Aim extends jbt.model.task.leaf.action.ModelAction { /** * Value of the parameter "target" in case its value is specified at * construction time. null otherwise. */ private float[] target; /** * Location, in the context, of the parameter "target" in case its value is * not specified at construction time. null otherwise. */ private java.lang.String targetLoc; /** * Constructor. Constructs an instance of Aim. * * @param target * value of the parameter "target", or null in case it should be * read from the context. If null, <code>targetLoc</code> cannot * be null. * @param targetLoc * in case <code>target</code> is null, this variable represents * the place in the context where the parameter's value will be * retrieved from. */ public Aim(jbt.model.core.ModelTask guard, float[] target, java.lang.String targetLoc) { super(guard); this.target = target; this.targetLoc = targetLoc; } /** * Returns a com.blastedstudios.scab.ai.bt.actions.execution.Aim task that * is able to run this task. */ public jbt.execution.core.ExecutionTask createExecutor( jbt.execution.core.BTExecutor executor, jbt.execution.core.ExecutionTask parent) { return new com.blastedstudios.scab.ai.bt.actions.execution.Aim(this, executor, parent, this.target, this.targetLoc); } }
[ "narfman0@gmail.com" ]
narfman0@gmail.com
23dd93396cea0fae70dc01d59f02f957763d2aad
b90af2e076a1a17057ed373d059b89b743611db3
/src/main/java/br/com/zup/casadocodigo/modelo/dto/LivroDetalhes.java
3af1f6fce793ac245752b23815c4ccf9570b3cec
[]
no_license
celofelix/casa-do-codigo
1ef0fb1a030cc4f99700e16d8b11d4fb8a0b0c3b
ad95416ef059f2bd15069d9220c76d5a50e014d9
refs/heads/master
2023-03-01T17:38:47.860761
2021-01-29T22:03:48
2021-01-29T22:03:48
334,272,311
0
0
null
null
null
null
UTF-8
Java
false
false
1,148
java
package br.com.zup.casadocodigo.modelo.dto; import java.math.BigDecimal; import java.time.LocalDate; import br.com.zup.casadocodigo.modelo.Livro; public class LivroDetalhes { private String titulo; private String autor; private BigDecimal preco; private String sinopse; private String sumario; private int paginas; private String isbn; private LocalDate dataPublicacao; public LivroDetalhes(Livro livro) { this.titulo = livro.getTitulo(); this.autor = livro.getAutor().getNome(); this.preco = livro.getPreco(); this.sinopse = livro.getSinopse(); this.sumario = livro.getSumario(); this.paginas = livro.getPaginas(); this.isbn = livro.getIsbn(); this.dataPublicacao = livro.getDataPublicacao(); } public String getTitulo() { return titulo; } public String getAutor() { return autor; } public BigDecimal getPreco() { return preco; } public String getSinopse() { return sinopse; } public String getSumario() { return sumario; } public int getPaginas() { return paginas; } public String getIsbn() { return isbn; } public LocalDate getDataPublicacao() { return dataPublicacao; } }
[ "celofelix93@gmail.com" ]
celofelix93@gmail.com
6c4555a5dc0f7a49bc01c861cb6276d7abcecb84
54506378f60bf5d933294ca3cc9800afef8f56f3
/app/src/main/java/com/example/misastreria/Main5Activity.java
64630232c751bd9cc48b26e267ac4e28019a9ea3
[]
no_license
yasminmontoya/ProyectoEnAndroid
7bf21036dbdbc6f441062df8c3e7069d70ace5cc
013ca94eee1327b1ef718b24e182beeefcbc9523
refs/heads/master
2022-04-20T07:41:32.107375
2020-04-20T14:48:46
2020-04-20T14:48:46
257,325,313
0
0
null
null
null
null
UTF-8
Java
false
false
6,286
java
package com.example.misastreria; import android.app.DatePickerDialog; import android.content.ContentValues; import android.content.Intent; import android.database.sqlite.SQLiteDatabase; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.view.inputmethod.InputMethodManager; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.DatePicker; import android.widget.EditText; import android.widget.Spinner; import android.widget.Toast; import java.util.Calendar; public class Main5Activity extends AppCompatActivity { private Spinner spinner_tipop; private EditText et_fechai, et_fechas, et_color, et_marca, et_cantidad, et_otro; private int dia, mes, año; private String codigo=""; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main5); codigo= getIntent().getStringExtra("codigo"); spinner_tipop=(Spinner)findViewById(R.id.tipop); et_fechai=(EditText)findViewById(R.id.fechai); et_fechas=(EditText)findViewById(R.id.fechas); et_color=(EditText)findViewById(R.id.color); et_marca=(EditText)findViewById(R.id.marca); et_cantidad=(EditText)findViewById(R.id.cantidad); et_otro=(EditText)findViewById(R.id.otro); final String []tipo_prenda = {"Selecciona el Tipo de Prenda","Blusa", "Pantalon", "Camisa", "Short", "Jean", "Buso", "Falda", "Ropa Interior", "Sudadera","Otro"}; ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line, tipo_prenda); spinner_tipop.setAdapter(adapter); spinner_tipop.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() { @Override public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { String tipo_prenda = parent.getItemAtPosition(position).toString(); if(tipo_prenda=="Otro"){ et_otro.setVisibility(View.VISIBLE); }else{ et_otro.setVisibility(View.INVISIBLE); } } @Override public void onNothingSelected(AdapterView<?> parent) { } }); } //Método para obtener la fecha de ingreso de la prenda public void obtenerFechaIngreso(View v) { final Calendar calendario = Calendar.getInstance(); dia = calendario.get(Calendar.DAY_OF_MONTH); mes = calendario.get(Calendar.MONTH); año = calendario.get(Calendar.YEAR); DatePickerDialog datePickerDialog = new DatePickerDialog(this, new DatePickerDialog.OnDateSetListener() { @Override public void onDateSet(DatePicker view, int year, int month, int dayOfMonth) { et_fechai.setText(dayOfMonth + "/" + (month+1) + "/" + year); } },año,mes,dia); datePickerDialog.show(); } //Método para obtener la fecha de salida de la prenda public void obtenerFechaSalida(View v) { final Calendar calendario = Calendar.getInstance(); dia = calendario.get(Calendar.DAY_OF_MONTH); mes = calendario.get(Calendar.MONTH); año = calendario.get(Calendar.YEAR); DatePickerDialog datePickerDialog = new DatePickerDialog(this, new DatePickerDialog.OnDateSetListener() { @Override public void onDateSet(DatePicker view, int year, int month, int dayOfMonth) { et_fechas.setText(dayOfMonth + "/" + (month+1) + "/" + year); } },año,mes,dia); datePickerDialog.show(); } //Método para guardar la prenda del cliente public void guardarPrendaCliente(View v){ AdminSQLiteOpenHelper admin = new AdminSQLiteOpenHelper(this,"sastreria", null, 1); SQLiteDatabase db = admin.getWritableDatabase(); String tipop = spinner_tipop.getSelectedItem().toString(); String fechai = et_fechai.getText().toString(); String fechas = et_fechas.getText().toString(); String color = et_color.getText().toString(); String marca = et_marca.getText().toString(); String cantidad = et_cantidad.getText().toString(); String otro = et_otro.getText().toString(); String tipoprenda=""; if(!tipop.equalsIgnoreCase("Selecciona el Tipo de Prenda")) { if(!cantidad.equalsIgnoreCase("")) { if (tipop == "Otro") { tipoprenda = otro; } else { tipoprenda = tipop; } ContentValues prenda = new ContentValues(); prenda.put("codigo_cliente", codigo); prenda.put("tipo_prenda", tipoprenda); prenda.put("fecha_ingreso", fechai); prenda.put("fecha_salida", fechas); prenda.put("color", color); prenda.put("marca", marca); prenda.put("cantidad", cantidad); db.insert("prendas", null, prenda); db.close(); Toast.makeText(this, "La prenda del cliente se guardo correctamente", Toast.LENGTH_SHORT).show(); Intent verLista = new Intent(this, Main4Activity.class); verLista.putExtra("codigo", codigo); startActivity(verLista); }else{ Toast.makeText(this, "Falta agregar la cantidad", Toast.LENGTH_SHORT).show(); et_cantidad.requestFocus(); InputMethodManager inputMethodManager = (InputMethodManager)getSystemService(this.INPUT_METHOD_SERVICE); inputMethodManager.showSoftInput(et_cantidad,InputMethodManager.SHOW_IMPLICIT); } }else{ Toast.makeText(this, "Primero debe seleccionar el tipo de prenda", Toast.LENGTH_SHORT).show(); spinner_tipop.requestFocus(); } } @Override public void onBackPressed(){ Intent verLista = new Intent(Main5Activity.this, Main4Activity.class); verLista.putExtra("codigo", codigo); startActivity(verLista); } }
[ "yaz.lorena@gmail.com" ]
yaz.lorena@gmail.com
cdbf66e466c511c9bb439b892eaad49f00aeaede
93f6de106d718e76e3f77b783b8c7145abce672f
/src/main/java/controllers/UserController.java
c1e6b41043d79eb7cca2671c7f4a31b74472cfc7
[]
no_license
ThomGeG/Tom-Talk
636a80dc745fcceebdeb1b2f942698189a509d8e
065c9ab9e8534454d2c8b48140ef40e253457887
refs/heads/master
2021-01-24T21:03:37.667762
2018-06-18T06:23:50
2018-06-18T06:23:50
123,266,597
0
0
null
null
null
null
UTF-8
Java
false
false
435
java
package main.java.controllers; import org.springframework.security.oauth2.provider.OAuth2Authentication; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import main.java.model.User; @RestController public class UserController { @RequestMapping("/user") public User user(OAuth2Authentication authentication) { return new User(authentication); } }
[ "tgegaskell@gmail.com" ]
tgegaskell@gmail.com
55cbb49b1d9dc42a1319c2b3cdfad6a25b75286d
d54851017cfcc91ca17927623a71b5a66602f8ac
/src/main/java/Ali/ashique/ITCENTERFEESMANAGEMENT/configuration/SpringDataWeb.java
d6464a32ae4b7f31a88e6a8f5da6f5d290edc386
[]
no_license
AshiqueAliMahar/IT-CENTER-FEES-MANAGEMENT
4a0201189c16d245018d31e81603b31a8a528f8d
7f56ccc416819bf1d3e1d2db98908c18da8f6437
refs/heads/master
2020-08-28T15:11:47.992402
2019-10-26T16:18:12
2019-10-26T16:18:12
217,735,674
0
0
null
null
null
null
UTF-8
Java
false
false
160
java
package Ali.ashique.ITCENTERFEESMANAGEMENT.configuration; //@Configuration //@EnableWebMvc //@EnableSpringDataWebSupport //public class SpringDataWeb { // //}
[ "40056794+AshiqueAliMahar@users.noreply.github.com" ]
40056794+AshiqueAliMahar@users.noreply.github.com
1cf7bbe70f3d6b3d003ab765403d71a8c2ea79c0
c8c0bd534b9d530251cf49a645a85ec3819733c1
/bkrepcomercial/src/main/java/com/eofdev/repcomercial/domain/service/CadastroProdutoService.java
1b0897b06d546b25b6830988faaa26ba9cf74f08
[]
no_license
elofdev/ControleComercial
6133b192bc47e1aa5f37e22b10b18c877913ff34
e23b8c29233a926f534df8d1d475370a8c089794
refs/heads/main
2023-02-24T04:03:30.220292
2021-01-29T05:59:59
2021-01-29T05:59:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
723
java
package com.eofdev.repcomercial.domain.service; import java.time.OffsetDateTime; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.eofdev.repcomercial.domain.model.Produto; import com.eofdev.repcomercial.domain.repository.ProdutoRepository; @Service public class CadastroProdutoService { // Injeção do ProdutoRepository @Autowired private ProdutoRepository produtoRepository; // >>> SALVAR - SAVE public Produto salvar(Produto produto) { produto.setDatasys(OffsetDateTime.now()); return produtoRepository.save(produto); } // >>> DELETAR - DELETE public void excluir(Long produtoId) { produtoRepository.deleteById(produtoId); } }
[ "ersijunior@gmail.com" ]
ersijunior@gmail.com
609e1dff9e59bfd01fdcf28ddd5e6f69fb85390e
13f1bb964c5ad37e9f01ea8d19a8509c79ed1bbe
/src/main/java/zk_proof_systems/zkSNARK/SerialSetup.java
9a471ddb355c17e83bde892e23c323fa81adc559
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
uheqiang/dizk
f630874b9a565ada05009f9244b5ae2ab0d28872
4235153161fb18f9e4970cb16e7c122f6a6f86a6
refs/heads/master
2020-12-07T14:37:58.602988
2020-03-24T10:15:18
2020-03-24T10:15:18
232,739,212
0
0
NOASSERTION
2020-01-09T06:32:10
2020-01-09T06:32:09
null
UTF-8
Java
false
false
8,088
java
/* @file ***************************************************************************** * @author This file is part of zkspark, developed by SCIPR Lab * and contributors (see AUTHORS). * @copyright MIT license (see LICENSE file) *****************************************************************************/ package zk_proof_systems.zkSNARK; import algebra.fields.AbstractFieldElementExpanded; import algebra.curves.AbstractG1; import algebra.curves.AbstractG2; import algebra.curves.AbstractGT; import algebra.curves.AbstractPairing; import algebra.msm.FixedBaseMSM; import configuration.Configuration; import reductions.r1cs_to_qap.R1CStoQAP; import relations.qap.QAPRelation; import relations.r1cs.R1CSRelation; import scala.Tuple2; import zk_proof_systems.zkSNARK.objects.CRS; import zk_proof_systems.zkSNARK.objects.ProvingKey; import zk_proof_systems.zkSNARK.objects.VerificationKey; import java.util.ArrayList; import java.util.List; public class SerialSetup { public static <FieldT extends AbstractFieldElementExpanded<FieldT>, G1T extends AbstractG1<G1T>, G2T extends AbstractG2<G2T>, GTT extends AbstractGT<GTT>, PairingT extends AbstractPairing<G1T, G2T, GTT>> CRS<FieldT, G1T, G2T, GTT> generate( final R1CSRelation<FieldT> r1cs, final FieldT fieldFactory, final G1T g1Factory, final G2T g2Factory, final PairingT pairing, final Configuration config) { // Generate secret randomness. final FieldT t = fieldFactory.random(config.seed(), config.secureSeed()); final FieldT alpha = fieldFactory.random(config.seed(), config.secureSeed()); final FieldT beta = fieldFactory.random(config.seed(), config.secureSeed()); final FieldT gamma = fieldFactory.random(config.seed(), config.secureSeed()); final FieldT delta = fieldFactory.random(config.seed(), config.secureSeed()); final FieldT inverseGamma = gamma.inverse(); final FieldT inverseDelta = delta.inverse(); // A quadratic arithmetic program evaluated at t. final QAPRelation<FieldT> qap = R1CStoQAP.R1CStoQAPRelation(r1cs, t); System.out.println("\tQAP - primary input size: " + qap.numInputs()); System.out.println("\tQAP - total input size: " + qap.numVariables()); System.out.println("\tQAP - pre degree: " + r1cs.numConstraints()); System.out.println("\tQAP - degree: " + qap.degree()); final int numInputs = qap.numInputs(); final int numVariables = qap.numVariables(); // The gamma inverse product component: (beta*A_i(t) + alpha*B_i(t) + C_i(t)) * gamma^{-1}. config.beginLog("Computing gammaABC for R1CS verification key"); final List<FieldT> gammaABC = new ArrayList<>(numInputs); for (int i = 0; i < numInputs; i++) { gammaABC.add(beta.mul(qap.At(i)).add(alpha.mul(qap.Bt(i))).add(qap.Ct(i)).mul(inverseGamma)); } config.endLog("Computing gammaABC for R1CS verification key"); // The delta inverse product component: (beta*A_i(t) + alpha*B_i(t) + C_i(t)) * delta^{-1}. config.beginLog("Computing deltaABC for R1CS proving key"); final List<FieldT> deltaABC = new ArrayList<>(numVariables - numInputs); for (int i = numInputs; i < numVariables; i++) { deltaABC.add(beta.mul(qap.At(i)).add(alpha.mul(qap.Bt(i))).add(qap.Ct(i)).mul(inverseDelta)); } config.endLog("Computing deltaABC for R1CS proving key"); config.beginLog("Computing query densities"); int nonZeroAt = 0; int nonZeroBt = 0; for (int i = 0; i < qap.numVariables(); i++) { if (!qap.At(i).isZero()) { nonZeroAt++; } if (!qap.Bt(i).isZero()) { nonZeroBt++; } } config.endLog("Computing query densities"); config.beginLog("Generating G1 MSM Window Table"); final G1T generatorG1 = g1Factory.random(config.seed(), config.secureSeed()); final int scalarCountG1 = nonZeroAt + nonZeroBt + numVariables; final int scalarSizeG1 = generatorG1.bitSize(); final int windowSizeG1 = FixedBaseMSM.getWindowSize(scalarCountG1, generatorG1); final List<List<G1T>> windowTableG1 = FixedBaseMSM .getWindowTable(generatorG1, scalarSizeG1, windowSizeG1); config.endLog("Generating G1 MSM Window Table"); config.beginLog("Generating G2 MSM Window Table"); final G2T generatorG2 = g2Factory.random(config.seed(), config.secureSeed()); final int scalarCountG2 = nonZeroBt; final int scalarSizeG2 = generatorG2.bitSize(); final int windowSizeG2 = FixedBaseMSM.getWindowSize(scalarCountG2, generatorG2); final List<List<G2T>> windowTableG2 = FixedBaseMSM .getWindowTable(generatorG2, scalarSizeG2, windowSizeG2); config.endLog("Generating G2 MSM Window Table"); config.beginLog("Generating R1CS proving key"); config.beginRuntime("Proving Key"); final G1T alphaG1 = generatorG1.mul(alpha); final G1T betaG1 = generatorG1.mul(beta); final G2T betaG2 = generatorG2.mul(beta); final G1T deltaG1 = generatorG1.mul(delta); final G2T deltaG2 = generatorG2.mul(delta); config.beginLog("Encode deltaABC for R1CS proving key", false); final List<G1T> deltaABCG1 = FixedBaseMSM .batchMSM(scalarSizeG1, windowSizeG1, windowTableG1, deltaABC); config.endLog("Encode deltaABC for R1CS proving key", false); config.beginLog("Computing query A", false); final List<G1T> queryA = FixedBaseMSM .batchMSM(scalarSizeG1, windowSizeG1, windowTableG1, qap.At()); config.endLog("Computing query A", false); config.beginLog("Computing query B", false); final List<Tuple2<G1T, G2T>> queryB = FixedBaseMSM.doubleBatchMSM( scalarSizeG1, windowSizeG1, windowTableG1, scalarSizeG2, windowSizeG2, windowTableG2, qap.Bt()); config.endLog("Computing query B", false); config.beginLog("Computing query H", false); final FieldT inverseDeltaZt = qap.Zt().mul(delta.inverse()); for (int i = 0; i < qap.Ht().size(); i++) { qap.Ht().set(i, qap.Ht().get(i).mul(inverseDeltaZt)); } final List<G1T> queryH = FixedBaseMSM .batchMSM(scalarSizeG1, windowSizeG1, windowTableG1, qap.Ht()); config.endLog("Computing query H", false); config.endLog("Generating R1CS proving key"); config.endRuntime("Proving Key"); config.beginLog("Generating R1CS verification key"); config.beginRuntime("Verification Key"); final GTT alphaG1betaG2 = pairing.reducedPairing(alphaG1, betaG2); final G2T gammaG2 = generatorG2.mul(gamma); config.beginLog("Encoding gammaABC for R1CS verification key"); final List<G1T> gammaABCG1 = FixedBaseMSM .batchMSM(scalarSizeG1, windowSizeG1, windowTableG1, gammaABC); config.endLog("Encoding gammaABC for R1CS verification key"); config.endLog("Generating R1CS verification key"); config.endRuntime("Verification Key"); // Construct the proving key. final ProvingKey<FieldT, G1T, G2T> provingKey = new ProvingKey<>( alphaG1, betaG1, betaG2, deltaG1, deltaG2, deltaABCG1, queryA, queryB, queryH, r1cs); // Construct the verification key. final VerificationKey<G1T, G2T, GTT> verificationKey = new VerificationKey<>( alphaG1betaG2, gammaG2, deltaG2, gammaABCG1); return new CRS<>(provingKey, verificationKey); } }
[ "howardwu@berkeley.edu" ]
howardwu@berkeley.edu
7cce5e2471c702fa56b6c64c4a4abfd6cda891d2
78c990f287df4886edc0db7094a8c2f77eb16461
/icetone-core/src/main/java/icetone/controls/table/TableCell.java
bd6670a428981fa400e170e33d8baeaeed37fd83
[ "BSD-2-Clause", "LicenseRef-scancode-other-permissive" ]
permissive
Scrappers-glitch/icetone
a91a104571fba25cacc421ef1c3e774de6769a53
1684c2a6da1b1228ddcabafbbbee56286ccc4adb
refs/heads/master
2022-01-08T10:53:47.263080
2019-06-27T11:10:54
2019-06-27T11:10:54
null
0
0
null
null
null
null
UTF-8
Java
false
false
9,102
java
package icetone.controls.table; import java.util.ArrayList; import java.util.List; import java.util.Objects; import com.jme3.font.BitmapFont; import com.jme3.math.Vector2f; import com.jme3.math.Vector4f; import icetone.controls.buttons.Button; import icetone.controls.table.Table.SelectionMode; import icetone.core.AbstractGenericLayout; import icetone.core.BaseElement; import icetone.core.BaseScreen; import icetone.core.Element; import icetone.core.Layout.LayoutType; import icetone.core.PseudoStyles; import icetone.core.utils.MathUtil; import icetone.css.CssProcessor.PseudoStyle; import icetone.text.TextElement; public class TableCell extends Element implements Comparable<TableCell> { static class CellLayout extends AbstractGenericLayout<TableCell, Object> { @Override public Vector2f calcPreferredSize(TableCell parent) { Vector2f prefCell = new Vector2f(); if (!parent.getActualChildren().isEmpty()) { for (BaseElement e : parent.getActualChildren()) { prefCell = MathUtil.max(prefCell, e.calcPreferredSize()); } } if (parent.expanderButton != null) { Vector2f p = parent.expanderButton.calcPreferredSize(); prefCell.x += p.x; prefCell.y = Math.max(prefCell.y, p.y); } prefCell.addLocal(parent.getTotalPadding()); return prefCell; } @Override public void onLayout(TableCell container) { float x = 0, y = 0; for (BaseElement e : container.getActualChildren()) { Vector2f ps = e.calcPreferredSize(); ps.x = Math.min(container.getWidth(), ps.x); if (container.valign.equals(BitmapFont.VAlign.Bottom)) { y = 0; } else if (container.valign.equals(BitmapFont.VAlign.Top)) { y = container.getHeight() - ps.y; } else if (container.valign.equals(BitmapFont.VAlign.Center)) { y = (int) ((container.getHeight() - ps.y) / 2); } if (container.halign.equals(BitmapFont.Align.Left)) { x = 0; } else if (container.halign.equals(BitmapFont.Align.Right)) { x = container.getWidth() - ps.x; } else if (container.halign.equals(BitmapFont.Align.Center)) { x = (container.getWidth() - ps.x) / 2; } e.setBounds(x, y, ps.x, ps.y); } // positionText(); if (container.expanderButton != null) { float bx = x; TableRow row = (TableRow) container.getElementParent(); Vector2f cellArrowSize = container.expanderButton.calcPreferredSize(); if (row != null && container.isTextElement() && row.getElements().indexOf(container) == 0) { bx = (row.table.notLeafCount > 0 ? cellArrowSize.x : 0) + ((container.getDepth(row) - 1) * cellArrowSize.x); } container.expanderButton.setBounds(bx, (container.getHeight() - cellArrowSize.y) / 2f, cellArrowSize.x, cellArrowSize.y); } } @Override protected Vector4f calcTextOffset(TableCell element, TextElement textElement, Vector4f textPadding) { Vector4f to = super.calcTextOffset(element, textElement, textPadding); final TableRow row = (TableRow) element.getElementParent(); if (row != null) { final int cellIndex = row.getElements().indexOf(element); if (cellIndex == 0) { int depth = element.getDepth(row); Vector2f cellArrowSize; TableCell expanderCell; if (row.getParentRow() == null) expanderCell = element; else expanderCell = ((TableCell) row.getParentRow().getElements().get(0)); cellArrowSize = expanderCell.expanderButton == null ? Vector2f.ZERO : expanderCell.expanderButton.calcPreferredSize(); float tx = (row.table.notLeafCount > 0 ? cellArrowSize.x : 0) + (depth * cellArrowSize.x); to = to.clone(); to.x += tx; } } return to; } } protected Button expanderButton; protected BitmapFont.Align halign = BitmapFont.Align.Center; protected BitmapFont.VAlign valign = BitmapFont.VAlign.Center; Object value; /** * Constructor for cell with no text (you probably want to {@link #addChild} * instead) * * @param screen screen * @param value arbitrary value to associate with cell */ public TableCell(BaseScreen screen, Object value) { this(screen, null, value); } /** * Constructor for cell with text. If you use {@link #addChild} the text will be * underneath any children. * * @param screen screen * @param value arbitrary value to associate with cell */ public TableCell(BaseScreen screen, String label, Object value) { super(screen, null, Vector2f.ZERO, null); init(label, value); } /** * Constructor for cell with no text (you probably want to {@link #addChild} * instead) * * @param screen screen * @param value arbitrary value to associate with cell */ public TableCell(Object value) { this(BaseScreen.get(), value); } @Override public PseudoStyles getPseudoStyles() { PseudoStyles pseudoStyles = super.getPseudoStyles(); if (isSelected()) { final TableRow row = (TableRow) getElementParent(); if (row != null && row.table != null && (row.table.selectionMode == SelectionMode.MULTIPLE_CELLS || row.table.selectionMode == SelectionMode.CELL)) { pseudoStyles = PseudoStyles.get(pseudoStyles).addStyle(PseudoStyle.active); } } return pseudoStyles; } public boolean isSelected() { final TableRow row = (TableRow) getElementParent(); if (row != null && row.table != null) { List<Integer> selCells = row.table.selectedCells.get(row.getAllRowIndex()); return selCells == null ? false : selCells.contains(getCellIndex()); } return false; } public int getCellIndex() { final TableRow row = (TableRow) getElementParent(); return row != null ? row.getElements().indexOf(this) : -1; } @SuppressWarnings("unchecked") @Override public int compareTo(TableCell o) { if (value instanceof Comparable && o.value instanceof Comparable) { Object o1 = value; Object o2 = o.value; if (!Objects.equals(o1.getClass(), o2.getClass())) { o1 = String.valueOf(o1); o2 = String.valueOf(o2); } return ((Comparable<Object>) o1).compareTo(o2); } return toString().compareTo(o.toString()); } @Override public TableCell clone() { cloning.set(cloning.get() + 1); try { TableCell cell = new TableCell(screen, value); configureClone(cell); cell.halign = halign; cell.valign = valign; ; if (expanderButton != null) cell.expanderButton = expanderButton.clone(); return cell; } finally { cloning.set(cloning.get() - 1); } } /** * Get the button element used for expanding the cells row. Will only be * available on the first column and if the row contains non-leaf children. * * @return expander button */ public Button getExpanderButton() { return expanderButton; } public BitmapFont.Align getHalign() { return halign; } public BitmapFont.VAlign getVAlign() { return valign; } public Object getValue() { return value; } public void setHAlign(BitmapFont.Align halign) { this.halign = halign; dirtyLayout(false, LayoutType.children, LayoutType.text); layoutChildren(); } public void setVAlign(BitmapFont.VAlign valign) { this.valign = valign; dirtyLayout(false, LayoutType.children, LayoutType.text); layoutChildren(); } protected List<BaseElement> getActualChildren() { List<BaseElement> l = new ArrayList<BaseElement>(); for (BaseElement e : getElements()) { if (!e.equals(expanderButton)) { l.add(e); } } return l; } protected int getDepth(TableRow row) { int depth = 0; if (row != null) { final int cellIndex = new ArrayList<BaseElement>(row.getElements()).indexOf(this); TableRow r = row; if (cellIndex == 0) { // Find the depth of row (this determines indent). Only need // to do this on first column while (r.parentRow != null) { r = r.parentRow; depth++; } } } return depth; } protected void setExpanderIcon() { // Decide whether to show an expander button, and how much to indent // text by final TableRow row = (TableRow) getElementParent(); if (row != null && !row.isLeaf()) { final int cellIndex = new ArrayList<BaseElement>(row.getElements()).indexOf(this); if (cellIndex == 0) { // Should we actually show a button? boolean shouldShow = row.table.notLeafCount > 0; boolean isShowing = expanderButton != null && expanderButton.getElementParent() != null; if (shouldShow) { if (expanderButton == null) { expanderButton = new Button(screen); expanderButton.onMousePressed(evt -> row.setExpanded(!row.isExpanded())); // expanderButton.addClippingLayer(row.table.viewPortClipLayer); } expanderButton.setStyleClass("expander " + (row.isExpanded() ? "expanded" : "collapsed")); if (expanderButton.getElementParent() == null) addElement(expanderButton); // positionText(); } else if (!shouldShow && isShowing) { removeExpanderButton(); } } } } private void init(String label, Object value) { layoutManager = new CellLayout(); setText(label); this.value = value; } private void removeExpanderButton() { if (expanderButton != null) { removeElement(expanderButton); } } }
[ "rockfire.redmoon@gmail.com" ]
rockfire.redmoon@gmail.com
b9e3f70a1e6408ce19a99e3a088d711871ad9d6d
9ca4a64585779a527052ca9067586246fa8b0d7a
/src/met2zadanie19.java
2bb6aef8695fa103d304b8694263734ecdc54f1f
[]
no_license
Shura1988/dom
90359b5eb2454d14c0c8226b0550205aa404f277
071f0dd5fed0d8330792c1cdbf257c1c705a5bf7
refs/heads/master
2020-07-18T19:56:46.321871
2019-10-13T17:14:06
2019-10-13T17:14:06
206,303,659
0
0
null
null
null
null
UTF-8
Java
false
false
1,088
java
/*Имеется строка с текстом. Подсчитать количество слов в тексте. Желательно учесть, что слова могут разделяться несколькими пробелами, в начале и конце текста также могут быть пробелы, но могут и отсутствовать.*/ public class met2zadanie19 { public static void main(String[] args) { int i; String str = "String method in Java with examples. "; System.out.println(str); String [] mass = str.split("[a-zA-Z]+"); for( i = 0; i<mass.length-1; i++) { } System.out.println("Колличество слов в строке " + i); } } //Альтернативный вариант /*StringTokenizer st = new StringTokenizer(str, " ,!.;"); List<String> wordsList = new ArrayList<>(); while (st.hasMoreTokens()) { wordsList.add(st.nextToken()); } wordsList.forEach(System.out::println);*/
[ "shura_88_88@mail.ru" ]
shura_88_88@mail.ru
fd59bad75973f8823c37d52164fc2991063c4b3d
1d40d30b5f0070cfd580a6978abfba51f38bd6a5
/src/test/java/com/example/boogin/ExampleUnitTest.java
17c267485b13b1588ae8fe6d39984d918bc07188
[]
no_license
Alejandr0Aceved0/Boogin
f88ce031ee6786d6bed7a4503bc7efd689d80caf
2251b606679c152621cc560d8ef26ecfce0ce331
refs/heads/master
2022-06-28T22:06:24.946751
2020-05-07T07:43:22
2020-05-07T07:43:22
261,983,444
0
0
null
null
null
null
UTF-8
Java
false
false
379
java
package com.example.boogin; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() { assertEquals(4, 2 + 2); } }
[ "63383732+Alejandr0Aceved0@users.noreply.github.com" ]
63383732+Alejandr0Aceved0@users.noreply.github.com
bb1e5cb1bb8b0c8a82a9ed149219cc8d3c8e6950
7d91c34d3f1e30a77afd3221d0ab595389fbe23e
/java/io/UTFDataFormatException.java
808d7dbcbc858138c49ea423a8b4e3e2723c7ae2
[]
no_license
JobTracker/java-source
a9a6b5c1030f8ee09831922fed8c8e808b75f2f5
15ffe2fc855c459f0397e7f633392177e91b4859
refs/heads/master
2016-09-05T08:59:02.510617
2014-08-25T05:51:05
2014-08-25T05:51:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,519
java
/* * Copyright 1995-2008 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.io; /** * Signals that a malformed string in * <a href="DataInput.html#modified-utf-8">modified UTF-8</a> * format has been read in a data * input stream or by any class that implements the data input * interface. * See the * <a href="DataInput.html#modified-utf-8"><code>DataInput</code></a> * class description for the format in * which modified UTF-8 strings are read and written. * * @author Frank Yellin * @see java.io.DataInput * @see java.io.DataInputStream#readUTF(java.io.DataInput) * @see java.io.IOException * @since JDK1.0 */ public class UTFDataFormatException extends IOException { private static final long serialVersionUID = 420743449228280612L; /** * Constructs a <code>UTFDataFormatException</code> with * <code>null</code> as its error detail message. */ public UTFDataFormatException() { super(); } /** * Constructs a <code>UTFDataFormatException</code> with the * specified detail message. The string <code>s</code> can be * retrieved later by the * <code>{@link java.lang.Throwable#getMessage}</code> * method of class <code>java.lang.Throwable</code>. * * @param s the detail message. */ public UTFDataFormatException(String s) { super(s); } }
[ "1092862062@qq.com" ]
1092862062@qq.com
61779a3a4b6312b23406c4fbec30170e13b4bb86
99bcda32e79d83fb41353b78451c840a19f00f36
/src/main/java/org/kumoricon/model/user/User.java
36b2d3701700d5170f732913b3599b0bce02484a
[ "MIT" ]
permissive
micahcowan/kumoreg
06296da3e3b6c958672d8d144f099bd26e546af4
6bad90a7606b66515a7214e81daadbb65637ecdd
refs/heads/master
2021-01-09T06:28:54.039949
2016-11-06T04:37:03
2016-11-06T04:37:03
55,361,702
0
0
null
2016-04-03T18:23:31
2016-04-03T18:23:31
null
UTF-8
Java
false
false
4,745
java
package org.kumoricon.model.user; import jdk.nashorn.internal.runtime.regexp.joni.exception.ValueException; import org.kumoricon.model.Record; import org.kumoricon.model.role.Role; import javax.crypto.SecretKeyFactory; import javax.crypto.spec.PBEKeySpec; import javax.persistence.*; import javax.validation.constraints.NotNull; import java.math.BigInteger; import static java.nio.charset.StandardCharsets.UTF_8; @Entity @Table(name = "users") public class User extends Record { public static final String DEFAULT_PASSWORD = "password"; @NotNull @Column(unique=true) private String username; @NotNull private String password; private String firstName; private String lastName; private String phone; @NotNull private Boolean enabled; @NotNull private Boolean resetPassword; // On login, prompt to reset password @ManyToOne(cascade=CascadeType.MERGE) private Role role; private String salt; @NotNull @Column(unique = true) private String badgePrefix; // User will generate badges with this prefix @NotNull private Integer lastBadgeNumberCreated; @NotNull private Integer sessionNumber; // Used for printing report when cashing out /** * Creating a new user? Use UserFactory instead of creating the user object directly */ public User() {} public String getUsername() { return username; } public void setUsername(String username) { if (username != null) { this.username = username.toLowerCase(); } } public String getPassword() { return password; } public void setPassword(String newPassword) { if (newPassword == null || newPassword.trim().equals("")) { throw new ValueException("Password cannot be blank"); } this.password = hashPassword(newPassword, salt); } public Boolean checkPassword(String password) { if (password == null) return false; String hash = hashPassword(password, salt); return hash != null && hash.equals(this.password); } public Role getRole() { return role; } public void setRole(Role role) { this.role = role; } public String getSalt() { return salt; } public void setSalt(String salt) { this.salt = salt; } public Boolean getEnabled() { return enabled; } public void setEnabled(Boolean enabled) { this.enabled = enabled; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public Boolean getResetPassword() { return resetPassword; } public void setResetPassword(Boolean resetPassword) { this.resetPassword = resetPassword; } public void resetPassword() { setPassword(DEFAULT_PASSWORD); this.resetPassword = true; } public String getBadgePrefix() { return badgePrefix; } public void setBadgePrefix(String badgePrefix) { this.badgePrefix = badgePrefix; } public Integer getLastBadgeNumberCreated() { return lastBadgeNumberCreated; } public void setLastBadgeNumberCreated(Integer lastBadgeNumberCreated) { this.lastBadgeNumberCreated = lastBadgeNumberCreated; } public Integer getNextBadgeNumber() { if (lastBadgeNumberCreated == null) { lastBadgeNumberCreated = 0; } lastBadgeNumberCreated += 1; return lastBadgeNumberCreated; } private static String hashPassword(String password, String salt){ char[] passwordChars = password.toCharArray(); byte[] saltBytes = salt.getBytes(UTF_8); PBEKeySpec spec = new PBEKeySpec(passwordChars, saltBytes, 1000, 256); try { SecretKeyFactory key = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1"); byte[] hashedPassword = key.generateSecret(spec).getEncoded(); return String.format("%x", new BigInteger(hashedPassword)); } catch (Exception e) { System.out.println(e.getMessage()); } return null; } public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public Integer getSessionNumber() { return sessionNumber; } public void setSessionNumber(Integer sessionNumber) { this.sessionNumber = sessionNumber; } public String toString() { if (id != null) { return String.format("[User %s: %s]", id, username); } else { return String.format("[User: %s]", username); } } public boolean hasRight(String right) { return role != null && role.hasRight(right); } }
[ "jason@sheersky.com" ]
jason@sheersky.com
0416b82dce5794271cfb3dca9aecbe9c4b7f252e
95e6cd5720fe15280170c1f6388f946359420174
/src/main/java/com/example/demorest/domain/Student.java
fc2552001bd050a10300fb6789a487b6c9a7a620
[]
no_license
KyawKyawLwinThant/mvc-rest
736644b02ad53152eaccf105fc8ac1930fd39e63
6da73b2baf3a47e16ca1a6e82afd67f7b0fc0691
refs/heads/master
2021-01-05T00:59:31.924808
2020-02-16T02:59:14
2020-02-16T02:59:14
240,822,175
1
0
null
null
null
null
UTF-8
Java
false
false
1,053
java
package com.example.demorest.domain; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public class Student { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer id; private String name; private int age; private String school; public Student(){ } public Student(String name,int age,String shcool){ this.name=name; this.age=age; this.school=shcool; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public String getSchool() { return school; } public void setSchool(String school) { this.school = school; } }
[ "kyawkyawlwinthant@gmail.com" ]
kyawkyawlwinthant@gmail.com
e15883d778c7c65e60261849dee903d444bb9826
4659599b39d82e303864136c0bea683a9094049a
/src/me/FreakyPear5/HGMCCore/Commands/BuyCommand.java
65f5c0ab595eeea6267c081513c333f67084e5a2
[]
no_license
skaerf/HGMCCore
d0d32e2a7053e6e1b81d2bb6b4939ddfaa1b329a
3d95b3650965c2516b59a598cb7d4a019daa866c
refs/heads/master
2021-05-24T14:49:38.129565
2020-04-06T20:55:31
2020-04-06T20:55:31
253,613,186
1
0
null
null
null
null
UTF-8
Java
false
false
684
java
package me.FreakyPear5.HGMCCore.Commands; import org.bukkit.ChatColor; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; public class BuyCommand implements CommandExecutor { public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) { Player player = (Player) sender; if (sender instanceof Player) { player.sendMessage(ChatColor.translateAlternateColorCodes('&', "&c&lHyperGames MC >> &aTo use the Buycraft, please go to the hub using /hub, then run /buy again!")); } else { sender.sendMessage("dwanifanwf"); } return true; } }
[ "lawrence.harrison@outlook.com" ]
lawrence.harrison@outlook.com
c4920180d8f1535cc73a78924d9eddb2fb967901
1c110e562561dd1c880658a4af7e9572779f719c
/percents/Percents.java
0cfc97a2f045c2a4184d687aa08c094630c05e9f
[]
no_license
allicen/Java-1000
f871112959de872ccf798e18b42a486bf82d557a
614c2af783aa651aed2d996bdb3cfd18c1c6fc03
refs/heads/master
2023-08-16T19:39:56.066355
2022-08-23T18:29:37
2022-08-23T18:29:37
191,978,827
202
71
null
2023-08-13T16:38:33
2019-06-14T17:00:05
Java
UTF-8
Java
false
false
4,054
java
package percents; import java.io.FileReader; import java.io.IOException; import java.io.PrintWriter; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import java.util.Scanner; public class Percents { public static void main(String[] args) throws IOException { Scanner sc = new Scanner(new FileReader("input.txt")); sc.nextLine(); ArrayList<Integer> proportions = new ArrayList<>(); ArrayList<String> importance = new ArrayList<>(); int count = 0; while (sc.hasNextLine()) { String[] line = sc.nextLine().split(" "); importance.add(line[0]); int percent = Integer.parseInt(line[1]); proportions.add(percent); count += percent; } ArrayList<Map<Integer, Integer>> percents = new ArrayList<>(); double percentAverage = 100/(double)count; int percentCount = 0; int priorityHighCount = 0; // дробный важный компонент int priorityLowCount = 0; // дробный неважный компонент for (int i = 0; i < proportions.size(); i++) { double percentFloat = proportions.get(i) * percentAverage; int percent = (int) Math.floor(percentFloat); int priority = percentFloat != percent && importance.get(i).equals("+") ? 2 : percentFloat != percent && importance.get(i).equals("-") ? 1 : 0; if (priority == 2) { priorityHighCount++; } else if (priority == 1) { priorityLowCount++; } Map<Integer, Integer> percentInfo = new HashMap<>(); percentInfo.put(percent, priority); percents.add(percentInfo); percentCount += percent; } int percentageDifference = 100 - percentCount; int priorityTwo = percentageDifference - priorityHighCount; // количество процентов с приоритетом 2 int priorityOne = 0; // кол-во процентов с приоритетом 1 int priorityZero = 0; // количество процентов с приоритетом 0 if (priorityTwo <= 0) { priorityTwo = percentageDifference; } else { priorityTwo = priorityHighCount; priorityOne = percentageDifference - priorityLowCount; if (priorityOne <= 0) { priorityOne = priorityLowCount; } else { priorityZero = percentageDifference - (priorityHighCount + priorityLowCount); } } for (int i = 0; i < percents.size(); i++) { if (percentageDifference == 0) { break; } Map<Integer, Integer> mapTmp = percents.get(i); for (int key : mapTmp.keySet()) { int priority = mapTmp.get(key); if (priority == 2 && priorityTwo > 0) { mapTmp.put(key+1, priority); mapTmp.remove(key); priorityTwo--; percentageDifference--; percents.set(i, mapTmp); } else if (priority == 1 && priorityOne > 0) { mapTmp.put(key+1, priority); mapTmp.remove(key); priorityOne--; percentageDifference--; percents.set(i, mapTmp); } else if (priority == 0 && priorityZero > 0) { mapTmp.put(key+1, priority); mapTmp.remove(key); priorityZero--; percentageDifference--; percents.set(i, mapTmp); } } } PrintWriter out = new PrintWriter(System.out); for (Map<Integer, Integer> percent : percents) { for (int key : percent.keySet()) { out.println(key); } } out.flush(); } }
[ "ellena.hella@yandex.ru" ]
ellena.hella@yandex.ru
6505db26fe3c42a5da9e29879344e095ed97810c
370756497d0f4dd28a9021a1324aeeff4fba96b8
/Perfect/src/cn/baidu/File/PrintWriter/PrintWriter_Test2.java
caf3f208ab5a286d0f795f63590edf439bac85d9
[]
no_license
chenguangbo/All
f4932a25bbc5fc6b9cbd070e6dcbea31a5d6e4f3
c1e00428daefa7375a4ce05f709536a8e07692ab
refs/heads/master
2021-09-11T20:58:26.805224
2018-04-12T09:35:36
2018-04-12T09:35:36
93,389,285
0
0
null
null
null
null
UTF-8
Java
false
false
526
java
package cn.baidu.File.PrintWriter; import java.io.FileOutputStream; import java.io.IOException; import java.io.PrintWriter; public class PrintWriter_Test2 { public static void main(String[] args) throws IOException { FileOutputStream out1 = new FileOutputStream("字符打印流.txt"); PrintWriter out = new PrintWriter(out1,true); out.println("字符打印劉"); out.println("字符打印劉"); out.println("字符打印劉"); out.close(); System.out.println("写入数据完成"); } }
[ "cgb2499404424@163.com" ]
cgb2499404424@163.com
cb2fd5cec090ee9ec30ee84898f7576d45ce7a8d
12ed27c1ca818a1dff60eeb3c43587f496bb08fe
/Facade/src/main/java/src/java/com/DwarvenMineWorker.java
41349623008d5c197ff453ca5c941d7c0631f22c
[]
no_license
tropik555/Patterns
40f7f8b437b6b756ac5dd710e22cdc1e0d98486d
6a81d2b49b7842e676b3bfe74b508a3ff717fda9
refs/heads/master
2023-08-13T05:15:11.316446
2021-09-20T12:17:26
2021-09-20T12:17:26
408,419,847
0
0
null
2021-09-20T12:17:27
2021-09-20T11:42:08
Java
UTF-8
Java
false
false
1,498
java
package src.java.com; import java.util.Arrays; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * DwarvenMineWorker is one of the goldmine subsystems. */ public abstract class DwarvenMineWorker { private static final Logger LOGGER = LoggerFactory.getLogger(DwarvenMineWorker.class); public void goToSleep() { LOGGER.info("{} goes to sleep.", name()); } public void wakeUp() { LOGGER.info("{} wakes up.", name()); } public void goHome() { LOGGER.info("{} goes home.", name()); } public void goToMine() { LOGGER.info("{} goes to the mine.", name()); } private void action(Action action) { switch (action) { case GO_TO_SLEEP: goToSleep(); break; case WAKE_UP: wakeUp(); break; case GO_HOME: goHome(); break; case GO_TO_MINE: goToMine(); break; case WORK: work(); break; default: LOGGER.info("Undefined action"); break; } } /** * Perform actions. */ public void action(Action... actions) { Arrays.stream(actions).forEach(this::action); } public abstract void work(); public abstract String name(); enum Action { GO_TO_SLEEP, WAKE_UP, GO_HOME, GO_TO_MINE, WORK } }
[ "ylevch@softserveinc.com" ]
ylevch@softserveinc.com
3dc4f1959ecab620a88b319d4bb3dfca4db116d3
722763ae56f2208bb536f71c90f8d035ce141867
/app/src/main/java/com/kmproject/belajarfragment/FirstFragment.java
3f5d7f82220d49ba02890e7d8513535586132ab9
[]
no_license
AbdulFattahM/project
bc162d4e99500333163c9f3ca905f22544fea726
feb4b555eaa92bae1bf89524c4ea3693b81836c9
refs/heads/master
2023-04-19T21:31:22.098870
2021-05-09T22:37:50
2021-05-09T22:37:50
365,859,890
0
0
null
null
null
null
UTF-8
Java
false
false
2,505
java
package com.kmproject.belajarfragment; import android.os.Bundle; import androidx.fragment.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import android.webkit.WebView; import android.webkit.WebSettings; import android.webkit.WebViewClient; /** * A simple {@link Fragment} subclass. * Use the {@link FirstFragment#newInstance} factory method to * create an instance of this fragment. */ public class FirstFragment extends Fragment { // TODO: Rename parameter arguments, choose names that match // the fragment initialization parameters, e.g. ARG_ITEM_NUMBER private static final String ARG_PARAM1 = "param1"; private static final String ARG_PARAM2 = "param2"; // TODO: Rename and change types of parameters private String mParam1; private String mParam2; private WebView webviewku; private WebSettings websettingku; public FirstFragment() { // Required empty public constructor } /** * Use this factory method to create a new instance of * this fragment using the provided parameters. * * @param param1 Parameter 1. * @param param2 Parameter 2. * @return A new instance of fragment FirstFragment. */ // TODO: Rename and change types and number of parameters public static FirstFragment newInstance(String param1, String param2) { FirstFragment fragment = new FirstFragment(); Bundle args = new Bundle(); args.putString(ARG_PARAM1, param1); args.putString(ARG_PARAM2, param2); fragment.setArguments(args); return fragment; } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); if (getArguments() != null) { mParam1 = getArguments().getString(ARG_PARAM1); mParam2 = getArguments().getString(ARG_PARAM2); } } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment View view = inflater.inflate(R.layout.fragment_first, container, false); webviewku = view.findViewById(R.id.webview); websettingku = webviewku.getSettings(); webviewku.setWebViewClient(new WebViewClient()); webviewku.loadUrl("https://id.wikipedia.org/wiki/Halaman_Utama"); return view; } }
[ "faizahnadiyah@gmail.com" ]
faizahnadiyah@gmail.com
072037297dcf6b880320320af6ea3b4b219a2dd2
e27677c1e0864562dcb521f09a112bd43a66a803
/src/main/java/ru/geekbrains/spring/lesson3c/repositories/BoxRepository.java
09609cc432b1dbcdd097d51875034185c1e7a9ce
[]
no_license
AntonKurbet/GeekBrains.Spring1
ef24cd8bec0cf7d25a00ca51c4313c7a215c3e0f
60e960f8e52caa526416f1a1ce3ecae025a2b3a6
refs/heads/master
2023-06-06T02:56:46.143246
2021-07-01T19:21:11
2021-07-01T19:21:11
337,640,095
0
0
null
null
null
null
UTF-8
Java
false
false
924
java
package ru.geekbrains.spring.lesson3c.repositories; import org.springframework.stereotype.Component; import org.springframework.web.bind.annotation.PostMapping; import ru.geekbrains.spring.lesson3c.model.Box; import javax.annotation.PostConstruct; import java.util.ArrayList; import java.util.Collections; import java.util.List; @Component public class BoxRepository { private List<Box> boxes; @PostConstruct public void init() { boxes = new ArrayList<>(); boxes.add(new Box(1L, "White", 25)); boxes.add(new Box(2L, "Red", 15)); boxes.add(new Box(3L, "Yellow", 25)); boxes.add(new Box(4L, "Yellow", 22)); } public List<Box> getAllBoxes() { return Collections.unmodifiableList(boxes); } public void save(Box box) { boxes.add(box); } public void deleteById(Long id) { boxes.removeIf(b -> b.getId().equals(id)); } }
[ "anton.kurbet@gmail.com" ]
anton.kurbet@gmail.com
9e51ad7efa23cd331bc5aa6550799af6999bba4d
04162a72ffae0044bdeef09b5af5c2afd396650e
/packages/espresso/android/src/main/java/androidx/test/espresso/flutter/exception/InvalidFlutterViewException.java
d2d32869dd66fb3d6dc152ac370005cd793dcbb3
[ "BSD-3-Clause" ]
permissive
buaashuai/plugins
cd99fc068d4726c2d0bd411b705a58a62d2f0988
20026ee772d6b87d93edb0ec60bf973a114a8bfc
refs/heads/master
2022-01-23T03:20:08.127719
2022-01-17T11:56:19
2022-01-17T11:56:19
185,991,065
12
6
BSD-3-Clause
2021-05-27T04:19:03
2019-05-10T13:14:06
Dart
UTF-8
Java
false
false
592
java
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package androidx.test.espresso.flutter.exception; import androidx.test.espresso.EspressoException; /** Indicates that the {@code View} that Espresso operates on is not a valid Flutter View. */ public final class InvalidFlutterViewException extends RuntimeException implements EspressoException { /** Constructs with an error message. */ public InvalidFlutterViewException(String message) { super(message); } }
[ "noreply@github.com" ]
buaashuai.noreply@github.com
aeb04afd49522e72ffca57ab736218e222ec6f8e
7e43011c818cd95460e02930bec0981b65d032c7
/src/main/java/com/github/badoualy/telegram/tl/api/TLInputGameShortName.java
ad1f836463c0a8792105fd1255c316b78b74b3a8
[ "MIT" ]
permissive
shahrivari/kotlogram
48faef9ff5cf1695c18cf02fb4fb3ed8edcc571e
2281523c2a99692087bdcf6b2034bca6b2dc645c
refs/heads/master
2020-09-07T11:37:15.597377
2019-11-10T12:18:56
2019-11-10T12:18:56
220,767,354
0
2
MIT
2019-11-10T09:20:24
2019-11-10T09:20:23
null
UTF-8
Java
false
false
2,429
java
package com.github.badoualy.telegram.tl.api; import com.github.badoualy.telegram.tl.TLContext; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import static com.github.badoualy.telegram.tl.StreamUtils.readTLObject; import static com.github.badoualy.telegram.tl.StreamUtils.readTLString; import static com.github.badoualy.telegram.tl.StreamUtils.writeString; import static com.github.badoualy.telegram.tl.StreamUtils.writeTLObject; import static com.github.badoualy.telegram.tl.TLObjectUtils.SIZE_CONSTRUCTOR_ID; import static com.github.badoualy.telegram.tl.TLObjectUtils.computeTLStringSerializedSize; /** * @author Yannick Badoual yann.badoual@gmail.com * @see <a href="http://github.com/badoualy/kotlogram">http://github.com/badoualy/kotlogram</a> */ public class TLInputGameShortName extends TLAbsInputGame { public static final int CONSTRUCTOR_ID = 0xc331e80a; protected TLAbsInputUser botId; protected String shortName; private final String _constructor = "inputGameShortName#c331e80a"; public TLInputGameShortName() { } public TLInputGameShortName(TLAbsInputUser botId, String shortName) { this.botId = botId; this.shortName = shortName; } @Override public void serializeBody(OutputStream stream) throws IOException { writeTLObject(botId, stream); writeString(shortName, stream); } @Override @SuppressWarnings({"unchecked", "SimplifiableConditionalExpression"}) public void deserializeBody(InputStream stream, TLContext context) throws IOException { botId = readTLObject(stream, context, TLAbsInputUser.class, -1); shortName = readTLString(stream); } @Override public int computeSerializedSize() { int size = SIZE_CONSTRUCTOR_ID; size += botId.computeSerializedSize(); size += computeTLStringSerializedSize(shortName); return size; } @Override public String toString() { return _constructor; } @Override public int getConstructorId() { return CONSTRUCTOR_ID; } public TLAbsInputUser getBotId() { return botId; } public void setBotId(TLAbsInputUser botId) { this.botId = botId; } public String getShortName() { return shortName; } public void setShortName(String shortName) { this.shortName = shortName; } }
[ "yann.badoual@gmail.com" ]
yann.badoual@gmail.com
928b9266d02d075bb3d63828695738c9cd8ba60e
549e65922b180854d667d8fb8c3188a525ce2a4a
/src/main/java/services/DomainImplementation.java
7cdbcbade1a8be03a667b3d4c11159332e9f591c
[]
no_license
eechava6/VARIAMOS-SERVICES
829271b8e8c06358ddeca40dc0538c70eef7ddc6
207a5732e9ac60cd8def9785d82dce60b08c10a0
refs/heads/master
2020-04-24T12:45:36.611269
2019-02-11T16:38:44
2019-02-11T16:38:44
171,965,603
0
0
null
2019-02-22T00:16:10
2019-02-22T00:16:10
null
UTF-8
Java
false
false
3,059
java
package services; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.CrossOrigin; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonParser; import components.fragop.Fragmental; @Controller public class DomainImplementation { @CrossOrigin @RequestMapping(value="/DomainImplementation/execute", method=RequestMethod.POST, produces="text/plain") @ResponseBody public String executeDerivation(@RequestBody String data_collected) { String completedMessage=""; boolean some_files=false; Resource resource_derived = new ClassPathResource("/uploads/component_derived/"); Resource resource_pool = new ClassPathResource("/uploads/component_pool/"); JsonParser parser = new JsonParser(); JsonObject rootObj = parser.parse(data_collected).getAsJsonObject(); JsonElement data = rootObj.get("data"); String data_string = data.getAsString(); JsonArray rootArray = parser.parse(data_string).getAsJsonArray(); JsonArray rootFiles = rootArray.get(0).getAsJsonArray(); JsonArray rootCustomization = rootArray.get(1).getAsJsonArray(); JsonArray rootParser = rootArray.get(2).getAsJsonArray(); List<Map<String, String>> files = new ArrayList<>(); for (int i = 0; i < rootFiles.size(); i++) { some_files=true; Map<String, String> file_map = new HashMap<String, String>(); JsonObject current_file = rootFiles.get(i).getAsJsonObject(); file_map.put("component_folder", current_file.get("component_folder").getAsString()); file_map.put("ID", current_file.get("ID").getAsString()); file_map.put("filename", current_file.get("filename").getAsString()); if(current_file.get("destination")!=null) { file_map.put("destination", current_file.get("destination").getAsString()); }else { file_map.put("destination", ""); } files.add(file_map); } if(some_files) { if(resource_derived.exists()) { try { Fragmental.principal(files,resource_derived.getFile(),resource_pool.getFile()); String found_errors=Fragmental.get_errors(); if(found_errors.equals("")) { completedMessage=found_errors+"!!!Components successfully assembled!!!"; }else { completedMessage=found_errors+"!!!Components assembled with multiple errors!!!"; } }catch(Exception e){ System.out.println(e.getMessage()); } } }else { completedMessage="No components to assemble"; } return completedMessage; } }
[ "yo@danielgara.com" ]
yo@danielgara.com
70eebcf16488dc4b3754c0b7bdfb5aa9249df7b3
cf36f2b8e6ba8586b2b4f36e6ee093d86f15ea43
/src/main/java/gherkinchklist/Messages.java
c1b01743d866148b544cbf09755427dac335cc2a
[]
no_license
lecaoquochung/gherkin-chklist
6c43f932a2cd523a451c259263a4ddfcdc09767d
78e9a32bbc040f2c5bdc8dabc6b11d1095de5979
refs/heads/master
2023-03-19T14:55:01.949915
2017-01-13T17:57:22
2017-01-13T17:57:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
256
java
package gherkinchklist; import java.util.ResourceBundle; public class Messages { static ResourceBundle rb = ResourceBundle.getBundle("gherkinchklist.resources"); public static String get(String key) { return rb.getString(key); } }
[ "leonardo.cruz@basis.com.br" ]
leonardo.cruz@basis.com.br
c3de556bdc98d04e50d2c62642906e1e18b8aabb
065c1f648e8dd061a20147ff9c0dbb6b5bc8b9be
/eclipseswt_cluster/7669/src_1.java
67efe8138a09495963a0242d9696c5ea011555fe
[]
no_license
martinezmatias/GenPat-data-C3
63cfe27efee2946831139747e6c20cf952f1d6f6
b360265a6aa3bb21bd1d64f1fc43c3b37d0da2a4
refs/heads/master
2022-04-25T17:59:03.905613
2020-04-15T14:41:34
2020-04-15T14:41:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
17,650
java
/******************************************************************************* * Copyright (c) 2007, 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.swt.widgets; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.*; import org.eclipse.swt.internal.cocoa.*; /** * Instances of this class represent input method editors. * These are typically in-line pre-edit text areas that allow * the user to compose characters from Far Eastern languages * such as Japanese, Chinese or Korean. * * <dl> * <dt><b>Styles:</b></dt> * <dd>(none)</dd> * <dt><b>Events:</b></dt> * <dd>ImeComposition</dd> * </dl> * <p> * IMPORTANT: This class is <em>not</em> intended to be subclassed. * </p> * * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> * * @since 3.4 * @noextend This class is not intended to be subclassed by clients. */ public class IME extends Widget { Canvas parent; int caretOffset; int startOffset; int commitCount; String text; int [] ranges; TextStyle [] styles; static final int UNDERLINE_THICK = 1 << 16; /** * Prevents uninitialized instances from being created outside the package. */ IME () { } /** * Constructs a new instance of this class given its parent * and a style value describing its behavior and appearance. * <p> * The style value is either one of the style constants defined in * class <code>SWT</code> which is applicable to instances of this * class, or must be built by <em>bitwise OR</em>'ing together * (that is, using the <code>int</code> "|" operator) two or more * of those <code>SWT</code> style constants. The class description * lists the style constants that are applicable to the class. * Style bits are also inherited from superclasses. * </p> * * @param parent a canvas control which will be the parent of the new instance (cannot be null) * @param style the style of control to construct * * @exception IllegalArgumentException <ul> * <li>ERROR_NULL_ARGUMENT - if the parent is null</li> * </ul> * @exception SWTException <ul> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent</li> * <li>ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass</li> * </ul> * * @see Widget#checkSubclass * @see Widget#getStyle */ public IME (Canvas parent, int style) { super (parent, style); this.parent = parent; createWidget (); } int /*long*/ attributedSubstringFromRange (int /*long*/ id, int /*long*/ sel, int /*long*/ rangePtr) { Event event = new Event (); event.detail = SWT.COMPOSITION_SELECTION; sendEvent (SWT.ImeComposition, event); NSRange range = new NSRange (); OS.memmove (range, rangePtr, NSRange.sizeof); int start = (int)/*64*/range.location; int end = (int)/*64*/(range.location + range.length); if (event.start <= start && start <= event.end && event.start <= end && end <= event.end) { NSString str = NSString.stringWith (event.text.substring(start - event.start, end - event.start)); NSAttributedString attriStr = ((NSAttributedString)new NSAttributedString().alloc()).initWithString(str, null); attriStr.autorelease (); return attriStr.id; } return 0; } int /*long*/ characterIndexForPoint (int /*long*/ id, int /*long*/ sel, int /*long*/ point) { if (!isInlineEnabled ()) return OS.NSNotFound; NSPoint pt = new NSPoint (); OS.memmove (pt, point, NSPoint.sizeof); NSView view = parent.view; pt = view.window ().convertScreenToBase (pt); pt = view.convertPoint_fromView_ (pt, null); Event event = new Event (); event.detail = SWT.COMPOSITION_OFFSET; event.x = (int) pt.x; event.y = (int) pt.y; sendEvent (SWT.ImeComposition, event); int offset = event.index + event.count; return offset != -1 ? offset : OS.NSNotFound; } void createWidget () { text = ""; startOffset = -1; if (parent.getIME () == null) { parent.setIME (this); } } NSRect firstRectForCharacterRange(int /*long*/ id, int /*long*/ sel, int /*long*/ range) { NSRect rect = new NSRect (); Caret caret = parent.caret; if (caret != null) { NSView view = parent.view; NSPoint pt = new NSPoint (); pt.x = caret.x; pt.y = caret.y + caret.height; pt = view.convertPoint_toView_ (pt, null); pt = view.window ().convertBaseToScreen (pt); rect.x = pt.x; rect.y = pt.y; rect.width = caret.width; rect.height = caret.height; } return rect; } /** * Returns the offset of the caret from the start of the document. * The caret is within the current composition. * * @return the caret offset * * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public int getCaretOffset () { checkWidget (); return startOffset + caretOffset; } /** * Returns the commit count of the composition. This is the * number of characters that have been composed. When the * commit count is equal to the length of the composition * text, then the in-line edit operation is complete. * * @return the commit count * * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see IME#getText */ public int getCommitCount () { checkWidget (); return commitCount; } /** * Returns the offset of the composition from the start of the document. * This is the start offset of the composition within the document and * in not changed by the input method editor itself during the in-line edit * session. * * @return the offset of the composition * * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public int getCompositionOffset () { checkWidget (); return startOffset; } /** * Returns the ranges for the style that should be applied during the * in-line edit session. * <p> * The ranges array contains start and end pairs. Each pair refers to * the corresponding style in the styles array. For example, the pair * that starts at ranges[n] and ends at ranges[n+1] uses the style * at styles[n/2] returned by <code>getStyles()</code>. * </p> * @return the ranges for the styles * * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see IME#getStyles */ public int [] getRanges () { checkWidget (); if (ranges == null) return new int [0]; int [] result = new int [ranges.length]; for (int i = 0; i < result.length; i++) { result [i] = ranges [i] + startOffset; } return result; } /** * Returns the styles for the ranges. * <p> * The ranges array contains start and end pairs. Each pair refers to * the corresponding style in the styles array. For example, the pair * that starts at ranges[n] and ends at ranges[n+1] uses the style * at styles[n/2]. * </p> * * @return the ranges for the styles * * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> * * @see IME#getRanges */ public TextStyle [] getStyles () { checkWidget (); if (styles == null) return new TextStyle [0]; TextStyle [] result = new TextStyle [styles.length]; System.arraycopy (styles, 0, result, 0, styles.length); return result; } TextStyle getStyle (NSDictionary attribs) { NSArray keys = attribs.allKeys (); int /*long*/ count = keys.count (); TextStyle style = new TextStyle (); for (int j = 0; j < count; j++) { NSString key = new NSString (keys.objectAtIndex (j)); if (key.isEqualTo (OS.NSBackgroundColorAttributeName)) { NSColor color = new NSColor (attribs.objectForKey (key)).colorUsingColorSpaceName (OS.NSCalibratedRGBColorSpace); float /*double*/ [] rgbColor = new float /*double*/ []{color.redComponent(), color.greenComponent(), color.blueComponent(), color.alphaComponent()}; style.background = Color.cocoa_new (display, rgbColor); } else if (key.isEqualTo (OS.NSForegroundColorAttributeName)) { NSColor color = new NSColor (attribs.objectForKey (key)).colorUsingColorSpaceName (OS.NSCalibratedRGBColorSpace); float /*double*/ [] rgbColor = new float /*double*/ []{color.redComponent(), color.greenComponent(), color.blueComponent(), color.alphaComponent()}; style.foreground = Color.cocoa_new (display, rgbColor); } else if (key.isEqualTo (OS.NSUnderlineColorAttributeName)) { NSColor color = new NSColor (attribs.objectForKey (key)).colorUsingColorSpaceName (OS.NSCalibratedRGBColorSpace); float /*double*/ [] rgbColor = new float /*double*/ []{color.redComponent(), color.greenComponent(), color.blueComponent(), color.alphaComponent()}; style.underlineColor = Color.cocoa_new (display, rgbColor); } else if (key.isEqualTo (OS.NSUnderlineStyleAttributeName)) { NSNumber value = new NSNumber (attribs.objectForKey (key)); switch (value.intValue ()) { case OS.NSUnderlineStyleSingle: style.underlineStyle = SWT.UNDERLINE_SINGLE; break; case OS.NSUnderlineStyleDouble: style.underlineStyle = SWT.UNDERLINE_DOUBLE; break; case OS.NSUnderlineStyleThick: style.underlineStyle = UNDERLINE_THICK; break; } style.underline = value.intValue () != OS.NSUnderlineStyleNone; } else if (key.isEqualTo (OS.NSStrikethroughColorAttributeName)) { NSColor color = new NSColor (attribs.objectForKey (key)).colorUsingColorSpaceName (OS.NSCalibratedRGBColorSpace); float /*double*/ [] rgbColor = new float /*double*/ []{color.redComponent(), color.greenComponent(), color.blueComponent(), color.alphaComponent()}; style.strikeoutColor = Color.cocoa_new (display, rgbColor); } else if (key.isEqualTo (OS.NSStrikethroughStyleAttributeName)) { NSNumber value = new NSNumber (attribs.objectForKey (key)); style.strikeout = value.intValue () != OS.NSUnderlineStyleNone; } else if (key.isEqualTo (OS.NSFontAttributeName)) { NSFont font = new NSFont (attribs.objectForKey (key)); font.retain(); style.font = Font.cocoa_new (display, font); } } return style; } /** * Returns the composition text. * <p> * The text for an IME is the characters in the widget that * are in the current composition. When the commit count is * equal to the length of the composition text, then the * in-line edit operation is complete. * </p> * * @return the widget text * * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public String getText () { checkWidget (); return text; } /** * Returns <code>true</code> if the caret should be wide, and * <code>false</code> otherwise. In some languages, for example * Korean, the caret is typically widened to the width of the * current character in the in-line edit session. * * @return the wide caret state * * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public boolean getWideCaret() { return false; } boolean hasMarkedText (int /*long*/ id, int /*long*/ sel) { return text.length () != 0; } boolean insertText (int /*long*/ id, int /*long*/ sel, int /*long*/ string) { if (startOffset == -1) return true; NSString str = new NSString (string); if (str.isKindOfClass (OS.class_NSAttributedString)) { str = new NSAttributedString (string).string (); } int length = (int)/*64*/str.length (); int end = startOffset + text.length (); resetStyles (); caretOffset = commitCount = length; Event event = new Event (); event.detail = SWT.COMPOSITION_CHANGED; event.start = startOffset; event.end = end; event.text = text = str.getString(); sendEvent (SWT.ImeComposition, event); text = ""; caretOffset = commitCount = 0; startOffset = -1; return event.doit; } boolean isInlineEnabled () { return hooks (SWT.ImeComposition); } NSRange markedRange (int /*long*/ id, int /*long*/ sel) { NSRange range = new NSRange (); if (startOffset != -1) { range.location = startOffset; range.length = text.length (); } else { range.location = OS.NSNotFound; } return range; } void resetStyles () { if (styles != null) { for (int i = 0; i < styles.length; i++) { TextStyle style = styles [i]; Font font = style.font; if (font != null) font.handle.release (); } } styles = null; ranges = null; } void releaseParent () { super.releaseParent (); if (this == parent.getIME ()) parent.setIME (null); } void releaseWidget () { super.releaseWidget (); parent = null; text = null; resetStyles (); } NSRange selectedRange (int /*long*/ id, int /*long*/ sel) { Event event = new Event (); event.detail = SWT.COMPOSITION_SELECTION; sendEvent (SWT.ImeComposition, event); NSRange range = new NSRange (); range.location = event.start; range.length = event.text.length (); return range; } /** * Sets the offset of the composition from the start of the document. * This is the start offset of the composition within the document and * in not changed by the input method editor itself during the in-line edit * session but may need to be changed by clients of the IME. For example, * if during an in-line edit operation, a text editor inserts characters * above the IME, then the IME must be informed that the composition * offset has changed. * * @param offset the offset of the composition * * @exception SWTException <ul> * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> * </ul> */ public void setCompositionOffset (int offset) { checkWidget (); if (offset < 0) return; if (startOffset != -1) { startOffset = offset; } } boolean setMarkedText_selectedRange (int /*long*/ id, int /*long*/ sel, int /*long*/ string, int /*long*/ selRange) { if (!isInlineEnabled ()) return true; resetStyles (); caretOffset = commitCount = 0; int end = startOffset + text.length (); if (startOffset == -1) { Event event = new Event (); event.detail = SWT.COMPOSITION_SELECTION; sendEvent (SWT.ImeComposition, event); startOffset = event.start; end = event.end; } NSString str = new NSString (string); if (str.isKindOfClass (OS.class_NSAttributedString)) { NSAttributedString attribStr = new NSAttributedString (string); str = attribStr.string (); int length = (int)/*64*/str.length (); styles = new TextStyle [length]; ranges = new int [length * 2]; NSRange rangeLimit = new NSRange (), effectiveRange = new NSRange (); rangeLimit.length = length; int rangeCount = 0; int /*long*/ ptr = OS.malloc (NSRange.sizeof); for (int i = 0; i < length;) { NSDictionary attribs = attribStr.attributesAtIndex(i, ptr, rangeLimit); OS.memmove (effectiveRange, ptr, NSRange.sizeof); i = (int)/*64*/(effectiveRange.location + effectiveRange.length); ranges [rangeCount * 2] = (int)/*64*/effectiveRange.location; ranges [rangeCount * 2 + 1] = (int)/*64*/(effectiveRange.location + effectiveRange.length - 1); styles [rangeCount++] = getStyle (attribs); } OS.free (ptr); if (rangeCount != styles.length) { TextStyle [] newStyles = new TextStyle [rangeCount]; System.arraycopy (styles, 0, newStyles, 0, newStyles.length); styles = newStyles; int [] newRanges = new int [rangeCount * 2]; System.arraycopy (ranges, 0, newRanges, 0, newRanges.length); ranges = newRanges; } } int length = (int)/*64*/str.length (); if (ranges == null && length > 0) { styles = new TextStyle []{getStyle (display.markedAttributes)}; ranges = new int[]{0, length - 1}; } NSRange range = new NSRange (); OS.memmove (range, selRange, NSRange.sizeof); caretOffset = (int)/*64*/range.location; Event event = new Event (); event.detail = SWT.COMPOSITION_CHANGED; event.start = startOffset; event.end = end; event.text = text = str.getString(); sendEvent (SWT.ImeComposition, event); if (isDisposed ()) return false; if (text.length () == 0) { Shell s = parent.getShell (); s.keyInputHappened = true; startOffset = -1; resetStyles (); } return true; } int /*long*/ validAttributesForMarkedText (int /*long*/ id, int /*long*/ sel) { NSMutableArray attribs = NSMutableArray.arrayWithCapacity (6); attribs.addObject (new NSString (OS.NSForegroundColorAttributeName ())); attribs.addObject (new NSString (OS.NSBackgroundColorAttributeName ())); attribs.addObject (new NSString (OS.NSUnderlineStyleAttributeName ())); attribs.addObject (new NSString (OS.NSUnderlineColorAttributeName ())); attribs.addObject (new NSString (OS.NSStrikethroughStyleAttributeName ())); attribs.addObject (new NSString (OS.NSStrikethroughColorAttributeName ())); return attribs.id; } }
[ "375833274@qq.com" ]
375833274@qq.com