blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
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
684M
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
132 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
28 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
352
24fd6682fbdf9b333aafcba1051a6b4254b59ccb
f7f1974fa7c90c84c71fbeed5e7c31800bfaf216
/src/main/java/server/actions/DeleteResource.java
93d2de08e7effae075df41a599b2f983e0a85374
[]
no_license
gemcfadyen/MonkeyBusiness
2544f665001a97a94cdf4e57fcc4ee05f39ae78a
1f0deef59bd9151329e7cb2b6eefec9eb6b70a8f
refs/heads/master
2021-01-10T11:15:19.692924
2016-03-21T13:15:39
2016-03-21T13:15:39
54,389,939
0
0
null
null
null
null
UTF-8
Java
false
false
819
java
package server.actions; import server.Action; import server.ResourceHandler; import server.messages.HttpRequest; import server.messages.HttpResponse; import server.messages.StatusCode; import static server.messages.HttpResponseBuilder.anHttpResponseBuilder; public class DeleteResource implements Action { private final ResourceHandler resourceHandler; public DeleteResource(ResourceHandler resourceHandler) { this.resourceHandler = resourceHandler; } @Override public boolean isEligible(HttpRequest request) { return true; } @Override public HttpResponse process(HttpRequest request) { resourceHandler.delete(request.getRequestUri()); return anHttpResponseBuilder() .withStatusCode(StatusCode.OK) .build(); } }
[ "gemcfadyen@hotmail.co.uk" ]
gemcfadyen@hotmail.co.uk
e24fe7e258944fa4f6ed530848a577aa9ff80b1e
6a4ab2a4c41caa7c5bb0e7649bd239aaa4245ecb
/Projeto/UltimateJetFighter/src/edu/br/usp/each/si/fsi/ultimate/model/Stage.java
51dfe7ae767a92ff98f81207c9a554255c76a208
[]
no_license
totapo/usp_si_fsi
b138467e97a2fa0ea61d015fc7ca14731fbc5ce3
f56bd03f59628aff941ca1df03aab30bde36253c
refs/heads/master
2016-09-06T09:49:15.489473
2015-07-02T18:40:13
2015-07-02T18:40:13
33,420,787
1
0
null
null
null
null
UTF-8
Java
false
false
1,196
java
package edu.br.usp.each.si.fsi.ultimate.model; import java.util.List; import edu.br.usp.each.si.fsi.data.*; public class Stage { private int id; private int lvl; private float time; private int id_boss = 0; private String source; private List<StageEnemyInfo> enemiesInfo; public Stage() { } public Stage(int lvl, float time, String source) { this.lvl = lvl; this.time = time; this.source = source; } public List<StageEnemyInfo> getEnemiesInfo() { return enemiesInfo; } public void setEnemiesInfo(List<StageEnemyInfo> enemiesInfo) { this.enemiesInfo = enemiesInfo; } public int getId() { return id; } public void setId(int id) { this.id = id; } public int getLvl() { return lvl; } public void setLvl(int lvl) { this.lvl = lvl; } public float getTime() { return time; } public void setTime(float time) { this.time = time; } public int getId_boss() { return id_boss; } public void setId_boss(int id_boss) { this.id_boss = id_boss; } public String getSource() { return source; } public void setSource(String source) { this.source = source; } }
[ "marcos-fms@live.com" ]
marcos-fms@live.com
be13792465f1d5382d91009725a3c0f31438e22b
aced3c930030cfcb9a61d00020bdac97d3f947e4
/src/main/java/com/mycompany/td2/dasi/metier/services/EntityService.java
41e643e726bc7aac2b7cb4da95079d1c0b8cbff4
[]
no_license
Lezzio/PROJET-DASI
e368dc2c97663a86e56f461e723e17f69a5b966b
ccce6fbf5482cb6390a6f95c268ca6cc9af57e7b
refs/heads/main
2023-05-04T20:25:05.351761
2021-05-26T13:23:27
2021-05-26T13:23:27
353,368,167
0
1
null
null
null
null
UTF-8
Java
false
false
4,170
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 com.mycompany.td2.dasi.metier.services; import com.mycompany.td2.dasi.dao.ClientDao; import com.mycompany.td2.dasi.dao.ConsultationDao; import com.mycompany.td2.dasi.dao.EmployeeDao; import com.mycompany.td2.dasi.dao.JpaUtil; import com.mycompany.td2.dasi.dao.MediumDao; import com.mycompany.td2.dasi.metier.modele.Client; import com.mycompany.td2.dasi.metier.modele.Employee; import com.mycompany.td2.dasi.metier.modele.Medium; import java.util.List; import java.util.logging.Level; import java.util.logging.Logger; /** * * @author aguigal */ public class EntityService { private final ClientDao clientDao = new ClientDao(); private final EmployeeDao employeeDao = new EmployeeDao(); private final ConsultationDao consultationDao = new ConsultationDao(); private final MediumDao mediumDao = new MediumDao(); public Client searchClientById(Long id) { Client resultat = null; JpaUtil.creerContextePersistance(); try { resultat = clientDao.searchById(id); } catch (Exception ex) { Logger.getAnonymousLogger().log(Level.WARNING, "Exception lors de l'appel au Service searchClientById(id)", ex); resultat = null; } finally { JpaUtil.fermerContextePersistance(); } return resultat; } public Medium searchMediumById(Long id) { Medium resultat = null; JpaUtil.creerContextePersistance(); try { resultat = mediumDao.searchById(id); } catch (Exception ex) { Logger.getAnonymousLogger().log(Level.WARNING, "Exception lors de l'appel au Service searchMediumById(id)", ex); resultat = null; } finally { JpaUtil.fermerContextePersistance(); } return resultat; } public List<Client> listClients() { List<Client> resultat = null; JpaUtil.creerContextePersistance(); try { resultat = clientDao.listClients(); } catch (Exception ex) { Logger.getAnonymousLogger().log(Level.WARNING, "Exception lors de l'appel au Service listClients()", ex); resultat = null; } finally { JpaUtil.fermerContextePersistance(); } return resultat; } public List<Medium> listMediums() { List<Medium> resultat = null; JpaUtil.creerContextePersistance(); try { resultat = mediumDao.listMediums(); } catch (Exception ex) { Logger.getAnonymousLogger().log(Level.WARNING, "Exception lors de l'appel au Service listMediums()", ex); resultat = null; } finally { JpaUtil.fermerContextePersistance(); } return resultat; } public Employee searchEmployeeById(Long id) { Employee resultat = null; JpaUtil.creerContextePersistance(); try { resultat = employeeDao.searchById(id); } catch (Exception ex) { Logger.getAnonymousLogger().log(Level.WARNING, "Exception lors de l'appel au Service searchEmployeeById(id)", ex); resultat = null; } finally { JpaUtil.fermerContextePersistance(); } return resultat; } public void initializeMedium(Medium medium) { JpaUtil.creerContextePersistance(); try { JpaUtil.ouvrirTransaction(); mediumDao.create(medium); JpaUtil.validerTransaction(); System.out.println("Medium initilization successfull"); } catch (Exception ex) { //Affichage de précis de l'erreur encourue Logger.getAnonymousLogger().log(Level.WARNING, "Exception lors de l'appel au Service initializeMediums(medium)", ex); JpaUtil.annulerTransaction(); System.out.println("Medium initilization failed"); } finally { JpaUtil.fermerContextePersistance(); } } }
[ "allan.guigal0@gmail.com" ]
allan.guigal0@gmail.com
61082c5ab589a41c85042a61908c486ee2978f4f
c7f59be24e21c0f64f3c2917548425d0fd990bb1
/src/main/java/com/lubby/util/MD5Util.java
907499eae8712179e04816af47cabec72f95d0de
[]
no_license
lubby1990/pet-store
ea6bb772e70147fa556243125b2440419b0e7d94
2b5f562cd87b864aad1c80425aa6f94644c013fb
refs/heads/master
2020-06-04T21:38:19.292349
2015-11-17T09:07:21
2015-11-17T09:07:21
32,629,483
0
0
null
null
null
null
UTF-8
Java
false
false
1,347
java
package com.lubby.util; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; /** * @author Lubby * @date 2015年3月23日 下午9:09:35 * */ /** * * * * 可以通过 new BigInteger(bytes[] data) ; BigInteger.toString(16);来把128位二进制转换成32个16进制数 * */ public class MD5Util { public static void main(String[] args){ String meg= "liubin"; System.out.println(getMD5(meg)); } public static String getMD5(String message) { String md5Str = ""; // 1.创建MD5信息摘要算法对象 MessageDigest md; try { md = MessageDigest.getInstance("MD5"); // 2.信息转换成byte数组 byte[] messageByte = message.getBytes(); // 3.获得128位摘要 byte[] md5Byte = md.digest(messageByte); // 4.把每一个字节转换成16进制 128/8 = 16个16进制数 md5Str = bytesToHex(md5Byte); } catch (NoSuchAlgorithmException e) { // TODO Auto-generated catch block e.printStackTrace(); } return md5Str; } public static String bytesToHex(byte[] bytes) { StringBuffer md5Str = new StringBuffer(); int digital; for (byte b : bytes) { digital = b; if (digital < 0) { digital += 256; } if (digital < 16) { md5Str.append(0); } md5Str.append(Integer.toHexString(digital)); } return md5Str.toString(); } }
[ "bin.liu@travelzen.com" ]
bin.liu@travelzen.com
a544d0d9ef761b722687622016c58c3cce09a71a
6253283b67c01a0d7395e38aeeea65e06f62504b
/decompile/app/Contacts/src/main/java/com/android/contacts/group/GroupDetailDisplayUtils.java
19d9340f05cd2b3826301110011af2c4f9c6470c
[]
no_license
sufadi/decompile-hw
2e0457a0a7ade103908a6a41757923a791248215
4c3efd95f3e997b44dd4ceec506de6164192eca3
refs/heads/master
2023-03-15T15:56:03.968086
2017-11-08T03:29:10
2017-11-08T03:29:10
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,453
java
package com.android.contacts.group; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import com.android.contacts.model.AccountTypeManager; import com.android.contacts.model.account.AccountType; import com.google.android.gms.R; public class GroupDetailDisplayUtils { private GroupDetailDisplayUtils() { } public static View getNewGroupSourceView(Context context) { return ((LayoutInflater) context.getSystemService("layout_inflater")).inflate(R.layout.group_source_button, null); } public static void bindGroupSourceView(Context context, View view, String accountTypeString, String dataSet) { AccountType accountType = AccountTypeManager.getInstance(context).getAccountType(accountTypeString, dataSet); TextView label = (TextView) view.findViewById(16908310); if (label == null) { throw new IllegalStateException("Group source view must contain a TextView with idandroid.R.id.label"); } label.setText(accountType.getViewGroupLabel(context)); ImageView accountIcon = (ImageView) view.findViewById(16908294); if (accountIcon == null) { throw new IllegalStateException("Group source view must contain an ImageView with idandroid.R.id.icon"); } accountIcon.setImageDrawable(accountType.getDisplayIcon(context)); } }
[ "liming@droi.com" ]
liming@droi.com
4ba8d66c04aaa68aa40201c9663014be2c970e4c
6a0bade9605b64c5788f8f1f1884890faad5963c
/src/JAXP/JAXPFour.java
308c6f0cd10e9cfcc5c974f8233a0c647e0b9886
[]
no_license
EastLord/parse-xml
c97df807dd60ddf94fd652d11bf8d7be987a6f45
c3336477ea6342d87c8aaa291d7806aa32c26d6f
refs/heads/master
2021-01-18T16:01:45.465010
2017-11-06T03:04:36
2017-11-06T03:04:36
86,703,396
1
0
null
null
null
null
UTF-8
Java
false
false
1,773
java
package JAXP; import org.w3c.dom.*; import javax.xml.parsers.*; import java.io.*; /** * The type Jaxp four. */ public class JAXPFour { /** * Main. * * @param args the args */ public static void main(String args[]) { GiveData give = new GiveData(); try { DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder domPaser = factory.newDocumentBuilder(); Document document = domPaser.parse(new File("ch4_xml/example4_4.xml")); Element root = document.getDocumentElement(); NodeList nodeList = root.getChildNodes(); give.output(nodeList); System.out.println("一共有" + give.m + "个Text节点"); } catch (Exception e) { } } } /** * The type Give data. */ class GiveData { /** * The M. */ int m = 0; /** * Output. * * @param nodeList the node list */ public void output(NodeList nodeList) { //这是一个递归方法 int size = nodeList.getLength(); for (int k = 0; k < size; k++) { Node node = nodeList.item(k); if (node.getNodeType() == Node.TEXT_NODE) { Text textNode = (Text) node; String content = textNode.getWholeText(); m++; System.out.print(content); } if (node.getNodeType() == Node.ELEMENT_NODE) { Element elementNode = (Element) node; String name = elementNode.getNodeName(); System.out.print(name + ":"); NodeList nodes = elementNode.getChildNodes(); output(nodes); } } } }
[ "qiutiandong@gmail.com" ]
qiutiandong@gmail.com
801e6544e3d9ba7a6e65c161dbb56e5935dbd027
ed751debbdc6881cd4f7909cd260ffc829c94d15
/app/src/main/java/happy/shreejithour/gmail/com/happyhours/Contactus.java
cec4013bd91d2ca1116a11cfcfc9c56bebf4db8b
[]
no_license
shreejitverma1234/shreejit14bce0728
304e008e8f74be64d72e789f5e64558f70be8ed2
49e43166f40f3d8e69fb8334465beccfbb18a53e
refs/heads/master
2021-01-01T05:18:22.756151
2016-04-27T07:13:31
2016-04-27T07:13:31
57,191,316
0
0
null
null
null
null
UTF-8
Java
false
false
354
java
package happy.shreejithour.gmail.com.happyhours; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class Contactus extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_contactus); } }
[ "shreejitverma1234@gmail.com" ]
shreejitverma1234@gmail.com
6fc8d351dc1f1b058a87579d8b859bbeea74137a
19faa99e9b98449edd14c065676da0e8bba68db8
/app/connector/fhir/src/main/java/io/syndesis/connector/fhir/FhirResourceQuery.java
04fdb94ff48fd867b27ed8b513fcaf4544010dcc
[ "Apache-2.0" ]
permissive
syndesisio/syndesis
67e407a072a482d70f4b2a5c566ef956e2510ef2
8a6bb8be99ea81468884132065cf1254ee343c32
refs/heads/1.15.x
2023-08-13T04:17:37.288384
2023-02-15T18:50:45
2023-02-15T18:50:45
105,563,335
658
267
Apache-2.0
2023-08-29T09:30:50
2017-10-02T17:26:55
Java
UTF-8
Java
false
false
836
java
/* * Copyright (C) 2016 Red Hat, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package io.syndesis.connector.fhir; public class FhirResourceQuery { private String query; public String getQuery() { return query; } public void setQuery(String query) { this.query = query; } }
[ "rafal.korytkowski@gmail.com" ]
rafal.korytkowski@gmail.com
61b792737f72de84e157d309b113588cf4b05adb
fcf90ba4a63d0f2efd460f2428649b56782be8f8
/zshop-dao/src/main/java/com/zte/zshop/dao/ProductTypeDao.java
953d7b7e179957327b31d29aa48aeb0202d4b108
[]
no_license
wxhygrdsj/zshop-front-backend
f40469f4867727fae9a7644b4d4ae96423430d29
7ad2102ae2901aa11374f193232ba184f9f87aac
refs/heads/master
2023-06-28T06:54:21.639028
2021-07-08T10:47:39
2021-07-08T10:47:39
381,952,977
0
0
null
null
null
null
UTF-8
Java
false
false
758
java
package com.zte.zshop.dao; import com.zte.zshop.entity.ProductType; import org.apache.ibatis.annotations.Param; import java.util.List; /** * Author:helloboy * Date:2021-06-01 10:39 * Description:<描述> */ //@Repository public interface ProductTypeDao { public List<ProductType> selectAll(); public ProductType selectByName(String name); public void insert(@Param("name") String name, @Param("status") int status); public ProductType selectById(Integer id); public void updateName(@Param("id") Integer id, @Param("name") String name); public void deleteById(Integer id); public void updateStatus(@Param("id") Integer id, @Param("status") Integer status); public List<ProductType> selectByStatus(int status); }
[ "1090913595@qq.com" ]
1090913595@qq.com
3a9caf0424a90c11f774aaac14a40ba12bf93118
0076bfe278036e848011d111efc47520969b7d27
/app/src/main/java/com/ostentatious/spotify/MainActivity.java
237b7ffae580f6ae4bd0bea6af53b52938b96be0
[]
no_license
Kelbirk/spotifyplayer
05a109082eac83b22003bb62bcd22b65f45f236f
f5ce902d8c224c93316ec0ad548026745a0915f5
refs/heads/master
2020-06-05T18:44:02.459485
2015-08-02T21:49:35
2015-08-02T21:49:35
40,024,036
0
0
null
null
null
null
UTF-8
Java
false
false
1,511
java
package com.ostentatious.spotify; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; public class MainActivity extends AppCompatActivity { public boolean mTwoPane; static final String FRAGMENT_TAG = "top tracks"; @Override protected void onCreate(Bundle savedInstanceState) { mTwoPane = getResources().getBoolean(R.bool.large_layout); super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); if(mTwoPane && savedInstanceState == null) { getSupportFragmentManager().beginTransaction() .replace(R.id.tracks_pane, new TopTracksFragment(), FRAGMENT_TAG) .commit(); } } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } }
[ "kelbirk@gmail.com" ]
kelbirk@gmail.com
e7316681cd4f7df30407afe72dd12a884439c977
1c407a9c0b1871fafdf618c5c126e1b80373846d
/src/test/java/com/in28minutes/unittesting/unittesting/business/ListMockTest.java
5bf81ed229dbbbd7c3d8a6ee76745d3511b8d7c5
[]
no_license
JulianCabreraS/junit-spring-boot
0ac3f04cfd489eb873e19edbcaee250b1bd065eb
942a07228cfeffa0b4ca3637a9c27e66f0981bd1
refs/heads/master
2023-03-31T16:28:18.538325
2019-10-27T20:42:51
2019-10-27T20:42:51
356,669,942
0
0
null
null
null
null
UTF-8
Java
false
false
2,758
java
package com.in28minutes.unittesting.unittesting.business; import org.junit.Test; import org.mockito.ArgumentCaptor; import java.util.ArrayList; import java.util.List; import static org.junit.Assert.*; import static org.mockito.Mockito.*; public class ListMockTest { List<String> mock = mock(List.class); @Test public void size_basic(){ when(mock.size()).thenReturn(5); assertEquals(5,mock.size()); } @Test //Mocking 2 steps public void returnDifferentValues(){ when(mock.size()).thenReturn(5).thenReturn(10); assertEquals(5,mock.size()); assertEquals(10,mock.size()); } @Test public void returnWithParameters(){ when(mock.get(0)).thenReturn("in28Minutes"); assertEquals("in28Minutes", mock.get(0)); } @Test //Using argument matchers public void returnWithGenericParameters(){ when(mock.get(anyInt())).thenReturn("in28Minutes"); assertEquals("in28Minutes", mock.get(0)); } @Test //Using verification public void verificationBasics(){ //SUT String value = mock.get(0); String value1 = mock.get(1); //Verify verify(mock).get(0); verify(mock,times(2)).get(anyInt()); verify(mock,atLeast(2)).get(anyInt()); verify(mock,atMost(2)).get(anyInt()); verify(mock, never()).get(2); } @Test //Argument capture public void argumentCapturing(){ //SUT mock.add("SomeString"); //Verification ArgumentCaptor<String> captor = ArgumentCaptor.forClass(String.class); verify(mock).add(captor.capture()); assertEquals("SomeString", captor.getValue()); } @Test //Argument capture with multiple times public void multipleArgumentCapturing(){ //SUT mock.add("SomeString1"); mock.add("SomeString2"); //Verification ArgumentCaptor<String> captor = ArgumentCaptor.forClass(String.class); verify(mock, times(2)).add(captor.capture()); List<String> allValues = captor.getAllValues(); assertEquals("SomeString1", allValues.get(0)); assertEquals("SomeString2", allValues.get(1)); } @Test //Using spy in a class public void spying(){ ArrayList arrayListSpy = spy(ArrayList.class); arrayListSpy.add("Test 0"); System.out.println(arrayListSpy.get(0)); System.out.println(arrayListSpy.size()); arrayListSpy.add("Test"); arrayListSpy.add("Test2"); System.out.println(arrayListSpy.size()); //Once you stub, size is always 5 when(arrayListSpy.size()).thenReturn(5); System.out.println(arrayListSpy.size()); } }
[ "julian.cabreras@gmail.com" ]
julian.cabreras@gmail.com
84b8b7570ae5784ebd1be771f64c510f9d4f1954
389b3041136f347de06d0e09a16cdd910e886e9d
/src/main/java/com/bridgelabz_parkinglot/AirportSecurity.java
e824006f3feae03e7720f2b1fbb975462930d3d7
[]
no_license
SRC0747/ParkingLot_TDDApproach
cf56ffc6b3bd742207f49b3513461e48703ef898
251585ba0e499d343eadc2ae9f02d6e71431e93d
refs/heads/master
2023-08-26T12:33:51.362618
2021-11-10T19:29:56
2021-11-10T19:29:56
426,325,010
0
0
null
null
null
null
UTF-8
Java
false
false
288
java
package com.bridgelabz_parkinglot; public class AirportSecurity implements ParkingLotObserver{ private boolean isFullCapacity; public void capacityIsFull() { isFullCapacity = true; } public boolean IsCapacityFull() { return this.isFullCapacity; } }
[ "RjSrc@0747" ]
RjSrc@0747
55b815c2a602ed6b6c5b2adfe305c69efe901941
f0538cd2e4255c91f72e84cd935b69c320fb767d
/Others/TaskManager.java
676da849fffcf5c96f4af1d8eb550aaef4bf305c
[]
no_license
jb1998/Data-Structures
5135be4f2455242800f350a26fb20386d73a5333
d19b67393c6ba5a435d5a3178b6eab136fe08a9c
refs/heads/master
2021-09-20T04:17:24.647017
2018-08-03T14:12:39
2018-08-03T14:12:39
114,671,960
0
0
null
null
null
null
UTF-8
Java
false
false
1,253
java
//import org.omg.CORBA.Current; // //import java.util.concurrent.ExecutorService; //import java.util.concurrent.Executors; //import java.util.concurrent.ThreadPoolExecutor; // //public class TaskManager { // // private int threadCount; // private ExecutorService executorService; // // public TaskManager(int threadCount) { // this.threadCount = threadCount; // this.executorService = Executors.newFixedThreadPool(threadCount); // } // // public void waitTillQueueIsFreeAndAddTask(Runnable runnable) { // while (getQueueSize() >= threadCount) { // try { // System.out.println("Sleeping"); // Thread.currentThread().sleep(1000); // } catch (InterruptedException e) { // } // } // addTask(runnable); // } // // public void addTask(Runnable runnable) { // this.executorService.submit(runnable); // } // // public int getQueueSize() { // ThreadPoolExecutor executor = (ThreadPoolExecutor) (executorService); // return executor.getQueue().size(); // } // // public void shutDown() { // ThreadPoolExecutor executor = (ThreadPoolExecutor) (executorService); // executor.shutdown(); // } //}
[ "jatinbindra171998@gmail.com" ]
jatinbindra171998@gmail.com
520e55f84cd633e56ab680249e33a4c1186e95a7
5a9f8cda392dea69236b11ae5179136ca1d38701
/src/day19/DatdrivenTesting2.java
4d9101015dadcab528399b236a495ed6e8c22f4e
[]
no_license
rajkumar888/CucumberMaven
c2cac94dbd7865f9e2723fa4cda171e14d1fde99
60cf1c722a3ccea5fc85224c00fe9fd938d9b165
refs/heads/master
2021-04-12T10:55:23.041539
2018-06-17T14:32:15
2018-06-17T14:32:15
126,392,894
0
0
null
null
null
null
UTF-8
Java
false
false
2,989
java
package day19; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.util.Iterator; import java.util.List; import java.util.concurrent.TimeUnit; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.xssf.usermodel.XSSFSheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.openqa.selenium.By; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; public class DatdrivenTesting2 { FirefoxDriver driver=null; @BeforeMethod public void setUp() { driver=new FirefoxDriver(); driver.get("http://www.mortgagecalculator.org/"); driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS); } @Test public void datadrivenTest() throws IOException { FileInputStream f=new FileInputStream("E:\\April27Batch\\Webdriver\\src\\com\\qedge\\excelfiles\\MortgageCalculator.xlsx"); XSSFWorkbook wb=new XSSFWorkbook(f); XSSFSheet ws=wb.getSheet("Sheet1"); Row r=null; Cell c=null; Iterator<Row> row=ws.iterator(); row.next(); while(row.hasNext()) { r=row.next(); List<WebElement> input=driver.findElements(By.xpath("//input[@type='text']")); for(int i=0;i<input.size();i++) { input.get(i).clear(); } driver.findElement(By.name("param[homevalue]")).sendKeys(Long.toString((long)r.getCell(0).getNumericCellValue())); driver.findElement(By.name("param[principal]")).sendKeys(Long.toString((long)r.getCell(1).getNumericCellValue())); driver.findElement(By.name("param[interest_rate]")).sendKeys(Long.toString((long)r.getCell(2).getNumericCellValue())); driver.findElement(By.name("param[term]")).sendKeys(Long.toString((long)r.getCell(3).getNumericCellValue())); driver.findElement(By.name("param[start_month]")).sendKeys(r.getCell(4).getStringCellValue()); driver.findElement(By.name("param[start_year]")).sendKeys(r.getCell(5).getStringCellValue()); driver.findElement(By.name("param[property_tax]")).sendKeys(Double.toString(r.getCell(6).getNumericCellValue())); driver.findElement(By.name("param[pmi]")).sendKeys(Double.toString(r.getCell(7).getNumericCellValue())); driver.findElement(By.name("cal")).click(); String emi=driver.findElement(By.xpath("//*[@id='calc']/form/section/section[2]/div/div/div[1]/div/div/div[3]/div[2]/div[2]/div[1]/div[1]/h3")).getText(); r.createCell(9).setCellValue(emi); if(emi.contains(r.getCell(8).getStringCellValue())) { r.createCell(10).setCellValue("Passed"); } else { r.createCell(10).setCellValue("Failed"); } } FileOutputStream f1=new FileOutputStream("E:\\April27Batch\\Webdriver\\src\\com\\qedge\\resultexcelfiles\\mortagageresults.xlsx"); wb.write(f1); f1.close(); } }
[ "Computer@DESKTOP-57UBSTI" ]
Computer@DESKTOP-57UBSTI
3f676eba7cd8066efb869f56c5b75c3bd3a5847f
bbf6d3262bc7033074bb9ba563030e65a61485a7
/src/main/java/com/kodilla/travel_agency/service/FlightService.java
f4d67a4e6f3c33ba0f9b3499fac58a2b6c3decc9
[]
no_license
ewelinalimanska/TravelAgency
c7a1c1a0b03d8191d36903f79dc0e5c005fa411e
8a722c1aa44fb9a8155e18a6725b75e724ac0429
refs/heads/master
2023-01-30T10:44:37.746832
2020-12-11T00:15:21
2020-12-11T00:15:21
317,622,157
0
0
null
null
null
null
UTF-8
Java
false
false
708
java
package com.kodilla.travel_agency.service; import com.kodilla.travel_agency.domain.flight.Flight; import com.kodilla.travel_agency.repository.FlightRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.Optional; @Service public class FlightService { @Autowired private FlightRepository flightRepository; public Flight saveFlight(final Flight flight){ return flightRepository.save(flight); } public Optional<Flight> findById(final Long id){ return flightRepository.findById(id); } public boolean existsById(Long id){ return flightRepository.existsById(id); } }
[ "limanskaewelina@gmail.com" ]
limanskaewelina@gmail.com
9226255c14a7b480d859008819adf03ce9f76ade
75604d83db3d7c6e783a54097687a1bb9d1be338
/src/BaekJoon/P18406.java
56f26a171ccf1c8ab3b0ebbb6ef914d83f276702
[]
no_license
nn98/Algorithm
262cbe20c71ff9b5de292c244b95a2a0c25e5bd7
c1999a8ef3bfc1370abee56c0597c286a1cb81af
refs/heads/master
2023-08-17T04:39:41.236707
2022-09-07T06:22:56
2022-09-07T06:22:56
178,701,901
0
0
null
null
null
null
UTF-8
Java
false
false
283
java
package BaekJoon; public class P18406 { public static void main(String[] args) { String a=new java.util.Scanner(System.in).next(); int n=a.length()/2,p=Integer.parseInt(a.substring(0,n)),q=Integer.parseInt(a.substring(n)),i,j,m=1; System.out.println(); } }
[ "jkllhgb@gmail.com" ]
jkllhgb@gmail.com
110da32ee55a9c9822bc987bf6b5d0b8dabb46a9
bab7546c7025cac15d47e6d3b775833bbd108b58
/examen-robert/src/es/potify/main/CancionPersister.java
adc2704e699764a40c46adc2516985f229721055
[]
no_license
Robert91911/hibernate-examples
e6a09eaef99b3180da82986cba036a7c280d58a0
a9af2aa6e0a7f7250ddb3a2f4e78c034924dfe0a
refs/heads/master
2022-07-11T12:28:21.152723
2020-01-29T18:40:31
2020-01-29T18:40:31
237,053,930
0
0
null
2022-06-21T02:43:02
2020-01-29T18:30:54
Java
UTF-8
Java
false
false
1,651
java
package es.potify.main; import org.hibernate.Session; import org.hibernate.Transaction; import es.potify.modelo.Cancion; import es.potify.utilidades.Utilidades; public class CancionPersister { public static void borrarCancion(Cancion cancion) { Session session = Utilidades.getSessionFactory().getCurrentSession(); Transaction tx = null; try { tx = session.beginTransaction(); session.delete(cancion); session.getTransaction().commit(); System.out.println("Borrando cancion: " + cancion.toString()); } catch (RuntimeException e) { if (tx != null) tx.rollback(); e.printStackTrace(); } } public static void actualizaCancion(Cancion cancion) { Session session = Utilidades.getSessionFactory().getCurrentSession(); Transaction tx = null; try { tx = session.beginTransaction(); session.update(cancion); session.getTransaction().commit(); } catch (RuntimeException e) { if (tx != null) tx.rollback(); e.printStackTrace(); } } public static void almacenaCancion(Cancion cancion) { Session session = Utilidades.getSessionFactory().getCurrentSession(); Transaction tx = null; try { tx = session.beginTransaction(); session.saveOrUpdate(cancion); System.out.println("Cancion añadida: " + cancion.toString()); session.getTransaction().commit(); } catch (RuntimeException e) { if (tx != null) tx.rollback(); e.printStackTrace(); } } public static Cancion recuperaCancion(int id) { Session session = Utilidades.getSessionFactory().getCurrentSession(); Cancion seg = new Cancion(); seg = (Cancion) session.load(Cancion.class, id); return seg; } }
[ "robert.marian9191@gmail.com" ]
robert.marian9191@gmail.com
2e3a925ab2efcfcb6e33b04bd5ad8e84a53a59aa
1ac06e825db5fc968165254486d5292233278203
/src/main/java/net/lightwing/mediweb_admin/pojo/MDoctor.java
f2c836227a0415bcbd2c9f17218e9083e78045a8
[]
no_license
1057697328/qysmweb_admin
442694da418d1cd79248debf8b4256bf281e6a7f
5a93dce87889dd5aaad55dc9691fcf9375d15249
refs/heads/master
2020-05-02T20:46:25.701392
2019-04-24T14:52:06
2019-04-24T14:52:06
178,201,336
0
0
null
null
null
null
UTF-8
Java
false
false
1,278
java
package net.lightwing.mediweb_admin.pojo; import java.io.Serializable; /** * m_doctor * @author */ public class MDoctor implements Serializable { /** * 专家ID */ private Integer did; /** * 专家姓名 */ private String dname; /** * 专家职位&头衔 */ private String djob; /** * 专家头像URL */ private String imgpath; /** * 专家简介 */ private String ddesc; private static final long serialVersionUID = 1L; public Integer getDid() { return did; } public void setDid(Integer did) { this.did = did; } public String getDname() { return dname; } public void setDname(String dname) { this.dname = dname; } public String getDjob() { return djob; } public void setDjob(String djob) { this.djob = djob; } public String getImgpath() { return imgpath; } public void setImgpath(String imgpath) { this.imgpath = imgpath; } public String getDdesc() { return ddesc; } public void setDdesc(String ddesc) { this.ddesc = ddesc; } }
[ "1057697328@qq.com" ]
1057697328@qq.com
0f42753a2a62ba5a4f95f5f689540a01cd939cba
a3a84313a161d8ba0216460d6f46f2325466e36a
/StaffUser/src/com/icss/ui/TestStaffCards.java
a3cac94a24ac901dc35ab56c72f5d364b3a4eea3
[]
no_license
hp-xiao/StaffUser2
051c5e5fd9064a176f60598d1f811f05abd870ca
36a4b57150c4cbe717ccdc0c013d59f338eb7bc9
refs/heads/main
2023-01-30T14:26:10.071805
2020-12-17T12:59:20
2020-12-17T12:59:20
322,293,453
0
0
null
null
null
null
UTF-8
Java
false
false
1,178
java
package com.icss.ui; import java.util.List; import com.icss.biz.IStaff; import com.icss.biz.impl.StaffBiz; import com.icss.dto.StaffCard; import com.icss.entity.Card; import com.icss.entity.Staff; import com.icss.util.BeanFactory; public class TestStaffCards { public static void main(String[] args) { getStaffCards(); } public static void getStaffCards() { IStaff biz = (IStaff)BeanFactory.getBean(IStaff.class); try { List<StaffCard> cards = biz.getStaffCards("s001"); for(StaffCard sc : cards) { System.out.println(sc.getSno() + "," + sc.getCtime() + "," + sc.getInfo()); } } catch (Exception e) { e.printStackTrace(); } } public static void getStaffCards2() { IStaff biz = (IStaff)BeanFactory.getBean(IStaff.class); try { List<Staff> staffs = biz.getStaffCards2("s001"); for(Staff sc : staffs) { System.out.println(sc.getSno() + "," + sc.getSno() + "," + sc.getName() ); System.out.println(sc.getUser().getUname() ); List<Card> cards = sc.getCards(); for(Card c : cards) { System.out.println(c.getCtime() + "," + c.getInfo()); } } } catch (Exception e) { e.printStackTrace(); } } }
[ "xiaohp@sina.com" ]
xiaohp@sina.com
64a05c1016460c9f3272fc0805ff434e0c20bf80
0a4bfac4307a19534fec7f58000b7fe5c8ea840b
/src/me/coley/recaf/ui/component/editor/AccessMethodEditor.java
95d6a7e6727d95b308bba5309c2ec22fecc4ba8f
[ "MIT" ]
permissive
zgkxzx/Recaf
1fe5315fa952ff3cd7e0fcc94fb89786ae8e7222
364af5fab7037cab853a7884112f3394640e5f97
refs/heads/master
2020-04-23T19:55:19.090354
2019-02-13T19:47:21
2019-02-13T19:47:21
null
0
0
null
null
null
null
UTF-8
Java
false
false
718
java
package me.coley.recaf.ui.component.editor; import org.controlsfx.control.PropertySheet.Item; import javafx.scene.Node; import me.coley.recaf.bytecode.AccessFlag; import me.coley.recaf.ui.component.AccessButton; /** * Editor for editing access flags for methods. * * @author Matt */ public class AccessMethodEditor<T extends Integer> extends StagedCustomEditor<T> { public AccessMethodEditor(Item item) { super(item); } @Override public Node getEditor() { return new AccessButton(AccessFlag.Type.METHOD, getValue().intValue()) { @SuppressWarnings("unchecked") @Override public void setAccess(int access) { super.setAccess(access); setValue((T) Integer.valueOf(access)); } }; } }
[ "mcoley2@gmu.edu" ]
mcoley2@gmu.edu
ad1cf640b5ced32fa8635bd6639bb657b6715b7c
10d83ef192a2e3c475be15a9294634094fae47ed
/src/main/java/org/jypj/dev/dao/ThemeDao.java
2ffb76c7509b0abb973a7fd9e256fa8f67afb722
[]
no_license
278624508/yx-recruitment-admin
a45c970f5e7a6071dd7f2fd3210f7abbd213b54a
442982232d76f7c823935a90bad85524451258cc
refs/heads/master
2020-03-21T00:11:23.486618
2018-08-12T03:37:01
2018-08-12T03:37:01
137,882,345
2
0
null
null
null
null
UTF-8
Java
false
false
3,272
java
package org.jypj.dev.dao; import org.jypj.dev.entity.Theme; import org.jypj.dev.util.Page; import java.util.List; import java.util.Map; /** * Themedao数据接口层 * 招聘主题 * @author * */ public interface ThemeDao { /** * 保存 * 字段为空的不存防止覆盖存在默认值的字段 * @param theme * @return 保存后的对象包括ID */ public int saveThemeByField(Theme theme); /** * 保存 * 所有字段全都保存 * @param theme * @return 保存后的对象包括ID */ public int saveTheme(Theme theme); /** * 根据ID删除 * @param id 主键ID * @return 删除记录数 */ public int deleteThemeById(String id); /** * 根据对象删除 * @param theme * @return */ public int deleteThemeByObject(Theme theme); /** * 更新 * 只更新值不为空的字段 * @param theme * @return 保存后的对象包括ID */ public int updateThemeByField(Theme theme); /** * 更新 * 更新所有字段 * @param theme * @return 保存后的对象包括ID */ public int updateTheme(Theme theme); /** * 按ID查询 * @parm id 主键ID * @return Theme */ public Theme selectThemeById(String id); /** * 分页查询 包含条件 * @param page 分页对象 * @param map 查询条件 * @return List<Theme> */ public List<Theme> selectOnePageByMap(Page page, Map<String, Object> map); /** * 分页查询 包含对象条件 * @param page 分页对象 * @param theme 查询对象 * @return List<Theme> */ public List<Theme> selectOnePageByTheme(Page page, Theme theme); /** * 按条件查询全部的 * @param map 查询条件 * @return List<Theme> */ public List<Theme> selectAllByMap(Map<String, Object> map); /** * 按条件查询全部的 * @param map 查询条件 * @return List<Theme> */ public List<Theme> selectAllByTheme(Theme theme); /** * 按条件查询单个对象 * @param map 查询条件 * @return Theme */ public Theme selectObjectByMap(Map<String, Object> map); /** * 按条件查询单个对象 * @param map 查询条件 * @return Theme */ public Theme selectObjectByTheme(Theme theme); /** * 查询指定年份的招聘主题,如果没穿这个参数则查询当前年份的招聘主题 */ List<Theme> selectAllByYear(String year); /** * 查询notice表中没有用过的招聘主题 * @return */ List<Theme> selectThemeNotUsed(); /** * 更新步骤 * @param map */ void updateStep(Map<String,Object> map); /** * 查询某个招聘流程的步骤 * @param themeId * @return */ int selectStep(String themeId); /** * 查询招聘主题列表 * @param map * @return */ List<Theme> selectAllByYearMap(Map<String,Object> map); /** * 获取此表中所有的年份 * @return */ List<String> selectYears(); /** * 统计学校是否发布成绩、有多少学校已发布成绩、共有多少个学校审核资料审核通过、并查出招聘主题的步骤 * @param map * @author QICAI * @return */ public Theme queryTheme(Map<String,Object> map); }
[ "hzldd999@163.com" ]
hzldd999@163.com
678ae8025f88527246faa7f944415299791650a5
3150b85118ad4dece42aadeeddac65cabd0b9074
/app/src/main/java/com/guguscode/dapenduk/Activities/EditData.java
1fd775be028a491ffb531e0f9f97d360b41549f9
[]
no_license
gugusx/DaPenduk
d279d47ac0f9bfb2683040299b5238a9be518b58
0301afea4f8e3d47bb5f3b02be2e53059dcbda99
refs/heads/master
2022-12-11T01:37:20.588312
2020-09-01T14:09:50
2020-09-01T14:09:50
292,015,062
0
0
null
null
null
null
UTF-8
Java
false
false
2,555
java
package com.guguscode.dapenduk.Activities; import android.app.DatePickerDialog; import android.os.Bundle; import android.view.View; import android.view.WindowManager; import android.widget.Button; import android.widget.EditText; import android.widget.Spinner; import android.widget.TextView; import androidx.appcompat.app.AppCompatActivity; import com.guguscode.dapenduk.Model.DataModel; import com.guguscode.dapenduk.Presenter.DBHandler; import com.guguscode.dapenduk.R; public class EditData extends AppCompatActivity { EditText mEtNm, mEtAlm, mEtTpt, mEtPk; TextView mEtTgl; Button mBtnSimpan; DataModel dataModel; DBHandler dbhelp; private DatePickerDialog.OnDateSetListener mDataSetListener; private Spinner spinnerJK; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_edit_data); getSupportActionBar().setTitle("DaPenduk"); getSupportActionBar().setSubtitle("Edit Data Penduduk"); getSupportActionBar().setDisplayHomeAsUpEnabled(true); getSupportActionBar().setHomeAsUpIndicator( getResources().getDrawable(R.drawable.icupdate)); getWindow().setSoftInputMode(WindowManager. LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN); mEtNm = findViewById(R.id.etNm); spinnerJK = findViewById(R.id.etJk); mEtAlm = findViewById(R.id.etAlm); mEtTpt = findViewById(R.id.etTpt); mEtTgl = findViewById(R.id.etTgl); mEtPk = findViewById(R.id.etPkr); mBtnSimpan = findViewById(R.id.btnSimpan); dbhelp = new DBHandler(this); Bundle bundle = getIntent().getExtras(); if(bundle!=null){ dataModel = dbhelp.getData(bundle.getInt("ID")); mEtNm.setText(dataModel.getNama()); spinnerJK.getSelectedItem(); mEtAlm.setText(dataModel.getAlm()); mEtTpt.setText(dataModel.getTpt()); mEtTgl.setText(dataModel.getTgl()); mEtPk.setText(dataModel.getPk()); } mBtnSimpan.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { dbhelp.updateData(dataModel.getId(), mEtNm.getText().toString(), spinnerJK.getSelectedItem().toString(), mEtAlm.getText().toString(), mEtTpt.getText().toString(),mEtTgl.getText().toString(), mEtPk.getText().toString()); finish(); } }); } }
[ "gusmira94@hotmail.com" ]
gusmira94@hotmail.com
23e727d9e568d3e10f759efb756344d509302c9b
64fb7d7cc292400eea4b1dc8f03d7b0bc4ae53da
/module2/main/java/service/house/HouseServiceIml.java
aa03be11e28a006ad0ed965740a1d67b71220790
[]
no_license
nguyenhoatho/C0221G1_nguyenhoatho
270a38d81fd98aee2445af1ba11a435678188ce6
810ec2fe6a47a4f60eeb15c634485f6dad3eb1ca
refs/heads/main
2023-06-28T02:24:21.221771
2021-07-31T03:11:07
2021-07-31T03:11:07
342,188,618
2
0
null
null
null
null
UTF-8
Java
false
false
2,926
java
package service.house; import models.House; import ultils.compare.HouseCompare; import java.io.PrintWriter; import java.io.Writer; import java.util.List; import java.util.Scanner; import java.util.Set; import java.util.TreeSet; public class HouseServiceIml implements HouseService{ private static final String PATH_FILE_HOUSE = "src/data/House.csv"; private static final String[] FILE_HEADER_OF_HOUSE = {"id", "nameService", "area", "rentalPrice" , "maxNumberOfPeople", "typeRent", "roomType", "convenient" , "numberOfFloors"}; @Override public Set<String> getNameServiceFromFileCsv(String path) { return null; } @Override public void WriteFileCsv(House house) { try { List<House> houseWrite=readCsvFile(); Writer writer=new PrintWriter(PATH_FILE_HOUSE); CSVPrinter csvPrinter = new CSVPrinter(writer, CSVFormat.DEFAULT.withHeader(FILE_HEADER_OF_HOUSE)); }catch (Exception ex){ ex.printStackTrace(); } } @Override public List<House> readCsvFile() { return null; } @Override public TreeSet<House> readFileCsvNotDuplicate() { return null; } @Override public void addNewHouse() { Scanner sc=new Scanner(System.in); House house =new House(); System.out.println("input name house"); house.setServiceName(sc.nextLine()); System.out.println("type service"); house.setTypeServices(sc.nextLine()); System.out.println("input convenient "); house.setConvenient(sc.nextLine()); System.out.println("input area used"); house.setAreaUsed(sc.nextFloat()); System.out.println("input floor"); house.setNumberOfFloor(sc.nextInt()); System.out.println("input Standard Room"); house.setStandardRoom(sc.nextLine()); System.out.println("input Price"); house.setRentalCosts(sc.nextFloat()); System.out.println("maximum people"); house.setMaximumPeople(sc.nextInt()); WriteFileCsv(house); } @Override public void showAllHouse() { List<House> listHouse= readCsvFile(); for (int i=0;i<listHouse.size();i++){ System.out.println((i+1)+". \t"); System.out.println(listHouse.get(i).showInfo()); System.out.println(); } } @Override public House getHouseById(int id) { List<House> houseList=readCsvFile(); House house=houseList.get(id-1); return house; } @Override public void showAllHouseNotDuplicate() { TreeSet<House> houses=new TreeSet<>(new HouseCompare()); int count=1; for (House house:houses){ System.out.println((count)+". \t"); System.out.println(house); System.out.println(); count++; } } }
[ "nguyenhoatho.qn@gmail.com" ]
nguyenhoatho.qn@gmail.com
5ae4b8337cd8e30ec72cd96633d332afd5d192de
bb556c79fd75c0fa2832b2c6d89d3b6771647398
/AndroidWork/work3/build/generated/source/r/debug/com/example/user/work3/R.java
03dffb2e670f249074f07578a9952a04565d6a47
[]
no_license
CJAW/Android
86f665ffc3ed8e6e126be5701c702417bcc2b156
a653ad376e36d51a04cfc8b9990037e720fbf653
refs/heads/master
2020-06-25T22:35:21.163877
2017-07-12T11:52:27
2017-07-12T11:52:27
96,979,777
0
0
null
null
null
null
UTF-8
Java
false
false
488,517
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.example.user.work3; public final class R { public static final class anim { public static final int abc_fade_in=0x7f050000; public static final int abc_fade_out=0x7f050001; public static final int abc_grow_fade_in_from_bottom=0x7f050002; public static final int abc_popup_enter=0x7f050003; public static final int abc_popup_exit=0x7f050004; public static final int abc_shrink_fade_out_from_bottom=0x7f050005; public static final int abc_slide_in_bottom=0x7f050006; public static final int abc_slide_in_top=0x7f050007; public static final int abc_slide_out_bottom=0x7f050008; public static final int abc_slide_out_top=0x7f050009; public static final int design_fab_in=0x7f05000a; public static final int design_fab_out=0x7f05000b; public static final int design_snackbar_in=0x7f05000c; public static final int design_snackbar_out=0x7f05000d; } 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=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 actionBarItemBackground=0x7f0100a6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01009f; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarTabBarStyle=0x7f01009b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f01009a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f01009c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTheme=0x7f0100a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionButtonStyle=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 actionDropDownStyle=0x7f0100bb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionLayout=0x7f010051; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f0100a7; /** <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=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 actionModeBackground=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 actionModeCloseButtonStyle=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 actionModeCloseDrawable=0x7f0100ad; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCopyDrawable=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 actionModeCutDrawable=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 actionModeFindDrawable=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 actionModePasteDrawable=0x7f0100b0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=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 actionModeSelectAllDrawable=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 actionModeShareDrawable=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 actionModeSplitBackground=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 actionModeStyle=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 actionModeWebSearchDrawable=0x7f0100b4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f01009d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f01009e; /** <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=0x7f010053; /** <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=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 activityChooserViewStyle=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 alertDialogButtonGroupStyle=0x7f0100ea; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100eb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100e9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ec; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010028; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowHeadLength=0x7f010044; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowShaftLength=0x7f010045; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 background=0x7f01000c; /** <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=0x7f01000e; /** <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=0x7f01000d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int backgroundTint=0x7f01010e; /** <p>Must be one of the following constant values.</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=0x7f01010f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010046; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010062; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01004b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100c4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f0100c1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f0100ef; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f0100f0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f0100ee; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarStyle=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 buttonPanelSideLayout=0x7f01001f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100f2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f0100f3; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int buttonTint=0x7f010038; /** <p>Must be one of the following constant values.</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=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 checkboxStyle=0x7f0100f4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=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 closeIcon=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 closeItemLayout=0x7f01001c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int collapseContentDescription=0x7f010105; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapseIcon=0x7f010104; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int collapsedTitleGravity=0x7f010035; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010031; /** <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=0x7f010040; /** <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=0x7f0100e2; /** <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=0x7f0100e6; /** <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=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 colorControlHighlight=0x7f0100e5; /** <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=0x7f0100e3; /** <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=0x7f0100e0; /** <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=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 colorSwitchThumbNormal=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 commitIcon=0x7f01006c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 contentInsetLeft=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 contentInsetRight=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 contentInsetStart=0x7f010016; /** <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=0x7f010032; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int controlBackground=0x7f0100e8; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01008b; /** <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=0x7f01008c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterOverflowTextAppearance=0x7f01008e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterTextAppearance=0x7f01008d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int customNavigationLayout=0x7f01000f; /** <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=0x7f010066; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100b9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f0100b8; /** <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=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 divider=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 dividerHorizontal=0x7f0100c6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100c5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int drawableSize=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 drawerArrowStyle=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 dropDownListViewStyle=0x7f0100d8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dropdownListPreferredItemHeight=0x7f0100bc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100cd; /** <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=0x7f0100cc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f0100f6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=0x7f01001a; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 errorTextAppearance=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 expandActivityOverflowButtonDrawable=0x7f01001e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expanded=0x7f010024; /** <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=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 expandedTitleMargin=0x7f01002b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginBottom=0x7f01002f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01002c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginTop=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 expandedTitleTextAppearance=0x7f010030; /** <p>Must be one of the following constant values.</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>mini</code></td><td>1</td><td></td></tr> </table> */ public static final int fabSize=0x7f010049; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01004c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010043; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=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 headerLayout=0x7f01005a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 hideOnContentScroll=0x7f010015; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01008f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int hintTextAppearance=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 homeAsUpIndicator=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 homeLayout=0x7f010010; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010009; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconifiedByDefault=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 imageButtonStyle=0x7f0100ce; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010012; /** <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=0x7f01001d; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in 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=0x7f010061; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010002; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010058; /** <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=0x7f010056; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010014; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemTextAppearance=0x7f010059; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemTextColor=0x7f010057; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int keylines=0x7f01003a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout=0x7f010063; /** <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=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 layout_anchor=0x7f01003d; /** <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=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 layout_behavior=0x7f01003c; /** <p>Must be one of the following constant values.</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=0x7f010029; /** <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=0x7f01002a; /** <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=0x7f01003e; /** <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=0x7f010025; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010026; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f0100df; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ba; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listItemLayout=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 listLayout=0x7f010020; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100d9; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100d3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightLarge=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 listPreferredItemHeightSmall=0x7f0100d4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingLeft=0x7f0100d6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingRight=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 logo=0x7f01000a; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int logoDescription=0x7f010108; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010070; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010103; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01004d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int menu=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 multiChoiceItemLayout=0x7f010021; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int navigationContentDescription=0x7f010107; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int navigationIcon=0x7f010106; /** <p>Must be one of the following constant values.</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=0x7f010004; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01005b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingEnd=0x7f01010c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingStart=0x7f01010b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100dc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f0100de; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100dd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 popupTheme=0x7f01001b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupWindowStyle=0x7f0100cb; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int preserveIconSpacing=0x7f010054; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01004a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarPadding=0x7f010013; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010011; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01006e; /** <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=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 radioButtonStyle=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 ratingBarStyle=0x7f0100f8; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01005f; /** <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=0x7f010048; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 searchIcon=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 searchViewStyle=0x7f0100d2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int seekBarStyle=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 selectableItemBackground=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 selectableItemBackgroundBorderless=0x7f0100c3; /** <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=0x7f010050; /** <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=0x7f01004e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 singleChoiceItemLayout=0x7f010022; /** <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=0x7f01005e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 spinnerDropDownItemStyle=0x7f0100bd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerStyle=0x7f0100fa; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int splitTrack=0x7f010076; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010060; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 statusBarBackground=0x7f01003b; /** <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=0x7f010033; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int submitBackground=0x7f01006f; /** <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=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 subtitleTextAppearance=0x7f0100fd; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitleTextColor=0x7f01010a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 suggestionRowLayout=0x7f01006d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010074; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 switchStyle=0x7f0100fb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=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 tabBackground=0x7f01007b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01007a; /** <p>Must be one of the following constant values.</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=0x7f01007d; /** <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=0x7f010078; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010079; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 tabMinWidth=0x7f01007e; /** <p>Must be one of the following constant values.</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=0x7f01007c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010087; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010086; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingEnd=0x7f010085; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingStart=0x7f010083; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010084; /** <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=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 tabTextAppearance=0x7f010080; /** <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=0x7f010081; /** <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=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 textAppearanceLargePopupMenu=0x7f0100b6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f0100da; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0100db; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f0100d0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f0100cf; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f0100b7; /** <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=0x7f0100ed; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in 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=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 theme=0x7f01010d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010047; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTextPadding=0x7f010072; /** <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=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 titleEnabled=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 titleMarginBottom=0x7f010102; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginEnd=0x7f010100; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 titleMarginTop=0x7f010101; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100fe; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100fc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleTextColor=0x7f010109; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 toolbarId=0x7f010034; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=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 toolbarStyle=0x7f0100c8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f010071; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int voiceIcon=0x7f01006b; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010090; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010092; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010093; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010097; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010095; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010094; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010096; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010098; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010099; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowNoTitle=0x7f010091; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f070003; public static final int abc_action_bar_embed_tabs_pre_jb=0x7f070001; public static final int abc_action_bar_expanded_action_views_exclusive=0x7f070004; public static final int abc_allow_stacked_button_bar=0x7f070000; public static final int abc_config_actionMenuItemAllCaps=0x7f070005; public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f070002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f070006; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f070007; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0b0046; public static final int abc_background_cache_hint_selector_material_light=0x7f0b0047; public static final int abc_color_highlight_material=0x7f0b0048; public static final int abc_input_method_navigation_guard=0x7f0b0000; public static final int abc_primary_text_disable_only_material_dark=0x7f0b0049; public static final int abc_primary_text_disable_only_material_light=0x7f0b004a; public static final int abc_primary_text_material_dark=0x7f0b004b; public static final int abc_primary_text_material_light=0x7f0b004c; public static final int abc_search_url_text=0x7f0b004d; public static final int abc_search_url_text_normal=0x7f0b0001; public static final int abc_search_url_text_pressed=0x7f0b0002; public static final int abc_search_url_text_selected=0x7f0b0003; public static final int abc_secondary_text_material_dark=0x7f0b004e; public static final int abc_secondary_text_material_light=0x7f0b004f; public static final int accent_material_dark=0x7f0b0004; public static final int accent_material_light=0x7f0b0005; public static final int background_floating_material_dark=0x7f0b0006; public static final int background_floating_material_light=0x7f0b0007; public static final int background_material_dark=0x7f0b0008; public static final int background_material_light=0x7f0b0009; public static final int bright_foreground_disabled_material_dark=0x7f0b000a; public static final int bright_foreground_disabled_material_light=0x7f0b000b; public static final int bright_foreground_inverse_material_dark=0x7f0b000c; public static final int bright_foreground_inverse_material_light=0x7f0b000d; public static final int bright_foreground_material_dark=0x7f0b000e; public static final int bright_foreground_material_light=0x7f0b000f; public static final int button_material_dark=0x7f0b0010; public static final int button_material_light=0x7f0b0011; public static final int colorAccent=0x7f0b0012; public static final int colorPrimary=0x7f0b0013; public static final int colorPrimaryDark=0x7f0b0014; public static final int design_fab_shadow_end_color=0x7f0b0015; public static final int design_fab_shadow_mid_color=0x7f0b0016; public static final int design_fab_shadow_start_color=0x7f0b0017; public static final int design_fab_stroke_end_inner_color=0x7f0b0018; public static final int design_fab_stroke_end_outer_color=0x7f0b0019; public static final int design_fab_stroke_top_inner_color=0x7f0b001a; public static final int design_fab_stroke_top_outer_color=0x7f0b001b; public static final int design_snackbar_background_color=0x7f0b001c; public static final int design_textinput_error_color=0x7f0b001d; public static final int dim_foreground_disabled_material_dark=0x7f0b001e; public static final int dim_foreground_disabled_material_light=0x7f0b001f; public static final int dim_foreground_material_dark=0x7f0b0020; public static final int dim_foreground_material_light=0x7f0b0021; public static final int foreground_material_dark=0x7f0b0022; public static final int foreground_material_light=0x7f0b0023; public static final int highlighted_text_material_dark=0x7f0b0024; public static final int highlighted_text_material_light=0x7f0b0025; public static final int hint_foreground_material_dark=0x7f0b0026; public static final int hint_foreground_material_light=0x7f0b0027; public static final int material_blue_grey_800=0x7f0b0028; public static final int material_blue_grey_900=0x7f0b0029; public static final int material_blue_grey_950=0x7f0b002a; public static final int material_deep_teal_200=0x7f0b002b; public static final int material_deep_teal_500=0x7f0b002c; public static final int material_grey_100=0x7f0b002d; public static final int material_grey_300=0x7f0b002e; public static final int material_grey_50=0x7f0b002f; public static final int material_grey_600=0x7f0b0030; public static final int material_grey_800=0x7f0b0031; public static final int material_grey_850=0x7f0b0032; public static final int material_grey_900=0x7f0b0033; public static final int primary_dark_material_dark=0x7f0b0034; public static final int primary_dark_material_light=0x7f0b0035; public static final int primary_material_dark=0x7f0b0036; public static final int primary_material_light=0x7f0b0037; public static final int primary_text_default_material_dark=0x7f0b0038; public static final int primary_text_default_material_light=0x7f0b0039; public static final int primary_text_disabled_material_dark=0x7f0b003a; public static final int primary_text_disabled_material_light=0x7f0b003b; public static final int ripple_material_dark=0x7f0b003c; public static final int ripple_material_light=0x7f0b003d; public static final int secondary_text_default_material_dark=0x7f0b003e; public static final int secondary_text_default_material_light=0x7f0b003f; public static final int secondary_text_disabled_material_dark=0x7f0b0040; public static final int secondary_text_disabled_material_light=0x7f0b0041; public static final int switch_thumb_disabled_material_dark=0x7f0b0042; public static final int switch_thumb_disabled_material_light=0x7f0b0043; public static final int switch_thumb_material_dark=0x7f0b0050; public static final int switch_thumb_material_light=0x7f0b0051; public static final int switch_thumb_normal_material_dark=0x7f0b0044; public static final int switch_thumb_normal_material_light=0x7f0b0045; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f08000d; public static final int abc_action_bar_default_height_material=0x7f080001; public static final int abc_action_bar_default_padding_end_material=0x7f08000e; public static final int abc_action_bar_default_padding_start_material=0x7f08000f; public static final int abc_action_bar_icon_vertical_padding_material=0x7f08001a; public static final int abc_action_bar_overflow_padding_end_material=0x7f08001b; public static final int abc_action_bar_overflow_padding_start_material=0x7f08001c; public static final int abc_action_bar_progress_bar_size=0x7f080002; public static final int abc_action_bar_stacked_max_height=0x7f08001d; public static final int abc_action_bar_stacked_tab_max_width=0x7f08001e; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f08001f; public static final int abc_action_bar_subtitle_top_margin_material=0x7f080020; public static final int abc_action_button_min_height_material=0x7f080021; public static final int abc_action_button_min_width_material=0x7f080022; public static final int abc_action_button_min_width_overflow_material=0x7f080023; public static final int abc_alert_dialog_button_bar_height=0x7f080000; public static final int abc_button_inset_horizontal_material=0x7f080024; public static final int abc_button_inset_vertical_material=0x7f080025; public static final int abc_button_padding_horizontal_material=0x7f080026; public static final int abc_button_padding_vertical_material=0x7f080027; public static final int abc_config_prefDialogWidth=0x7f080005; public static final int abc_control_corner_material=0x7f080028; public static final int abc_control_inset_material=0x7f080029; public static final int abc_control_padding_material=0x7f08002a; public static final int abc_dialog_fixed_height_major=0x7f080006; public static final int abc_dialog_fixed_height_minor=0x7f080007; public static final int abc_dialog_fixed_width_major=0x7f080008; public static final int abc_dialog_fixed_width_minor=0x7f080009; public static final int abc_dialog_list_padding_vertical_material=0x7f08002b; public static final int abc_dialog_min_width_major=0x7f08000a; public static final int abc_dialog_min_width_minor=0x7f08000b; public static final int abc_dialog_padding_material=0x7f08002c; public static final int abc_dialog_padding_top_material=0x7f08002d; public static final int abc_disabled_alpha_material_dark=0x7f08002e; public static final int abc_disabled_alpha_material_light=0x7f08002f; public static final int abc_dropdownitem_icon_width=0x7f080030; public static final int abc_dropdownitem_text_padding_left=0x7f080031; public static final int abc_dropdownitem_text_padding_right=0x7f080032; public static final int abc_edit_text_inset_bottom_material=0x7f080033; public static final int abc_edit_text_inset_horizontal_material=0x7f080034; public static final int abc_edit_text_inset_top_material=0x7f080035; public static final int abc_floating_window_z=0x7f080036; public static final int abc_list_item_padding_horizontal_material=0x7f080037; public static final int abc_panel_menu_list_width=0x7f080038; public static final int abc_search_view_preferred_width=0x7f080039; public static final int abc_search_view_text_min_width=0x7f08000c; public static final int abc_seekbar_track_background_height_material=0x7f08003a; public static final int abc_seekbar_track_progress_height_material=0x7f08003b; public static final int abc_select_dialog_padding_start_material=0x7f08003c; public static final int abc_switch_padding=0x7f080017; public static final int abc_text_size_body_1_material=0x7f08003d; public static final int abc_text_size_body_2_material=0x7f08003e; public static final int abc_text_size_button_material=0x7f08003f; public static final int abc_text_size_caption_material=0x7f080040; public static final int abc_text_size_display_1_material=0x7f080041; public static final int abc_text_size_display_2_material=0x7f080042; public static final int abc_text_size_display_3_material=0x7f080043; public static final int abc_text_size_display_4_material=0x7f080044; public static final int abc_text_size_headline_material=0x7f080045; public static final int abc_text_size_large_material=0x7f080046; public static final int abc_text_size_medium_material=0x7f080047; public static final int abc_text_size_menu_material=0x7f080048; public static final int abc_text_size_small_material=0x7f080049; public static final int abc_text_size_subhead_material=0x7f08004a; public static final int abc_text_size_subtitle_material_toolbar=0x7f080003; public static final int abc_text_size_title_material=0x7f08004b; public static final int abc_text_size_title_material_toolbar=0x7f080004; public static final int activity_horizontal_margin=0x7f080019; public static final int activity_vertical_margin=0x7f08004c; public static final int design_appbar_elevation=0x7f08004d; public static final int design_fab_border_width=0x7f08004e; public static final int design_fab_content_size=0x7f08004f; public static final int design_fab_elevation=0x7f080050; public static final int design_fab_size_mini=0x7f080051; public static final int design_fab_size_normal=0x7f080052; public static final int design_fab_translation_z_pressed=0x7f080053; public static final int design_navigation_elevation=0x7f080054; public static final int design_navigation_icon_padding=0x7f080055; public static final int design_navigation_icon_size=0x7f080056; public static final int design_navigation_max_width=0x7f080057; public static final int design_navigation_padding_bottom=0x7f080058; public static final int design_navigation_padding_top_default=0x7f080018; public static final int design_navigation_separator_vertical_padding=0x7f080059; public static final int design_snackbar_action_inline_max_width=0x7f080010; public static final int design_snackbar_background_corner_radius=0x7f080011; public static final int design_snackbar_elevation=0x7f08005a; public static final int design_snackbar_extra_spacing_horizontal=0x7f080012; public static final int design_snackbar_max_width=0x7f080013; public static final int design_snackbar_min_width=0x7f080014; public static final int design_snackbar_padding_horizontal=0x7f08005b; public static final int design_snackbar_padding_vertical=0x7f08005c; public static final int design_snackbar_padding_vertical_2lines=0x7f080015; public static final int design_snackbar_text_size=0x7f08005d; public static final int design_tab_max_width=0x7f08005e; public static final int design_tab_scrollable_min_width=0x7f080016; public static final int design_tab_text_size=0x7f08005f; public static final int design_tab_text_size_2line=0x7f080060; public static final int disabled_alpha_material_dark=0x7f080061; public static final int disabled_alpha_material_light=0x7f080062; public static final int fab_margin=0x7f080063; public static final int highlight_alpha_material_colored=0x7f080064; public static final int highlight_alpha_material_dark=0x7f080065; public static final int highlight_alpha_material_light=0x7f080066; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080067; public static final int notification_large_icon_height=0x7f080068; public static final int notification_large_icon_width=0x7f080069; public static final int notification_subtext_size=0x7f08006a; } 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_rating_star_off_mtrl_alpha=0x7f02000b; public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; public static final int abc_cab_background_internal_bg=0x7f02000f; public static final int abc_cab_background_top_material=0x7f020010; public static final int abc_cab_background_top_mtrl_alpha=0x7f020011; public static final int abc_control_background_material=0x7f020012; public static final int abc_dialog_material_background_dark=0x7f020013; public static final int abc_dialog_material_background_light=0x7f020014; public static final int abc_edit_text_material=0x7f020015; public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; public static final int abc_ic_clear_mtrl_alpha=0x7f020017; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f; public static final int abc_ic_search_api_mtrl_alpha=0x7f020020; public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020021; public static final int abc_item_background_holo_dark=0x7f020022; public static final int abc_item_background_holo_light=0x7f020023; public static final int abc_list_divider_mtrl_alpha=0x7f020024; public static final int abc_list_focused_holo=0x7f020025; public static final int abc_list_longpressed_holo=0x7f020026; public static final int abc_list_pressed_holo_dark=0x7f020027; public static final int abc_list_pressed_holo_light=0x7f020028; public static final int abc_list_selector_background_transition_holo_dark=0x7f020029; public static final int abc_list_selector_background_transition_holo_light=0x7f02002a; public static final int abc_list_selector_disabled_holo_dark=0x7f02002b; public static final int abc_list_selector_disabled_holo_light=0x7f02002c; public static final int abc_list_selector_holo_dark=0x7f02002d; public static final int abc_list_selector_holo_light=0x7f02002e; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f; public static final int abc_popup_background_mtrl_mult=0x7f020030; public static final int abc_ratingbar_full_material=0x7f020031; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020032; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020033; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f020034; public static final int abc_scrubber_primary_mtrl_alpha=0x7f020035; public static final int abc_scrubber_track_mtrl_alpha=0x7f020036; public static final int abc_seekbar_thumb_material=0x7f020037; public static final int abc_seekbar_track_material=0x7f020038; public static final int abc_spinner_mtrl_am_alpha=0x7f020039; public static final int abc_spinner_textfield_background_material=0x7f02003a; public static final int abc_switch_thumb_material=0x7f02003b; public static final int abc_switch_track_mtrl_alpha=0x7f02003c; public static final int abc_tab_indicator_material=0x7f02003d; public static final int abc_tab_indicator_mtrl_alpha=0x7f02003e; public static final int abc_text_cursor_material=0x7f02003f; public static final int abc_textfield_activated_mtrl_alpha=0x7f020040; public static final int abc_textfield_default_mtrl_alpha=0x7f020041; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020042; public static final int abc_textfield_search_default_mtrl_alpha=0x7f020043; public static final int abc_textfield_search_material=0x7f020044; public static final int design_fab_background=0x7f020045; public static final int design_snackbar_background=0x7f020046; public static final int notification_template_icon_bg=0x7f020047; } public static final class id { public static final int action0=0x7f0c0073; public static final int action_bar=0x7f0c005a; public static final int action_bar_activity_content=0x7f0c0000; public static final int action_bar_container=0x7f0c0059; public static final int action_bar_root=0x7f0c0055; public static final int action_bar_spinner=0x7f0c0001; public static final int action_bar_subtitle=0x7f0c003b; public static final int action_bar_title=0x7f0c003a; public static final int action_context_bar=0x7f0c005b; public static final int action_divider=0x7f0c0077; public static final int action_menu_divider=0x7f0c0002; public static final int action_menu_presenter=0x7f0c0003; public static final int action_mode_bar=0x7f0c0057; public static final int action_mode_bar_stub=0x7f0c0056; public static final int action_mode_close_button=0x7f0c003c; public static final int action_settings=0x7f0c0080; public static final int activity_chooser_view_content=0x7f0c003d; public static final int alertTitle=0x7f0c0049; public static final int always=0x7f0c0032; public static final int beginning=0x7f0c0030; public static final int bn=0x7f0c006b; public static final int bottom=0x7f0c001c; public static final int buttonPanel=0x7f0c0044; public static final int cancel_action=0x7f0c0074; public static final int center=0x7f0c001d; public static final int center_horizontal=0x7f0c001e; public static final int center_vertical=0x7f0c001f; public static final int checkbox=0x7f0c0052; public static final int chronometer=0x7f0c007a; public static final int clip_horizontal=0x7f0c002b; public static final int clip_vertical=0x7f0c002c; public static final int collapseActionView=0x7f0c0033; public static final int contentPanel=0x7f0c004a; public static final int custom=0x7f0c0050; public static final int customPanel=0x7f0c004f; public static final int decor_content_parent=0x7f0c0058; public static final int default_activity_button=0x7f0c0040; public static final int design_menu_item_action_area=0x7f0c0072; public static final int design_menu_item_action_area_stub=0x7f0c0071; public static final int design_menu_item_text=0x7f0c0070; public static final int design_navigation_view=0x7f0c006f; public static final int disableHome=0x7f0c000e; public static final int edit_query=0x7f0c005c; public static final int end=0x7f0c0020; public static final int end_padder=0x7f0c007f; public static final int enterAlways=0x7f0c0015; public static final int enterAlwaysCollapsed=0x7f0c0016; public static final int exitUntilCollapsed=0x7f0c0017; public static final int expand_activities_button=0x7f0c003e; public static final int expanded_menu=0x7f0c0051; public static final int fab=0x7f0c006a; public static final int fill=0x7f0c002d; public static final int fill_horizontal=0x7f0c002e; public static final int fill_vertical=0x7f0c0021; public static final int fixed=0x7f0c0037; public static final int home=0x7f0c0004; public static final int homeAsUp=0x7f0c000f; public static final int icon=0x7f0c0042; public static final int ifRoom=0x7f0c0034; public static final int image=0x7f0c003f; public static final int info=0x7f0c007e; public static final int item_touch_helper_previous_elevation=0x7f0c0005; public static final int left=0x7f0c0022; public static final int line1=0x7f0c0078; public static final int line3=0x7f0c007c; public static final int listMode=0x7f0c000b; public static final int list_item=0x7f0c0041; public static final int media_actions=0x7f0c0076; public static final int middle=0x7f0c0031; public static final int mini=0x7f0c002f; public static final int multiply=0x7f0c0026; public static final int navigation_header_container=0x7f0c006e; public static final int never=0x7f0c0035; public static final int none=0x7f0c0010; public static final int normal=0x7f0c000c; public static final int parallax=0x7f0c001a; public static final int parentPanel=0x7f0c0046; public static final int pin=0x7f0c001b; public static final int progress_circular=0x7f0c0006; public static final int progress_horizontal=0x7f0c0007; public static final int radio=0x7f0c0054; public static final int right=0x7f0c0023; public static final int screen=0x7f0c0027; public static final int scroll=0x7f0c0018; public static final int scrollIndicatorDown=0x7f0c004e; public static final int scrollIndicatorUp=0x7f0c004b; public static final int scrollView=0x7f0c004c; public static final int scrollable=0x7f0c0038; public static final int search_badge=0x7f0c005e; public static final int search_bar=0x7f0c005d; public static final int search_button=0x7f0c005f; public static final int search_close_btn=0x7f0c0064; public static final int search_edit_frame=0x7f0c0060; public static final int search_go_btn=0x7f0c0066; public static final int search_mag_icon=0x7f0c0061; public static final int search_plate=0x7f0c0062; public static final int search_src_text=0x7f0c0063; public static final int search_voice_btn=0x7f0c0067; public static final int select_dialog_listview=0x7f0c0068; public static final int shortcut=0x7f0c0053; public static final int showCustom=0x7f0c0011; public static final int showHome=0x7f0c0012; public static final int showTitle=0x7f0c0013; public static final int snackbar_action=0x7f0c006d; public static final int snackbar_text=0x7f0c006c; public static final int snap=0x7f0c0019; public static final int spacer=0x7f0c0045; public static final int split_action_bar=0x7f0c0008; public static final int src_atop=0x7f0c0028; public static final int src_in=0x7f0c0029; public static final int src_over=0x7f0c002a; public static final int start=0x7f0c0024; public static final int status_bar_latest_event_content=0x7f0c0075; public static final int submit_area=0x7f0c0065; public static final int tabMode=0x7f0c000d; public static final int text=0x7f0c007d; public static final int text2=0x7f0c007b; public static final int textSpacerNoButtons=0x7f0c004d; public static final int time=0x7f0c0079; public static final int title=0x7f0c0043; public static final int title_template=0x7f0c0048; public static final int toolbar=0x7f0c0069; public static final int top=0x7f0c0025; public static final int topPanel=0x7f0c0047; public static final int up=0x7f0c0009; public static final int useLogo=0x7f0c0014; public static final int view_offset_helper=0x7f0c000a; public static final int withText=0x7f0c0036; public static final int wrap_content=0x7f0c0039; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0a0002; public static final int abc_config_activityShortDur=0x7f0a0003; public static final int abc_max_action_buttons=0x7f0a0000; public static final int cancel_button_image_alpha=0x7f0a0004; public static final int design_snackbar_text_max_lines=0x7f0a0001; public static final int status_bar_notification_info_maxnum=0x7f0a0005; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_bar_view_list_nav_layout=0x7f040002; public static final int abc_action_menu_item_layout=0x7f040003; public static final int abc_action_menu_layout=0x7f040004; public static final int abc_action_mode_bar=0x7f040005; public static final int abc_action_mode_close_item_material=0x7f040006; public static final int abc_activity_chooser_view=0x7f040007; public static final int abc_activity_chooser_view_list_item=0x7f040008; public static final int abc_alert_dialog_button_bar_material=0x7f040009; public static final int abc_alert_dialog_material=0x7f04000a; public static final int abc_dialog_title_material=0x7f04000b; public static final int abc_expanded_menu_layout=0x7f04000c; public static final int abc_list_menu_item_checkbox=0x7f04000d; public static final int abc_list_menu_item_icon=0x7f04000e; public static final int abc_list_menu_item_layout=0x7f04000f; public static final int abc_list_menu_item_radio=0x7f040010; public static final int abc_popup_menu_item_layout=0x7f040011; public static final int abc_screen_content_include=0x7f040012; public static final int abc_screen_simple=0x7f040013; public static final int abc_screen_simple_overlay_action_mode=0x7f040014; public static final int abc_screen_toolbar=0x7f040015; public static final int abc_search_dropdown_item_icons_2line=0x7f040016; public static final int abc_search_view=0x7f040017; public static final int abc_select_dialog_material=0x7f040018; public static final int activity_main=0x7f040019; public static final int content_main=0x7f04001a; public static final int design_layout_snackbar=0x7f04001b; public static final int design_layout_snackbar_include=0x7f04001c; public static final int design_layout_tab_icon=0x7f04001d; public static final int design_layout_tab_text=0x7f04001e; public static final int design_menu_item_action_area=0x7f04001f; public static final int design_navigation_item=0x7f040020; public static final int design_navigation_item_header=0x7f040021; public static final int design_navigation_item_separator=0x7f040022; public static final int design_navigation_item_subheader=0x7f040023; public static final int design_navigation_menu=0x7f040024; public static final int design_navigation_menu_item=0x7f040025; public static final int notification_media_action=0x7f040026; public static final int notification_media_cancel_action=0x7f040027; public static final int notification_template_big_media=0x7f040028; public static final int notification_template_big_media_narrow=0x7f040029; public static final int notification_template_lines=0x7f04002a; public static final int notification_template_media=0x7f04002b; public static final int notification_template_part_chronometer=0x7f04002c; public static final int notification_template_part_time=0x7f04002d; public static final int select_dialog_item_material=0x7f04002e; public static final int select_dialog_multichoice_material=0x7f04002f; public static final int select_dialog_singlechoice_material=0x7f040030; public static final int support_simple_spinner_dropdown_item=0x7f040031; } public static final class menu { public static final int menu_main=0x7f0d0000; } public static final class mipmap { public static final int ic_launcher=0x7f030000; } public static final class string { public static final int abc_action_bar_home_description=0x7f060000; public static final int abc_action_bar_home_description_format=0x7f060001; public static final int abc_action_bar_home_subtitle_description_format=0x7f060002; public static final int abc_action_bar_up_description=0x7f060003; public static final int abc_action_menu_overflow_description=0x7f060004; public static final int abc_action_mode_done=0x7f060005; public static final int abc_activity_chooser_view_see_all=0x7f060006; public static final int abc_activitychooserview_choose_application=0x7f060007; public static final int abc_capital_off=0x7f060008; public static final int abc_capital_on=0x7f060009; public static final int abc_search_hint=0x7f06000a; public static final int abc_searchview_description_clear=0x7f06000b; public static final int abc_searchview_description_query=0x7f06000c; public static final int abc_searchview_description_search=0x7f06000d; public static final int abc_searchview_description_submit=0x7f06000e; public static final int abc_searchview_description_voice=0x7f06000f; public static final int abc_shareactionprovider_share_with=0x7f060010; public static final int abc_shareactionprovider_share_with_application=0x7f060011; public static final int abc_toolbar_collapse_description=0x7f060012; public static final int action_settings=0x7f060014; public static final int app_name=0x7f060015; public static final int appbar_scrolling_view_behavior=0x7f060016; public static final int character_counter_pattern=0x7f060017; public static final int status_bar_notification_info_overflow=0x7f060013; } public static final class style { public static final int AlertDialog_AppCompat=0x7f09007f; public static final int AlertDialog_AppCompat_Light=0x7f090080; public static final int Animation_AppCompat_Dialog=0x7f090081; public static final int Animation_AppCompat_DropDownUp=0x7f090082; public static final int AppTheme=0x7f090083; public static final int AppTheme_AppBarOverlay=0x7f090084; public static final int AppTheme_NoActionBar=0x7f090030; public static final int AppTheme_PopupOverlay=0x7f090085; public static final int Base_AlertDialog_AppCompat=0x7f090086; public static final int Base_AlertDialog_AppCompat_Light=0x7f090087; public static final int Base_Animation_AppCompat_Dialog=0x7f090088; public static final int Base_Animation_AppCompat_DropDownUp=0x7f090089; public static final int Base_DialogWindowTitle_AppCompat=0x7f09008a; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f09008b; public static final int Base_TextAppearance_AppCompat=0x7f090031; public static final int Base_TextAppearance_AppCompat_Body1=0x7f090032; public static final int Base_TextAppearance_AppCompat_Body2=0x7f090033; public static final int Base_TextAppearance_AppCompat_Button=0x7f09001a; public static final int Base_TextAppearance_AppCompat_Caption=0x7f090034; public static final int Base_TextAppearance_AppCompat_Display1=0x7f090035; public static final int Base_TextAppearance_AppCompat_Display2=0x7f090036; public static final int Base_TextAppearance_AppCompat_Display3=0x7f090037; public static final int Base_TextAppearance_AppCompat_Display4=0x7f090038; public static final int Base_TextAppearance_AppCompat_Headline=0x7f090039; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f090005; public static final int Base_TextAppearance_AppCompat_Large=0x7f09003a; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090006; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f09003b; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f09003c; public static final int Base_TextAppearance_AppCompat_Medium=0x7f09003d; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090007; public static final int Base_TextAppearance_AppCompat_Menu=0x7f09003e; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f09008c; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09003f; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f090040; public static final int Base_TextAppearance_AppCompat_Small=0x7f090041; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f090008; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f090042; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090009; public static final int Base_TextAppearance_AppCompat_Title=0x7f090043; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f09000a; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090044; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090045; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090046; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090047; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090048; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090049; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f09004a; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f09004b; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f09007b; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f09008d; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f09004c; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f09004d; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09004e; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09004f; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f09008e; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f090050; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090051; public static final int Base_Theme_AppCompat=0x7f090052; public static final int Base_Theme_AppCompat_CompactMenu=0x7f09008f; public static final int Base_Theme_AppCompat_Dialog=0x7f09000b; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f090090; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f090091; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f090092; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090002; public static final int Base_Theme_AppCompat_Light=0x7f090053; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f090093; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f09000c; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f090094; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f090095; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f090096; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090003; public static final int Base_ThemeOverlay_AppCompat=0x7f090097; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f090098; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f090099; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f09009a; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f09009b; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09000d; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09000e; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090016; public static final int Base_V12_Widget_AppCompat_EditText=0x7f090017; public static final int Base_V21_Theme_AppCompat=0x7f090054; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090055; public static final int Base_V21_Theme_AppCompat_Light=0x7f090056; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090057; public static final int Base_V22_Theme_AppCompat=0x7f090079; public static final int Base_V22_Theme_AppCompat_Light=0x7f09007a; public static final int Base_V23_Theme_AppCompat=0x7f09007c; public static final int Base_V23_Theme_AppCompat_Light=0x7f09007d; public static final int Base_V7_Theme_AppCompat=0x7f09009c; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f09009d; public static final int Base_V7_Theme_AppCompat_Light=0x7f09009e; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f09009f; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0900a0; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0900a1; public static final int Base_Widget_AppCompat_ActionBar=0x7f0900a2; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900a3; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900a4; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090058; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090059; public static final int Base_Widget_AppCompat_ActionButton=0x7f09005a; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f09005b; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f09005c; public static final int Base_Widget_AppCompat_ActionMode=0x7f0900a5; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900a6; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090018; public static final int Base_Widget_AppCompat_Button=0x7f09005d; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09005e; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09005f; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900a7; public static final int Base_Widget_AppCompat_Button_Colored=0x7f09007e; public static final int Base_Widget_AppCompat_Button_Small=0x7f090060; public static final int Base_Widget_AppCompat_ButtonBar=0x7f090061; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900a8; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f090062; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f090063; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900a9; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900aa; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090064; public static final int Base_Widget_AppCompat_EditText=0x7f090019; public static final int Base_Widget_AppCompat_ImageButton=0x7f090065; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900ab; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900ac; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900ad; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090066; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090067; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090068; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090069; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09006a; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f09006b; public static final int Base_Widget_AppCompat_ListView=0x7f09006c; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f09006d; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f09006e; public static final int Base_Widget_AppCompat_PopupMenu=0x7f09006f; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f090070; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900ae; public static final int Base_Widget_AppCompat_ProgressBar=0x7f09000f; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f090010; public static final int Base_Widget_AppCompat_RatingBar=0x7f090071; public static final int Base_Widget_AppCompat_SearchView=0x7f0900af; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900b0; public static final int Base_Widget_AppCompat_SeekBar=0x7f090072; public static final int Base_Widget_AppCompat_Spinner=0x7f090073; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f090004; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f090074; public static final int Base_Widget_AppCompat_Toolbar=0x7f0900b1; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090075; public static final int Base_Widget_Design_TabLayout=0x7f0900b2; public static final int Platform_AppCompat=0x7f090011; public static final int Platform_AppCompat_Light=0x7f090012; public static final int Platform_ThemeOverlay_AppCompat=0x7f090076; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090077; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090078; public static final int Platform_V11_AppCompat=0x7f090013; public static final int Platform_V11_AppCompat_Light=0x7f090014; public static final int Platform_V14_AppCompat=0x7f09001b; public static final int Platform_V14_AppCompat_Light=0x7f09001c; public static final int Platform_Widget_AppCompat_Spinner=0x7f090015; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090022; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090023; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090024; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090025; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090026; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090027; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090028; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090029; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f09002a; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09002b; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09002c; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09002d; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f09002e; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f09002f; public static final int TextAppearance_AppCompat=0x7f0900b3; public static final int TextAppearance_AppCompat_Body1=0x7f0900b4; public static final int TextAppearance_AppCompat_Body2=0x7f0900b5; public static final int TextAppearance_AppCompat_Button=0x7f0900b6; public static final int TextAppearance_AppCompat_Caption=0x7f0900b7; public static final int TextAppearance_AppCompat_Display1=0x7f0900b8; public static final int TextAppearance_AppCompat_Display2=0x7f0900b9; public static final int TextAppearance_AppCompat_Display3=0x7f0900ba; public static final int TextAppearance_AppCompat_Display4=0x7f0900bb; public static final int TextAppearance_AppCompat_Headline=0x7f0900bc; public static final int TextAppearance_AppCompat_Inverse=0x7f0900bd; public static final int TextAppearance_AppCompat_Large=0x7f0900be; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900bf; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900c0; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900c1; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900c2; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900c3; public static final int TextAppearance_AppCompat_Medium=0x7f0900c4; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900c5; public static final int TextAppearance_AppCompat_Menu=0x7f0900c6; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900c7; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900c8; public static final int TextAppearance_AppCompat_Small=0x7f0900c9; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900ca; public static final int TextAppearance_AppCompat_Subhead=0x7f0900cb; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900cc; public static final int TextAppearance_AppCompat_Title=0x7f0900cd; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900ce; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900cf; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900d0; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900d1; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900d2; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900d3; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900d4; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900d5; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900d6; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900d7; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900d8; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900d9; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900da; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0900db; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0900dc; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0900dd; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0900de; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0900df; public static final int TextAppearance_Design_Counter=0x7f0900e0; public static final int TextAppearance_Design_Counter_Overflow=0x7f0900e1; public static final int TextAppearance_Design_Error=0x7f0900e2; public static final int TextAppearance_Design_Hint=0x7f0900e3; public static final int TextAppearance_Design_Snackbar_Message=0x7f0900e4; public static final int TextAppearance_Design_Tab=0x7f0900e5; public static final int TextAppearance_StatusBar_EventContent=0x7f09001d; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f09001e; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f09001f; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f090020; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f090021; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900e6; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0900e7; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0900e8; public static final int Theme_AppCompat=0x7f0900e9; public static final int Theme_AppCompat_CompactMenu=0x7f0900ea; public static final int Theme_AppCompat_Dialog=0x7f0900eb; public static final int Theme_AppCompat_Dialog_Alert=0x7f0900ec; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0900ed; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0900ee; public static final int Theme_AppCompat_Light=0x7f0900ef; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0900f0; public static final int Theme_AppCompat_Light_Dialog=0x7f0900f1; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0900f2; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900f3; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0900f4; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0900f5; public static final int Theme_AppCompat_NoActionBar=0x7f0900f6; public static final int ThemeOverlay_AppCompat=0x7f0900f7; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0900f8; public static final int ThemeOverlay_AppCompat_Dark=0x7f0900f9; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900fa; public static final int ThemeOverlay_AppCompat_Light=0x7f0900fb; public static final int Widget_AppCompat_ActionBar=0x7f0900fc; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0900fd; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0900fe; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0900ff; public static final int Widget_AppCompat_ActionBar_TabView=0x7f090100; public static final int Widget_AppCompat_ActionButton=0x7f090101; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090102; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090103; public static final int Widget_AppCompat_ActionMode=0x7f090104; public static final int Widget_AppCompat_ActivityChooserView=0x7f090105; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f090106; public static final int Widget_AppCompat_Button=0x7f090107; public static final int Widget_AppCompat_Button_Borderless=0x7f090108; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f090109; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f09010a; public static final int Widget_AppCompat_Button_Colored=0x7f09010b; public static final int Widget_AppCompat_Button_Small=0x7f09010c; public static final int Widget_AppCompat_ButtonBar=0x7f09010d; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f09010e; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f09010f; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f090110; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f090111; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090112; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090113; public static final int Widget_AppCompat_EditText=0x7f090114; public static final int Widget_AppCompat_ImageButton=0x7f090115; public static final int Widget_AppCompat_Light_ActionBar=0x7f090116; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f090117; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f090118; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f090119; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f09011a; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f09011b; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09011c; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f09011d; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f09011e; public static final int Widget_AppCompat_Light_ActionButton=0x7f09011f; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f090120; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f090121; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090122; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090123; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090124; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090125; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f090126; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f090127; public static final int Widget_AppCompat_Light_PopupMenu=0x7f090128; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090129; public static final int Widget_AppCompat_Light_SearchView=0x7f09012a; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f09012b; public static final int Widget_AppCompat_ListPopupWindow=0x7f09012c; public static final int Widget_AppCompat_ListView=0x7f09012d; public static final int Widget_AppCompat_ListView_DropDown=0x7f09012e; public static final int Widget_AppCompat_ListView_Menu=0x7f09012f; public static final int Widget_AppCompat_PopupMenu=0x7f090130; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f090131; public static final int Widget_AppCompat_PopupWindow=0x7f090132; public static final int Widget_AppCompat_ProgressBar=0x7f090133; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f090134; public static final int Widget_AppCompat_RatingBar=0x7f090135; public static final int Widget_AppCompat_SearchView=0x7f090136; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f090137; public static final int Widget_AppCompat_SeekBar=0x7f090138; public static final int Widget_AppCompat_Spinner=0x7f090139; public static final int Widget_AppCompat_Spinner_DropDown=0x7f09013a; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f09013b; public static final int Widget_AppCompat_Spinner_Underlined=0x7f09013c; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f09013d; public static final int Widget_AppCompat_Toolbar=0x7f09013e; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f09013f; public static final int Widget_Design_AppBarLayout=0x7f090140; public static final int Widget_Design_CollapsingToolbar=0x7f090141; public static final int Widget_Design_CoordinatorLayout=0x7f090142; public static final int Widget_Design_FloatingActionButton=0x7f090143; public static final int Widget_Design_NavigationView=0x7f090144; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f090145; public static final int Widget_Design_Snackbar=0x7f090146; public static final int Widget_Design_TabLayout=0x7f090001; public static final int Widget_Design_TextInputLayout=0x7f090147; } public static final class styleable { /** Attributes that can be used with a ActionBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBar_background com.example.user.work3:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.example.user.work3:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.example.user.work3:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.example.user.work3:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.example.user.work3:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.example.user.work3:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.example.user.work3:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.example.user.work3:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.example.user.work3:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.example.user.work3:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.example.user.work3:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.example.user.work3:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.example.user.work3:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.example.user.work3:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.example.user.work3:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.example.user.work3:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.user.work3:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.example.user.work3:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.example.user.work3:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.example.user.work3:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.example.user.work3:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.example.user.work3:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.example.user.work3:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.example.user.work3:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.user.work3:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.example.user.work3:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.example.user.work3:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionBar_background @see #ActionBar_backgroundSplit @see #ActionBar_backgroundStacked @see #ActionBar_contentInsetEnd @see #ActionBar_contentInsetLeft @see #ActionBar_contentInsetRight @see #ActionBar_contentInsetStart @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 = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f0100be }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#background} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.user.work3:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#backgroundStacked} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.user.work3:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#contentInsetEnd} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#contentInsetLeft} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#contentInsetRight} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#contentInsetStart} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#customNavigationLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#displayOptions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> @attr name com.example.user.work3:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#divider} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#elevation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:elevation */ public static final int ActionBar_elevation = 24; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#height} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#hideOnContentScroll} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 26; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#homeLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#icon} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#indeterminateProgressStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#itemPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#logo} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#navigationMode} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> @attr name com.example.user.work3:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#popupTheme} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:popupTheme */ public static final int ActionBar_popupTheme = 25; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#progressBarPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#progressBarStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#subtitle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#title} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:titleTextStyle */ public static final int ActionBar_titleTextStyle = 5; /** Attributes that can be used with a ActionBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> </table> @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout = { 0x010100b3 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity = 0; /** Attributes that can be used with a ActionMenuItemView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> </table> @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView = { 0x0101013f }; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ActionMenuItemView} array. @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth = 0; /** Attributes that can be used with a ActionMenuView. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMode_background com.example.user.work3:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.example.user.work3:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.example.user.work3:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.example.user.work3:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.user.work3:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.example.user.work3: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 = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#background} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionMode} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.user.work3:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#closeItemLayout} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#height} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:titleTextStyle */ public static final int ActionMode_titleTextStyle = 1; /** Attributes that can be used with a ActivityChooserView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.example.user.work3:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.user.work3:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#expandActivityOverflowButtonDrawable} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#initialActivityCount} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a AlertDialog. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.example.user.work3:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.example.user.work3:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.example.user.work3:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.example.user.work3:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.example.user.work3: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_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #AlertDialog} array. @attr name android:layout */ public static final int AlertDialog_android_layout = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#buttonPanelSideLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#listItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#listLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#multiChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#singleChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_elevation com.example.user.work3:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded com.example.user.work3:expanded}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_elevation @see #AppBarLayout_expanded */ public static final int[] AppBarLayout = { 0x010100d4, 0x7f01001a, 0x7f010024 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:background */ public static final int AppBarLayout_android_background = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#elevation} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:elevation */ public static final int AppBarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#expanded} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:expanded */ public static final int AppBarLayout_expanded = 2; /** Attributes that can be used with a AppBarLayout_LayoutParams. <p>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_LayoutParams_layout_scrollFlags com.example.user.work3:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator com.example.user.work3:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_LayoutParams_layout_scrollFlags @see #AppBarLayout_LayoutParams_layout_scrollInterpolator */ public static final int[] AppBarLayout_LayoutParams = { 0x7f010025, 0x7f010026 }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#layout_scrollFlags} attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> @attr name com.example.user.work3:layout_scrollFlags */ public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#layout_scrollInterpolator} attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:layout_scrollInterpolator */ public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps com.example.user.work3:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010027 }; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextView} array. @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#textAllCaps} attribute's value can be found in the {@link #AppCompatTextView} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.example.user.work3:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a ButtonBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ButtonBarLayout_allowStacking com.example.user.work3:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f010028 }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#allowStacking} attribute's value can be found in the {@link #ButtonBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode com.example.user.work3:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier com.example.user.work3:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier */ public static final int[] CollapsingAppBarLayout_LayoutParams = { 0x7f010029, 0x7f01002a }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#layout_collapseMode} attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> @attr name com.example.user.work3:layout_collapseMode */ public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#layout_collapseParallaxMultiplier} attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:layout_collapseParallaxMultiplier */ public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; /** Attributes that can be used with a CollapsingToolbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.example.user.work3:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.example.user.work3:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.example.user.work3:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.example.user.work3:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.example.user.work3:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.example.user.work3:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.example.user.work3:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.example.user.work3:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.example.user.work3:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.example.user.work3:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.example.user.work3:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title com.example.user.work3:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.example.user.work3:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.example.user.work3: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_statusBarScrim @see #CollapsingToolbarLayout_title @see #CollapsingToolbarLayout_titleEnabled @see #CollapsingToolbarLayout_toolbarId */ public static final int[] CollapsingToolbarLayout = { 0x7f010003, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037 }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#collapsedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.example.user.work3:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#collapsedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#contentScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#expandedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.example.user.work3:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity = 12; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#expandedTitleMargin} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#expandedTitleMarginBottom} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#expandedTitleMarginEnd} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#expandedTitleMarginStart} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#expandedTitleMarginTop} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#expandedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#statusBarScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#title} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:title */ public static final int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#titleEnabled} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled = 13; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#toolbarId} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:toolbarId */ public static final int CollapsingToolbarLayout_toolbarId = 10; /** Attributes that can be used with a CompoundButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTint com.example.user.work3:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.example.user.work3:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f010038, 0x7f010039 }; /** <p>This symbol is the offset where the {@link android.R.attr#button} attribute's value can be found in the {@link #CompoundButton} array. @attr name android:button */ public static final int CompoundButton_android_button = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#buttonTint} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.example.user.work3:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a CoordinatorLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_keylines com.example.user.work3:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.example.user.work3:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f01003a, 0x7f01003b }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#keylines} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:keylines */ public static final int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#statusBarBackground} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:statusBarBackground */ public static final int CoordinatorLayout_statusBarBackground = 1; /** Attributes that can be used with a CoordinatorLayout_LayoutParams. <p>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_LayoutParams_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_anchor com.example.user.work3:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity com.example.user.work3:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_behavior com.example.user.work3:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_LayoutParams_layout_keyline com.example.user.work3:layout_keyline}</code></td><td></td></tr> </table> @see #CoordinatorLayout_LayoutParams_android_layout_gravity @see #CoordinatorLayout_LayoutParams_layout_anchor @see #CoordinatorLayout_LayoutParams_layout_anchorGravity @see #CoordinatorLayout_LayoutParams_layout_behavior @see #CoordinatorLayout_LayoutParams_layout_keyline */ public static final int[] CoordinatorLayout_LayoutParams = { 0x010100b3, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. @attr name android:layout_gravity */ public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#layout_anchor} attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:layout_anchor */ public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#layout_anchorGravity} attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.example.user.work3:layout_anchorGravity */ public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#layout_behavior} attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:layout_behavior */ public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#layout_keyline} attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:layout_keyline */ public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.example.user.work3:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.example.user.work3:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.example.user.work3:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.example.user.work3:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.example.user.work3:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.example.user.work3:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.example.user.work3:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.example.user.work3: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 = { 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#arrowHeadLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#arrowShaftLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#barLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#color} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#drawableSize} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#gapBetweenBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#spinBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#thickness} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a FloatingActionButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTint com.example.user.work3:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.example.user.work3:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth com.example.user.work3:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation com.example.user.work3:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize com.example.user.work3:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.example.user.work3:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor com.example.user.work3:rippleColor}</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 */ public static final int[] FloatingActionButton = { 0x7f01001a, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01010e, 0x7f01010f }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#backgroundTint} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:backgroundTint */ public static final int FloatingActionButton_backgroundTint = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#backgroundTintMode} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.example.user.work3:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#borderWidth} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:borderWidth */ public static final int FloatingActionButton_borderWidth = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#elevation} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:elevation */ public static final int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.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>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> @attr name com.example.user.work3:fabSize */ public static final int FloatingActionButton_fabSize = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#pressedTranslationZ} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#rippleColor} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:rippleColor */ public static final int FloatingActionButton_rippleColor = 1; /** Attributes that can be used with a ForegroundLinearLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.example.user.work3: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, 0x7f01004c }; /** <p>This symbol is the offset where the {@link android.R.attr#foreground} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foreground */ public static final int ForegroundLinearLayout_android_foreground = 0; /** <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foregroundGravity */ public static final int ForegroundLinearLayout_android_foregroundGravity = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#foregroundInsidePadding} attribute's value can be found in the {@link #ForegroundLinearLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3: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 com.example.user.work3:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.example.user.work3:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.example.user.work3:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.example.user.work3: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, 0x7f01000b, 0x7f01004d, 0x7f01004e, 0x7f01004f }; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned = 2; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation = 1; /** <p>This symbol is the offset where the {@link android.R.attr#weightSum} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#divider} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#dividerPadding} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#measureWithLargestChild} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#showDividers} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> @attr name com.example.user.work3:showDividers */ public static final int LinearLayoutCompat_showDividers = 7; /** Attributes that can be used with a LinearLayoutCompat_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_Layout_android_layout_gravity @see #LinearLayoutCompat_Layout_android_layout_height @see #LinearLayoutCompat_Layout_android_layout_weight @see #LinearLayoutCompat_Layout_android_layout_width */ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout_weight} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width = 1; /** Attributes that can be used with a ListPopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> </table> @see #ListPopupWindow_android_dropDownHorizontalOffset @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Attributes that can be used with a MenuGroup. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> </table> @see #MenuGroup_android_checkableBehavior @see #MenuGroup_android_enabled @see #MenuGroup_android_id @see #MenuGroup_android_menuCategory @see #MenuGroup_android_orderInCategory @see #MenuGroup_android_visible */ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:enabled */ public static final int MenuGroup_android_enabled = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:id */ public static final int MenuGroup_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:visible */ public static final int MenuGroup_android_visible = 2; /** Attributes that can be used with a MenuItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuItem_actionLayout com.example.user.work3:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.example.user.work3:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.example.user.work3: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 com.example.user.work3: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, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053 }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionLayout} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionProviderClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionViewClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:actionViewClass */ public static final int MenuItem_actionViewClass = 15; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /** <p>This symbol is the offset where the {@link android.R.attr#checked} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuItem} array. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #MenuItem} array. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuItem} array. @attr name android:id */ public static final int MenuItem_android_id = 2; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /** <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /** <p>This symbol is the offset where the {@link android.R.attr#onClick} attribute's value can be found in the {@link #MenuItem} array. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /** <p>This symbol is the offset where the {@link android.R.attr#title} attribute's value can be found in the {@link #MenuItem} array. @attr name android:title */ public static final int MenuItem_android_title = 7; /** <p>This symbol is the offset where the {@link android.R.attr#titleCondensed} attribute's value can be found in the {@link #MenuItem} array. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuItem} array. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#showAsAction} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> @attr name com.example.user.work3: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 com.example.user.work3:preserveIconSpacing}</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 */ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010054 }; /** <p>This symbol is the offset where the {@link android.R.attr#headerBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /** <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /** <p>This symbol is the offset where the {@link android.R.attr#itemBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemBackground */ public static final int MenuView_android_itemBackground = 5; /** <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /** <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /** <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #MenuView} array. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#preserveIconSpacing} attribute's value can be found in the {@link #MenuView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** Attributes that can be used with a NavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_elevation com.example.user.work3:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout com.example.user.work3:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground com.example.user.work3:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint com.example.user.work3:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance com.example.user.work3:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor com.example.user.work3:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu com.example.user.work3: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, 0x7f01001a, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #NavigationView} array. @attr name android:background */ public static final int NavigationView_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} attribute's value can be found in the {@link #NavigationView} array. @attr name android:fitsSystemWindows */ public static final int NavigationView_android_fitsSystemWindows = 1; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #NavigationView} array. @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#elevation} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:elevation */ public static final int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#headerLayout} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:headerLayout */ public static final int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#itemBackground} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:itemBackground */ public static final int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#itemIconTint} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:itemIconTint */ public static final int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#itemTextAppearance} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:itemTextAppearance */ public static final int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#itemTextColor} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:itemTextColor */ public static final int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#menu} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3: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_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor com.example.user.work3:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x7f01005b }; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#overlapAnchor} attribute's value can be found in the {@link #PopupWindow} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 1; /** Attributes that can be used with a PopupWindowBackgroundState. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.example.user.work3:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f01005c }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#state_above_anchor} attribute's value can be found in the {@link #PopupWindowBackgroundState} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a RecyclerView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager com.example.user.work3:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout com.example.user.work3:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount com.example.user.work3:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd com.example.user.work3:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_orientation @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060 }; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:orientation */ public static final int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#layoutManager} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:layoutManager */ public static final int RecyclerView_layoutManager = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#reverseLayout} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:reverseLayout */ public static final int RecyclerView_reverseLayout = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#spanCount} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:spanCount */ public static final int RecyclerView_spanCount = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#stackFromEnd} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:stackFromEnd */ public static final int RecyclerView_stackFromEnd = 4; /** Attributes that can be used with a ScrimInsetsFrameLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.example.user.work3:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f010061 }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#insetForeground} attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.user.work3:insetForeground */ public static final int ScrimInsetsFrameLayout_insetForeground = 0; /** Attributes that can be used with a ScrollingViewBehavior_Params. <p>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_Params_behavior_overlapTop com.example.user.work3:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Params_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Params = { 0x7f010062 }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#behavior_overlapTop} attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:behavior_overlapTop */ public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon com.example.user.work3:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.example.user.work3:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.example.user.work3:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.example.user.work3:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.example.user.work3:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.example.user.work3:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.example.user.work3:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.example.user.work3:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.example.user.work3:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.example.user.work3:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.example.user.work3:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.example.user.work3:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.example.user.work3: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, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #SearchView} array. @attr name android:focusable */ public static final int SearchView_android_focusable = 0; /** <p>This symbol is the offset where the {@link android.R.attr#imeOptions} attribute's value can be found in the {@link #SearchView} array. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 3; /** <p>This symbol is the offset where the {@link android.R.attr#inputType} attribute's value can be found in the {@link #SearchView} array. @attr name android:inputType */ public static final int SearchView_android_inputType = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SearchView} array. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#closeIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#commitIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#defaultQueryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#goIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#iconifiedByDefault} attribute's value can be found in the {@link #SearchView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#layout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#queryBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#queryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#searchHintIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#searchIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#submitBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#suggestionRowLayout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#voiceIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SnackbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_elevation com.example.user.work3:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.example.user.work3:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f01001a, 0x7f010070 }; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SnackbarLayout} array. @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#elevation} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:elevation */ public static final int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#maxActionInlineWidth} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3: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_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme com.example.user.work3:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }; /** <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 = 2; /** <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 = 0; /** <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 = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#popupTheme} attribute's value can be found in the {@link #Spinner} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:popupTheme */ public static final int Spinner_popupTheme = 3; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText com.example.user.work3:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.example.user.work3:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.example.user.work3:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.example.user.work3:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.example.user.work3:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.example.user.work3:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.example.user.work3:track}</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_track */ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077 }; /** <p>This symbol is the offset where the {@link android.R.attr#textOff} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOff */ public static final int SwitchCompat_android_textOff = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textOn} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOn */ public static final int SwitchCompat_android_textOn = 0; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:thumb */ public static final int SwitchCompat_android_thumb = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#showText} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:showText */ public static final int SwitchCompat_showText = 9; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#splitTrack} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:splitTrack */ public static final int SwitchCompat_splitTrack = 8; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#switchMinWidth} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#switchPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:switchPadding */ public static final int SwitchCompat_switchPadding = 7; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#switchTextAppearance} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#thumbTextPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#track} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:track */ public static final int SwitchCompat_track = 3; /** Attributes that can be used with a TabLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabLayout_tabBackground com.example.user.work3:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart com.example.user.work3:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity com.example.user.work3:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor com.example.user.work3:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.example.user.work3:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth com.example.user.work3:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth com.example.user.work3:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode com.example.user.work3:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding com.example.user.work3:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom com.example.user.work3:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd com.example.user.work3:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart com.example.user.work3:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop com.example.user.work3:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.example.user.work3:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance com.example.user.work3:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor com.example.user.work3: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 = { 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087 }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabBackground} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:tabBackground */ public static final int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabContentStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabContentStart */ public static final int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabGravity} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> @attr name com.example.user.work3:tabGravity */ public static final int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabIndicatorColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabIndicatorHeight} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabMaxWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabMaxWidth */ public static final int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabMinWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabMinWidth */ public static final int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabMode} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> @attr name com.example.user.work3:tabMode */ public static final int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabPadding} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabPadding */ public static final int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabPaddingBottom} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabPaddingEnd} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabPaddingStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabPaddingStart */ public static final int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabPaddingTop} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabPaddingTop */ public static final int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabSelectedTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabTextAppearance} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:tabTextAppearance */ public static final int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#tabTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3: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_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps com.example.user.work3: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_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010027 }; /** <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 = 4; /** <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 = 5; /** <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 = 6; /** <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 = 7; /** <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#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#textAllCaps} attribute's value can be found in the {@link #TextAppearance} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.example.user.work3:textAllCaps */ public static final int TextAppearance_textAllCaps = 8; /** Attributes that can be used with a TextInputLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterEnabled com.example.user.work3:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength com.example.user.work3:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.example.user.work3:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.example.user.work3:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled com.example.user.work3:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.example.user.work3:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.example.user.work3:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.example.user.work3:hintTextAppearance}</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_hintTextAppearance */ public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f }; /** <p>This symbol is the offset where the {@link android.R.attr#hint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:hint */ public static final int TextInputLayout_android_hint = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:textColorHint */ public static final int TextInputLayout_android_textColorHint = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#counterEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:counterEnabled */ public static final int TextInputLayout_counterEnabled = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#counterMaxLength} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:counterMaxLength */ public static final int TextInputLayout_counterMaxLength = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#counterOverflowTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#counterTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance = 7; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#errorEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:errorEnabled */ public static final int TextInputLayout_errorEnabled = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#errorTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#hintAnimationEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled = 9; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#hintTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance = 2; /** Attributes that can be used with a Theme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Theme_actionBarDivider com.example.user.work3:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarItemBackground com.example.user.work3:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarPopupTheme com.example.user.work3:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarSize com.example.user.work3:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarSplitStyle com.example.user.work3:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarStyle com.example.user.work3:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabBarStyle com.example.user.work3:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabStyle com.example.user.work3:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabTextStyle com.example.user.work3:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTheme com.example.user.work3:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarWidgetTheme com.example.user.work3:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionButtonStyle com.example.user.work3:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionDropDownStyle com.example.user.work3:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionMenuTextAppearance com.example.user.work3:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionMenuTextColor com.example.user.work3:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeBackground com.example.user.work3:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCloseButtonStyle com.example.user.work3:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCloseDrawable com.example.user.work3:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCopyDrawable com.example.user.work3:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCutDrawable com.example.user.work3:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeFindDrawable com.example.user.work3:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModePasteDrawable com.example.user.work3:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModePopupWindowStyle com.example.user.work3:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeSelectAllDrawable com.example.user.work3:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeShareDrawable com.example.user.work3:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeSplitBackground com.example.user.work3:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeStyle com.example.user.work3:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeWebSearchDrawable com.example.user.work3:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionOverflowButtonStyle com.example.user.work3:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionOverflowMenuStyle com.example.user.work3:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_activityChooserViewStyle com.example.user.work3:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogButtonGroupStyle com.example.user.work3:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogCenterButtons com.example.user.work3:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogStyle com.example.user.work3:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogTheme com.example.user.work3:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #Theme_autoCompleteTextViewStyle com.example.user.work3:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_borderlessButtonStyle com.example.user.work3:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarButtonStyle com.example.user.work3:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarNegativeButtonStyle com.example.user.work3:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarNeutralButtonStyle com.example.user.work3:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarPositiveButtonStyle com.example.user.work3:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarStyle com.example.user.work3:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonStyle com.example.user.work3:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonStyleSmall com.example.user.work3:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_checkboxStyle com.example.user.work3:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_checkedTextViewStyle com.example.user.work3:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorAccent com.example.user.work3:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorButtonNormal com.example.user.work3:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlActivated com.example.user.work3:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlHighlight com.example.user.work3:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlNormal com.example.user.work3:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorPrimary com.example.user.work3:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorPrimaryDark com.example.user.work3:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorSwitchThumbNormal com.example.user.work3:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_controlBackground com.example.user.work3:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dialogPreferredPadding com.example.user.work3:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dialogTheme com.example.user.work3:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dividerHorizontal com.example.user.work3:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dividerVertical com.example.user.work3:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dropDownListViewStyle com.example.user.work3:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.example.user.work3:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextBackground com.example.user.work3:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextColor com.example.user.work3:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextStyle com.example.user.work3:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_homeAsUpIndicator com.example.user.work3:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #Theme_imageButtonStyle com.example.user.work3:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.example.user.work3:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listDividerAlertDialog com.example.user.work3:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPopupWindowStyle com.example.user.work3:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeight com.example.user.work3:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeightLarge com.example.user.work3:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeightSmall com.example.user.work3:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemPaddingLeft com.example.user.work3:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemPaddingRight com.example.user.work3:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelBackground com.example.user.work3:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelMenuListTheme com.example.user.work3:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelMenuListWidth com.example.user.work3:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #Theme_popupMenuStyle com.example.user.work3:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_popupWindowStyle com.example.user.work3:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_radioButtonStyle com.example.user.work3:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_ratingBarStyle com.example.user.work3:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_searchViewStyle com.example.user.work3:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_seekBarStyle com.example.user.work3:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_selectableItemBackground com.example.user.work3:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_selectableItemBackgroundBorderless com.example.user.work3:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #Theme_spinnerDropDownItemStyle com.example.user.work3:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_spinnerStyle com.example.user.work3:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_switchStyle com.example.user.work3:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceLargePopupMenu com.example.user.work3:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceListItem com.example.user.work3:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceListItemSmall com.example.user.work3:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle com.example.user.work3:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSearchResultTitle com.example.user.work3:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu com.example.user.work3:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textColorAlertDialogListItem com.example.user.work3:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textColorSearchUrl com.example.user.work3:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #Theme_toolbarNavigationButtonStyle com.example.user.work3:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_toolbarStyle com.example.user.work3:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionBar com.example.user.work3:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionBarOverlay com.example.user.work3:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionModeOverlay com.example.user.work3:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedHeightMajor com.example.user.work3:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedHeightMinor com.example.user.work3:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedWidthMajor com.example.user.work3:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedWidthMinor com.example.user.work3:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowMinWidthMajor com.example.user.work3:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowMinWidthMinor com.example.user.work3:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowNoTitle com.example.user.work3:windowNoTitle}</code></td><td></td></tr> </table> @see #Theme_actionBarDivider @see #Theme_actionBarItemBackground @see #Theme_actionBarPopupTheme @see #Theme_actionBarSize @see #Theme_actionBarSplitStyle @see #Theme_actionBarStyle @see #Theme_actionBarTabBarStyle @see #Theme_actionBarTabStyle @see #Theme_actionBarTabTextStyle @see #Theme_actionBarTheme @see #Theme_actionBarWidgetTheme @see #Theme_actionButtonStyle @see #Theme_actionDropDownStyle @see #Theme_actionMenuTextAppearance @see #Theme_actionMenuTextColor @see #Theme_actionModeBackground @see #Theme_actionModeCloseButtonStyle @see #Theme_actionModeCloseDrawable @see #Theme_actionModeCopyDrawable @see #Theme_actionModeCutDrawable @see #Theme_actionModeFindDrawable @see #Theme_actionModePasteDrawable @see #Theme_actionModePopupWindowStyle @see #Theme_actionModeSelectAllDrawable @see #Theme_actionModeShareDrawable @see #Theme_actionModeSplitBackground @see #Theme_actionModeStyle @see #Theme_actionModeWebSearchDrawable @see #Theme_actionOverflowButtonStyle @see #Theme_actionOverflowMenuStyle @see #Theme_activityChooserViewStyle @see #Theme_alertDialogButtonGroupStyle @see #Theme_alertDialogCenterButtons @see #Theme_alertDialogStyle @see #Theme_alertDialogTheme @see #Theme_android_windowAnimationStyle @see #Theme_android_windowIsFloating @see #Theme_autoCompleteTextViewStyle @see #Theme_borderlessButtonStyle @see #Theme_buttonBarButtonStyle @see #Theme_buttonBarNegativeButtonStyle @see #Theme_buttonBarNeutralButtonStyle @see #Theme_buttonBarPositiveButtonStyle @see #Theme_buttonBarStyle @see #Theme_buttonStyle @see #Theme_buttonStyleSmall @see #Theme_checkboxStyle @see #Theme_checkedTextViewStyle @see #Theme_colorAccent @see #Theme_colorButtonNormal @see #Theme_colorControlActivated @see #Theme_colorControlHighlight @see #Theme_colorControlNormal @see #Theme_colorPrimary @see #Theme_colorPrimaryDark @see #Theme_colorSwitchThumbNormal @see #Theme_controlBackground @see #Theme_dialogPreferredPadding @see #Theme_dialogTheme @see #Theme_dividerHorizontal @see #Theme_dividerVertical @see #Theme_dropDownListViewStyle @see #Theme_dropdownListPreferredItemHeight @see #Theme_editTextBackground @see #Theme_editTextColor @see #Theme_editTextStyle @see #Theme_homeAsUpIndicator @see #Theme_imageButtonStyle @see #Theme_listChoiceBackgroundIndicator @see #Theme_listDividerAlertDialog @see #Theme_listPopupWindowStyle @see #Theme_listPreferredItemHeight @see #Theme_listPreferredItemHeightLarge @see #Theme_listPreferredItemHeightSmall @see #Theme_listPreferredItemPaddingLeft @see #Theme_listPreferredItemPaddingRight @see #Theme_panelBackground @see #Theme_panelMenuListTheme @see #Theme_panelMenuListWidth @see #Theme_popupMenuStyle @see #Theme_popupWindowStyle @see #Theme_radioButtonStyle @see #Theme_ratingBarStyle @see #Theme_searchViewStyle @see #Theme_seekBarStyle @see #Theme_selectableItemBackground @see #Theme_selectableItemBackgroundBorderless @see #Theme_spinnerDropDownItemStyle @see #Theme_spinnerStyle @see #Theme_switchStyle @see #Theme_textAppearanceLargePopupMenu @see #Theme_textAppearanceListItem @see #Theme_textAppearanceListItemSmall @see #Theme_textAppearanceSearchResultSubtitle @see #Theme_textAppearanceSearchResultTitle @see #Theme_textAppearanceSmallPopupMenu @see #Theme_textColorAlertDialogListItem @see #Theme_textColorSearchUrl @see #Theme_toolbarNavigationButtonStyle @see #Theme_toolbarStyle @see #Theme_windowActionBar @see #Theme_windowActionBarOverlay @see #Theme_windowActionModeOverlay @see #Theme_windowFixedHeightMajor @see #Theme_windowFixedHeightMinor @see #Theme_windowFixedWidthMajor @see #Theme_windowFixedWidthMinor @see #Theme_windowMinWidthMajor @see #Theme_windowMinWidthMinor @see #Theme_windowNoTitle */ public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb }; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarDivider} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionBarDivider */ public static final int Theme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionBarItemBackground */ public static final int Theme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionBarPopupTheme */ public static final int Theme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarSize} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name com.example.user.work3:actionBarSize */ public static final int Theme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionBarSplitStyle */ public static final int Theme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionBarStyle */ public static final int Theme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionBarTabBarStyle */ public static final int Theme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionBarTabStyle */ public static final int Theme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionBarTabTextStyle */ public static final int Theme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionBarTheme */ public static final int Theme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionBarWidgetTheme */ public static final int Theme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionButtonStyle */ public static final int Theme_actionButtonStyle = 49; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionDropDownStyle */ public static final int Theme_actionDropDownStyle = 45; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionMenuTextAppearance */ public static final int Theme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.user.work3:actionMenuTextColor */ public static final int Theme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeBackground */ public static final int Theme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeCloseButtonStyle */ public static final int Theme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeCloseDrawable */ public static final int Theme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeCopyDrawable */ public static final int Theme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeCutDrawable */ public static final int Theme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeFindDrawable */ public static final int Theme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModePasteDrawable */ public static final int Theme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModePopupWindowStyle */ public static final int Theme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeSelectAllDrawable */ public static final int Theme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeShareDrawable */ public static final int Theme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeSplitBackground */ public static final int Theme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeStyle */ public static final int Theme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionModeWebSearchDrawable */ public static final int Theme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionOverflowButtonStyle */ public static final int Theme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:actionOverflowMenuStyle */ public static final int Theme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:activityChooserViewStyle */ public static final int Theme_activityChooserViewStyle = 57; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:alertDialogButtonGroupStyle */ public static final int Theme_alertDialogButtonGroupStyle = 92; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:alertDialogCenterButtons */ public static final int Theme_alertDialogCenterButtons = 93; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#alertDialogStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:alertDialogStyle */ public static final int Theme_alertDialogStyle = 91; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#alertDialogTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:alertDialogTheme */ public static final int Theme_alertDialogTheme = 94; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #Theme} array. @attr name android:windowAnimationStyle */ public static final int Theme_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 #Theme} array. @attr name android:windowIsFloating */ public static final int Theme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:autoCompleteTextViewStyle */ public static final int Theme_autoCompleteTextViewStyle = 99; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:borderlessButtonStyle */ public static final int Theme_borderlessButtonStyle = 54; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:buttonBarButtonStyle */ public static final int Theme_buttonBarButtonStyle = 51; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:buttonBarNegativeButtonStyle */ public static final int Theme_buttonBarNegativeButtonStyle = 97; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:buttonBarNeutralButtonStyle */ public static final int Theme_buttonBarNeutralButtonStyle = 98; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:buttonBarPositiveButtonStyle */ public static final int Theme_buttonBarPositiveButtonStyle = 96; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#buttonBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:buttonBarStyle */ public static final int Theme_buttonBarStyle = 50; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#buttonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:buttonStyle */ public static final int Theme_buttonStyle = 100; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:buttonStyleSmall */ public static final int Theme_buttonStyleSmall = 101; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#checkboxStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:checkboxStyle */ public static final int Theme_checkboxStyle = 102; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:checkedTextViewStyle */ public static final int Theme_checkedTextViewStyle = 103; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#colorAccent} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:colorAccent */ public static final int Theme_colorAccent = 84; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#colorButtonNormal} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:colorButtonNormal */ public static final int Theme_colorButtonNormal = 88; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#colorControlActivated} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:colorControlActivated */ public static final int Theme_colorControlActivated = 86; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#colorControlHighlight} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:colorControlHighlight */ public static final int Theme_colorControlHighlight = 87; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#colorControlNormal} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:colorControlNormal */ public static final int Theme_colorControlNormal = 85; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#colorPrimary} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:colorPrimary */ public static final int Theme_colorPrimary = 82; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:colorPrimaryDark */ public static final int Theme_colorPrimaryDark = 83; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:colorSwitchThumbNormal */ public static final int Theme_colorSwitchThumbNormal = 89; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#controlBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:controlBackground */ public static final int Theme_controlBackground = 90; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:dialogPreferredPadding */ public static final int Theme_dialogPreferredPadding = 43; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#dialogTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:dialogTheme */ public static final int Theme_dialogTheme = 42; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#dividerHorizontal} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:dividerHorizontal */ public static final int Theme_dividerHorizontal = 56; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#dividerVertical} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:dividerVertical */ public static final int Theme_dividerVertical = 55; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:dropDownListViewStyle */ public static final int Theme_dropDownListViewStyle = 74; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:dropdownListPreferredItemHeight */ public static final int Theme_dropdownListPreferredItemHeight = 46; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#editTextBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:editTextBackground */ public static final int Theme_editTextBackground = 63; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#editTextColor} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.user.work3:editTextColor */ public static final int Theme_editTextColor = 62; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#editTextStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:editTextStyle */ public static final int Theme_editTextStyle = 104; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:homeAsUpIndicator */ public static final int Theme_homeAsUpIndicator = 48; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#imageButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:imageButtonStyle */ public static final int Theme_imageButtonStyle = 64; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:listChoiceBackgroundIndicator */ public static final int Theme_listChoiceBackgroundIndicator = 81; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:listDividerAlertDialog */ public static final int Theme_listDividerAlertDialog = 44; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:listPopupWindowStyle */ public static final int Theme_listPopupWindowStyle = 75; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:listPreferredItemHeight */ public static final int Theme_listPreferredItemHeight = 69; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:listPreferredItemHeightLarge */ public static final int Theme_listPreferredItemHeightLarge = 71; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:listPreferredItemHeightSmall */ public static final int Theme_listPreferredItemHeightSmall = 70; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:listPreferredItemPaddingLeft */ public static final int Theme_listPreferredItemPaddingLeft = 72; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:listPreferredItemPaddingRight */ public static final int Theme_listPreferredItemPaddingRight = 73; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#panelBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:panelBackground */ public static final int Theme_panelBackground = 78; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:panelMenuListTheme */ public static final int Theme_panelMenuListTheme = 80; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:panelMenuListWidth */ public static final int Theme_panelMenuListWidth = 79; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#popupMenuStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:popupMenuStyle */ public static final int Theme_popupMenuStyle = 60; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#popupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:popupWindowStyle */ public static final int Theme_popupWindowStyle = 61; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#radioButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:radioButtonStyle */ public static final int Theme_radioButtonStyle = 105; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#ratingBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:ratingBarStyle */ public static final int Theme_ratingBarStyle = 106; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#searchViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:searchViewStyle */ public static final int Theme_searchViewStyle = 68; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#seekBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:seekBarStyle */ public static final int Theme_seekBarStyle = 107; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#selectableItemBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:selectableItemBackground */ public static final int Theme_selectableItemBackground = 52; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:selectableItemBackgroundBorderless */ public static final int Theme_selectableItemBackgroundBorderless = 53; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:spinnerDropDownItemStyle */ public static final int Theme_spinnerDropDownItemStyle = 47; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#spinnerStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:spinnerStyle */ public static final int Theme_spinnerStyle = 108; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#switchStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:switchStyle */ public static final int Theme_switchStyle = 109; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:textAppearanceLargePopupMenu */ public static final int Theme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:textAppearanceListItem */ public static final int Theme_textAppearanceListItem = 76; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:textAppearanceListItemSmall */ public static final int Theme_textAppearanceListItemSmall = 77; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:textAppearanceSearchResultSubtitle */ public static final int Theme_textAppearanceSearchResultSubtitle = 66; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:textAppearanceSearchResultTitle */ public static final int Theme_textAppearanceSearchResultTitle = 65; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:textAppearanceSmallPopupMenu */ public static final int Theme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.user.work3:textColorAlertDialogListItem */ public static final int Theme_textColorAlertDialogListItem = 95; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.example.user.work3:textColorSearchUrl */ public static final int Theme_textColorSearchUrl = 67; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:toolbarNavigationButtonStyle */ public static final int Theme_toolbarNavigationButtonStyle = 59; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#toolbarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:toolbarStyle */ public static final int Theme_toolbarStyle = 58; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#windowActionBar} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:windowActionBar */ public static final int Theme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:windowActionBarOverlay */ public static final int Theme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:windowActionModeOverlay */ public static final int Theme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:windowFixedHeightMajor */ public static final int Theme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:windowFixedHeightMinor */ public static final int Theme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:windowFixedWidthMajor */ public static final int Theme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:windowFixedWidthMinor */ public static final int Theme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:windowMinWidthMajor */ public static final int Theme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:windowMinWidthMinor */ public static final int Theme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#windowNoTitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:windowNoTitle */ public static final int Theme_windowNoTitle = 3; /** 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_collapseContentDescription com.example.user.work3:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.example.user.work3:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.example.user.work3:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.example.user.work3:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.example.user.work3:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.example.user.work3:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo com.example.user.work3:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.example.user.work3:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.example.user.work3:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.example.user.work3:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.example.user.work3:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.example.user.work3:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.example.user.work3:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.example.user.work3:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.example.user.work3:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.example.user.work3:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.example.user.work3:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.example.user.work3:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.example.user.work3:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.example.user.work3:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.example.user.work3:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.example.user.work3:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.example.user.work3:titleTextColor}</code></td><td></td></tr> </table> @see #Toolbar_android_gravity @see #Toolbar_android_minHeight @see #Toolbar_collapseContentDescription @see #Toolbar_collapseIcon @see #Toolbar_contentInsetEnd @see #Toolbar_contentInsetLeft @see #Toolbar_contentInsetRight @see #Toolbar_contentInsetStart @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_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, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a }; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Toolbar} array. @attr name android:gravity */ public static final int Toolbar_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #Toolbar} array. @attr name android:minHeight */ public static final int Toolbar_android_minHeight = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#collapseContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 19; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#collapseIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:collapseIcon */ public static final int Toolbar_collapseIcon = 18; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#contentInsetEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#contentInsetLeft} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#contentInsetRight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#contentInsetStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#logo} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#logoDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:logoDescription */ public static final int Toolbar_logoDescription = 22; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#maxButtonHeight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 17; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#navigationContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 21; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#navigationIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:navigationIcon */ public static final int Toolbar_navigationIcon = 20; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#popupTheme} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:popupTheme */ public static final int Toolbar_popupTheme = 9; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#subtitle} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#subtitleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 11; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#subtitleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 24; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#title} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#titleMarginBottom} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 16; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#titleMarginEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 14; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#titleMarginStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:titleMarginStart */ public static final int Toolbar_titleMarginStart = 13; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#titleMarginTop} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:titleMarginTop */ public static final int Toolbar_titleMarginTop = 15; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#titleMargins} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:titleMargins */ public static final int Toolbar_titleMargins = 12; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#titleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 10; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#titleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:titleTextColor */ public static final int Toolbar_titleTextColor = 23; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd com.example.user.work3:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.example.user.work3:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme com.example.user.work3: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, 0x7f01010b, 0x7f01010c, 0x7f01010d }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #View} array. @attr name android:focusable */ public static final int View_android_focusable = 1; /** <p>This symbol is the offset where the {@link android.R.attr#theme} attribute's value can be found in the {@link #View} array. @attr name android:theme */ public static final int View_android_theme = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#paddingEnd} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#paddingStart} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#theme} attribute's value can be found in the {@link #View} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.example.user.work3:theme */ public static final int View_theme = 4; /** Attributes that can be used with a ViewBackgroundHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.example.user.work3:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.example.user.work3:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f01010e, 0x7f01010f }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #ViewBackgroundHelper} array. @attr name android:background */ public static final int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#backgroundTint} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.example.user.work3:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.example.user.work3.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.example.user.work3: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; }; }
[ "847400153@qq.com" ]
847400153@qq.com
b72cdcbc0ee6210d0ee3851e6de1250cb06710fd
0c915611cbf11d902e759f89b4289a8a9ecc008b
/library/src/test/java/net/jimblackler/jsonschemafriend/Catalog.java
aef7890f6909561f899340cd735c003825beb463
[ "Apache-2.0" ]
permissive
jacquelynwax-nytimes/jsonschemafriend
4be36df33df309c02ceb5277dc0b6f9c6e68bf5c
d657e433c2217a280d6c1ed2f02ad030c8f76293
refs/heads/master
2023-05-07T13:41:04.080457
2021-06-01T17:10:29
2021-06-01T17:10:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,430
java
package net.jimblackler.jsonschemafriend; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import java.io.IOException; import java.net.URI; import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.Map; import org.junit.jupiter.api.DynamicTest; import org.junit.jupiter.api.TestFactory; public class Catalog { @TestFactory Collection<DynamicTest> all() throws IOException { Gson gson = new GsonBuilder().setPrettyPrinting().create(); Collection<DynamicTest> testsOut = new ArrayList<>(); Map<String, Object> api = DocumentUtils.loadJson( URI.create("https://www.schemastore.org/api/json/catalog.json").toURL().openStream()); List<Object> schemas = (List<Object>) api.get("schemas"); for (int idx = 0; idx != schemas.size(); idx++) { Map<String, Object> schema = (Map<String, Object>) schemas.get(idx); testsOut.add(DynamicTest.dynamicTest((String) schema.get("name"), () -> { URI uri = URI.create((String) schema.get("url")); System.out.println(uri); SchemaStore schemaStore = new SchemaStore(); Schema schema1 = schemaStore.loadSchema(uri); System.out.println(gson.toJson(schema1.getSchemaObject())); Object example = schema1.getExamples(); if (example != null) { System.out.println(gson.toJson(example)); } })); } return testsOut; } }
[ "jimblackler@google.com" ]
jimblackler@google.com
589ebcd9468b735af7981d31dcfc9a3afe58faed
1012a878b71004253a1a7c21e762b80264767767
/src/main/java/co/edu/escuelaing/sparkdockerdemolive/SparkWebServer.java
c267f56d477e409452987c1cb4110d1b5d7f899b
[]
no_license
Ricar8o/SparkDockerDemo
b04bb797c551595cda6be4bf2d319d022e20506b
1832355deffc698413f6a0f86f7b09c2e4a8abd0
refs/heads/master
2022-12-19T22:22:10.134077
2020-09-29T15:21:28
2020-09-29T15:21:28
299,656,912
0
0
null
null
null
null
UTF-8
Java
false
false
513
java
package co.edu.escuelaing.sparkdockerdemolive; import static spark.Spark.*; /** * A simple web server using Sparkweb * @author dnielben */ public class SparkWebServer { public static void main(String... args){ port(getPort()); get("hello", (req,res) -> "Hello Docker! :)"); } private static int getPort() { if (System.getenv("PORT") != null) { return Integer.parseInt(System.getenv("PORT")); } return 4567; } }
[ "andres.martinez-d@mail.escuelaing.edu.co" ]
andres.martinez-d@mail.escuelaing.edu.co
f5dad7081b62b7ef16f034f2b6b0e7658b64f730
7dc048252bef2e980eb17aaba2eb2e51b6c306e6
/app/src/main/java/com/example/rentalapp/Admin.java
359afe1ad3a42c44504616f76c9339172882f509
[]
no_license
BowieGian/Rental-Application-Old
3dc8dddffd72b5811e6d0fd5b3b7d14540d843ce
df3ff2d0127816de902653db8512f71f6f4dcf49
refs/heads/master
2023-01-16T01:08:24.229238
2020-11-30T06:49:59
2020-11-30T06:49:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
308
java
package com.example.rentalapp; public class Admin { private String adminName; private void removeUser(int ID) { // remove user by ID } private void addUser(int ID){ //add user by ID } private void modifyRoom(House thisHouse){ // modify thisHouse } }
[ "unconfigured@null.spigotmc.org" ]
unconfigured@null.spigotmc.org
718db3cb2eec5827a1dd216770b43973508979a4
da5e1aacee3f1cb21e9ed48a0b1afc93587dcbe1
/app/src/main/java/com/example/meetingRoom/MeetingDetails.java
4b1c38c90fd81ff7e728eeb66c406c52e82eca5f
[]
no_license
Ekram007/Meeting-Room
4c167ba6e57812917b9729c2d1d4da2af8bd1f69
cf809350bbea0bab4cf6b93a20f8a2695b22abef
refs/heads/main
2023-08-24T20:53:58.113507
2021-10-21T20:57:14
2021-10-21T20:57:14
341,878,731
1
0
null
2021-02-24T11:57:00
2021-02-24T11:31:29
Java
UTF-8
Java
false
false
2,800
java
package com.example.meetingRoom; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.text.TextUtils; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.EditText; import com.google.firebase.auth.FirebaseAuth; import com.google.firebase.auth.FirebaseUser; import com.google.firebase.database.DatabaseReference; import com.google.firebase.database.FirebaseDatabase; public class MeetingDetails extends AppCompatActivity { private EditText subject, agenda, date, time, place; private Button meeting; private FirebaseUser currentUser; private FirebaseAuth mAuth; private DatabaseReference RootRef; int f= 0; String meetingName=""; String TAG = "hek"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_meeting_details); Bundle extra = getIntent().getExtras(); meetingName = extra.getString("meetingName"); Log.d(TAG, "The "+meetingName); if(TextUtils.isEmpty(meetingName)) { int f = 1; } meeting = findViewById(R.id.update_meeting_button); subject = findViewById(R.id.subject); agenda = findViewById(R.id.agenda); date = findViewById(R.id.date); time = findViewById(R.id.time); place = findViewById(R.id.place); mAuth = FirebaseAuth.getInstance(); currentUser = mAuth.getCurrentUser(); RootRef = FirebaseDatabase.getInstance().getReference(); meeting.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { RootRef.child("Meetings").child(meetingName).child("Subject").setValue(subject.getText().toString()); RootRef.child("Meetings").child(meetingName).child("Agenda").setValue(agenda.getText().toString()); RootRef.child("Meetings").child(meetingName).child("Date").setValue(date.getText().toString()); RootRef.child("Meetings").child(meetingName).child("Time").setValue(time.getText().toString()); RootRef.child("Meetings").child(meetingName).child("Place").setValue(place.getText().toString()); SendUserToMainActivity(); //RootRef.child("Users").child(meetingName).child("Subject").setValue(subject); } }); } private void SendUserToMainActivity(){ Intent mainIntent = new Intent( MeetingDetails.this, MainActivity.class); mainIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); startActivity(mainIntent); finish(); } }
[ "ei.ekramul.islam@gmail.com" ]
ei.ekramul.islam@gmail.com
4b7a3e698100349a03615600c1b328590c85f840
33cc7af5f26a6be64cac4c6164843cce76673027
/.metadata/.plugins/org.eclipse.wst.server.core/tmp1/work/Catalina/localhost/Anil/org/apache/jsp/publishers_jsp.java
a8929c91403270a18707007c67e44805a897cfe5
[]
no_license
akraju03/BookStore
4d4edb09487d1e11a405401fd1fdedf6a5251cc5
03c5c2aade6a156cb250d8f58a8cacaca26d9e28
refs/heads/master
2021-08-19T19:48:52.740102
2017-11-27T08:54:36
2017-11-27T08:54:36
112,171,119
0
0
null
null
null
null
UTF-8
Java
false
false
10,952
java
/* * Generated by the Jasper component of Apache Tomcat * Version: Apache Tomcat/9.0.1 * Generated at: 2017-11-26 11:00:08 UTC * Note: The last modified time of this file was set to * the last modified time of the source file after * generation to assist with modification tracking. */ package org.apache.jsp; import javax.servlet.*; import javax.servlet.http.*; import javax.servlet.jsp.*; import domain.Publisher; import java.util.ArrayList; import domain.Ganre; import db.Repository; import domain.User; import db.Repository; public final class publishers_jsp extends org.apache.jasper.runtime.HttpJspBase implements org.apache.jasper.runtime.JspSourceDependent, org.apache.jasper.runtime.JspSourceImports { private static final javax.servlet.jsp.JspFactory _jspxFactory = javax.servlet.jsp.JspFactory.getDefaultFactory(); private static java.util.Map<java.lang.String,java.lang.Long> _jspx_dependants; static { _jspx_dependants = new java.util.HashMap<java.lang.String,java.lang.Long>(2); _jspx_dependants.put("/WEB-INF/foot.jspf", Long.valueOf(1511686208000L)); _jspx_dependants.put("/WEB-INF/head.jspf", Long.valueOf(1511686208000L)); } private static final java.util.Set<java.lang.String> _jspx_imports_packages; private static final java.util.Set<java.lang.String> _jspx_imports_classes; static { _jspx_imports_packages = new java.util.HashSet<>(); _jspx_imports_packages.add("javax.servlet"); _jspx_imports_packages.add("javax.servlet.http"); _jspx_imports_packages.add("javax.servlet.jsp"); _jspx_imports_classes = new java.util.HashSet<>(); _jspx_imports_classes.add("domain.Ganre"); _jspx_imports_classes.add("domain.User"); _jspx_imports_classes.add("db.Repository"); _jspx_imports_classes.add("domain.Publisher"); _jspx_imports_classes.add("java.util.ArrayList"); } private volatile javax.el.ExpressionFactory _el_expressionfactory; private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager; public java.util.Map<java.lang.String,java.lang.Long> getDependants() { return _jspx_dependants; } public java.util.Set<java.lang.String> getPackageImports() { return _jspx_imports_packages; } public java.util.Set<java.lang.String> getClassImports() { return _jspx_imports_classes; } public javax.el.ExpressionFactory _jsp_getExpressionFactory() { if (_el_expressionfactory == null) { synchronized (this) { if (_el_expressionfactory == null) { _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); } } } return _el_expressionfactory; } public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() { if (_jsp_instancemanager == null) { synchronized (this) { if (_jsp_instancemanager == null) { _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); } } } return _jsp_instancemanager; } public void _jspInit() { } public void _jspDestroy() { } public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) throws java.io.IOException, javax.servlet.ServletException { final java.lang.String _jspx_method = request.getMethod(); if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method) && !javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) { response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET POST or HEAD"); return; } final javax.servlet.jsp.PageContext pageContext; javax.servlet.http.HttpSession session = null; final javax.servlet.ServletContext application; final javax.servlet.ServletConfig config; javax.servlet.jsp.JspWriter out = null; final java.lang.Object page = this; javax.servlet.jsp.JspWriter _jspx_out = null; javax.servlet.jsp.PageContext _jspx_page_context = null; try { response.setContentType("text/html;charset=UTF-8"); pageContext = _jspxFactory.getPageContext(this, request, response, null, true, 8192, true); _jspx_page_context = pageContext; application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); _jspx_out = out; out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("<!DOCTYPE html>\n"); out.write("<html>\n"); out.write(" <head>\n"); out.write(" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n"); out.write(" <title>Publishers</title>\n"); out.write(" </head>\n"); out.write(" <body>\n"); out.write(" "); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("<meta name=\"keywords\" content=\"\" />\n"); out.write("<meta name=\"description\" content=\"\" />\n"); out.write("<link href=\"style.css\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />\n"); out.write("</head>\n"); out.write("<body>\n"); out.write(" "); User u1 = (User) session.getAttribute("user"); out.write("\n"); out.write(" <div id=\"header-wrapper\">\n"); out.write(" <div id=\"header\">\n"); out.write(" <div id=\"menu\">\n"); out.write(" <ul>\n"); out.write(" <li class=\"current_page_item\"><a href=\"index.jsp\">Home</a></li>\n"); out.write(" <li><a href=\"books.jsp\">Books</a></li>\n"); out.write(" <li><a href=\"authors.jsp\">Authors</a></li>\n"); out.write(" <li><a href=\"genres.jsp\">Ganres</a></li>\n"); out.write(" <li><a href=\"publishers.jsp\">Publishers</a></li>\n"); out.write(" <li><a href=\"index.jsp\">Contact</a></li>\n"); out.write(" </ul>\n"); out.write(" </div>\n"); out.write(" <!-- end #menu -->\n"); out.write(" "); if (u1 == null) { out.write("\n"); out.write(" <div id=\"search\"> \n"); out.write(" <b><h3> <a href = \"login.jsp\">Login </a>\n"); out.write(" <label> | </label>\n"); out.write(" <a href=\"register.jsp\"> Register</a></h3></b> \n"); out.write("\n"); out.write(" "); } else { out.write("\n"); out.write(" <h3><label>"); out.print(u1.getUsername()+", "); out.write("</label>\n"); out.write(" <a href=\"LogoutServlet\">logout</a></h3>\n"); out.write(" "); } out.write("\n"); out.write(" </div>\n"); out.write(" <!-- end #search -->\n"); out.write(" </div>\n"); out.write(" <!-- end #header -->\n"); out.write(" </div>\n"); out.write(" <!-- end #header-wrapper -->\n"); out.write(" <div id=\"page\">\n"); out.write(" <div id=\"logo\">\n"); out.write(" <h1><a href=\"index.jsp\">Book Store</a></h1>\n"); out.write(" </div>\n"); out.write(" <hr/>\n"); out.write(" \n"); out.write("\n"); out.write(" "); Repository r = new Repository(); ArrayList<Publisher> publishers = r.getPublishers(); User u = (User)session.getAttribute("user"); out.write("\n"); out.write(" "); if(r.isAdmin(session)){ out.write("\n"); out.write(" <div align=\"right\">\n"); out.write(" <form action=\"AddNewPublisherServlet\" method=\"post\">\n"); out.write(" <label>Add new Publisher:</label>\n"); out.write(" <input type=\"text\" name=\"title\" id=\"title\" placeholder=\"title\" style=\"width: 7em\"/>\n"); out.write(" <input type=\"text\" name=\"address\" id=\"address\" placeholder=\"address\" style=\"width: 7em\"/>\n"); out.write(" <input type=\"submit\" value=\"Add\">\n"); out.write(" </form>\n"); out.write(" </div>\n"); out.write(" "); } out.write("\n"); out.write(" <h3><table id=\"page\">\n"); out.write(" <tr>\n"); out.write(" <td><b>ID</b></td>\n"); out.write(" <td><b>Title</b></td>\n"); out.write(" <td><b>Address</b></td>\n"); out.write(" </tr>\n"); out.write(" "); for (Publisher p : publishers) { out.write("\n"); out.write(" <tr>\n"); out.write(" <td>"); out.print(p.getId()); out.write(" </td> \n"); out.write(" <td><a href=\"publisher.jsp?publisherId="); out.print(p.getId()); out.write('"'); out.write('>'); out.print(p.getTitle()); out.write("</td>\n"); out.write(" <td>"); out.print(p.getAddress()); out.write("</td>\n"); out.write(" </tr>\n"); out.write(" "); } out.write("\n"); out.write(" </table></h3>\n"); out.write(" "); out.write("\n"); out.write("\n"); out.write("<div style=\"clear: both;\">&nbsp;</div>\n"); out.write("<div id=\"footer\">\n"); out.write(" <p>Copyright (c) 2013 BookStore.com. All rights reserved.</p>\n"); out.write("</div>\n"); out.write("<!-- end #footer -->\n"); out.write("</div>\n"); out.write("<!-- end #page -->\n"); out.write("\n"); out.write(" </body>\n"); out.write("</html>\n"); } catch (java.lang.Throwable t) { if (!(t instanceof javax.servlet.jsp.SkipPageException)){ out = _jspx_out; if (out != null && out.getBufferSize() != 0) try { if (response.isCommitted()) { out.flush(); } else { out.clearBuffer(); } } catch (java.io.IOException e) {} if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); else throw new ServletException(t); } } finally { _jspxFactory.releasePageContext(_jspx_page_context); } } }
[ "anil.n1@olacabs.com" ]
anil.n1@olacabs.com
e667b455a0284a23cb925a5b2231e6175d331d0c
2e1fd6624412ab4e0e005825df43c2925df22f2c
/src/com/imgeorgedev/scrabblecheat/WordChecker_activity.java
3ba8e6f1fc61760c2746e4959b523e4615ee30f1
[]
no_license
ikp4success/Scrabble-Cheat
2e899c087140f96f96f19c221b4b65fabc9b187f
292d191dcdec445383f2590b85d4f19ffb482c09
refs/heads/master
2020-06-02T21:42:02.757291
2014-11-12T15:43:49
2014-11-12T15:43:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,988
java
package com.imgeorgedev.scrabblecheat; import java.io.IOException; import java.util.concurrent.atomic.AtomicBoolean; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import android.app.AlertDialog; import android.app.ProgressDialog; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.net.NetworkInfo.State; import android.os.AsyncTask; import android.os.Bundle; import android.support.v4.app.ActionBarDrawerToggle; import android.support.v4.app.Fragment; import android.text.method.LinkMovementMethod; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import com.sothree.slidinguppanel.SlidingUpPanelLayout; import com.sothree.slidinguppanel.SlidingUpPanelLayout.PanelSlideListener; public class WordChecker_activity extends Fragment { Button bt; EditText et; TextView emptyError; Intent i; TextView display_WC; TextView slider_header; String value_word = ""; Bundle extras; String wordValidity = ""; String wordValidity2 = ""; String Meaning = ""; String points = ""; String final_valid = ""; String final_meaning = ""; String final_points = ""; Context context=this.getActivity(); SlidingUpPanelLayout layout; Boolean execute = false; private AtomicBoolean mPanelCollapsed = new AtomicBoolean(true); @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { setRetainInstance(true); final View rootView = inflater.inflate(R.layout.wordchecker_layout, container, false); setRetainInstance(true); // setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); // setContentView(R.layout.search_layout); display_WC = (TextView) rootView.findViewById(R.id.displaytv5); bt = (Button) rootView.findViewById(R.id.button3); et = (EditText) rootView.findViewById(R.id.editText3); slider_header = (TextView) rootView.findViewById(R.id.tvP5); layout = (SlidingUpPanelLayout) rootView .findViewById(R.id.sliding_layout); layout.setShadowDrawable(getResources().getDrawable( R.drawable.above_shadow)); emptyError = (TextView) rootView.findViewById(R.id.errorTV2); // tf.setText("Use up to two ? as wildcards"); // bt.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { // Log.v("jkj678", letters); // if(et.equals(spc)){ // et.getText().toString().trim(); if (et.getText().toString().trim().equals("") || et.getText().toString() == (null)) { emptyError.setText("Textbox Empty"); } else { layout.expandPane(); execute = true; onStart(); } // } // tf.setText(letters); } }); layout.setPanelSlideListener(new PanelSlideListener() { @Override public void onPanelSlide(View panel, float slideOffset) { if (slideOffset < 0.2) { if (getActivity().getActionBar().isShowing()) { getActivity().getActionBar().hide(); } } else { if (!getActivity().getActionBar().isShowing()) { getActivity().getActionBar().show(); } } } @Override public void onPanelExpanded(View panel) { if (execute == (true)) { slider_header.setText("Word Checker"); slider_header.setMovementMethod(LinkMovementMethod .getInstance()); value_word = et.getText().toString().trim(); new progression().execute(); } else { // execute = false; } execute = false; } @Override public void onPanelCollapsed(View panel) { try{ setRetainInstance(getRetainInstance()); getActivity().getActionBar().show(); //rootView.setMovementMethod= LinkMovementMethod.getInstance(); execute = false; }catch(Exception ex){ Log.e("Child Fragment Error-SlidePanel Layout", ex.toString()); } } }); return rootView; } public class progression extends AsyncTask<Void, Void, Void> { ProgressDialog dialog = new ProgressDialog( WordChecker_activity.this.getActivity()); @Override protected void onPreExecute() { this.dialog.setCancelable(true); this.dialog .setMessage("Checking If Word Is Valid, Please Wait......."); this.dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER); this.dialog.setProgress(0); this.dialog.setMax(100); this.dialog.show(); } @Override protected Void doInBackground(Void... params) { try { /* * This is run on a background thread, so we can sleep here or * do whatever we want without blocking UI thread. A more * advanced use would download chunks of fixed size and call * publishProgress(); */ // } try { Document doc = Jsoup .connect( "http://www.scrabblefinder.com/word/" + value_word + "/") // .referrer("http://www.scrabblefinder.com/solver/") .cookie("auth", "token").timeout(69999).get(); wordValidity = doc.select( "p:contains(a scrabble word? Yes!)").text(); wordValidity2 = doc.select( "p:contains(still good as a Scrabble word)").text(); // Log.v("WVDIty",wordValidity); Meaning = doc .select("div.zipcodes:contains(a scrabble word? Yes!) ul li:eq(0)") .text(); // Log.v("Meani",Meaning); points = doc.select( "p.letters:contains(points in Scrabble)").text(); // Log.v("pointe",points); } catch (IOException e) { // TODO Auto-generated catch block // e.printStackTrace(); display_WC.setText("Sorry Server is Down, try again later"); } } catch (Exception e) { Log.e("tag", e.getMessage()); /* * The task failed */ } /* * The task succeeded */ return null; } protected void onProgressUpdate(Void... params) { super.onProgressUpdate(params); } @Override protected void onPostExecute(final Void unused) { super.onPostExecute(unused); // word_tv.setText(word); if (wordValidity.contains("Yes!") || wordValidity2.contains("still good as a Scrabble word")) { final_valid = "\n" + value_word + " is a Valid Word"; final_meaning = "\n" + "Word Meaning: " + Meaning + "\n"; final_points = "\n" + points + "\n"; display_WC.setText("\n" + "\n" + final_valid + "\n" + final_meaning + "\n" + final_points + "\n"); } else { final_valid = value_word + " is NOT a Valid Word"; display_WC.setText("\n" + "\n" + final_valid + "\n"); } if (this.dialog.isShowing()) { this.dialog.dismiss(); } /* * Update here your view objects with content from download. It is * save to dismiss dialogs, update views, etc., since we are working * on UI thread. */ } } }
[ "ikp4success@gmail.com" ]
ikp4success@gmail.com
d9d829c786861952aeea8a5cd6b200ab1bc4d906
45a73474041c2ca9994a2d7f2aa3705981770815
/network/src/java/com/charles/def/enums/ServerType.java
5988a458f43059fc300322d6549ecb02d2806530
[]
no_license
moonMagic/game
1ba4aafc30a41da5be7b6dfccf97f6881fd05645
849f452d598651b8e52eb852bf430bb58be4f15f
refs/heads/master
2020-05-03T19:12:33.591417
2019-04-01T02:36:53
2019-04-01T02:36:53
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,353
java
package com.charles.def.enums; import com.charles.def.GenericDefinition; /** * 定义服务类型枚举, 现在只先定义常见类型 * * @author CharlesLee */ public enum ServerType implements GenericDefinition<Integer, String> { /** * 网关服务器类型 */ GATEWAY_SERVICE(0, "网关服务器所代表的类型"); ServerType(Integer type, String messageTypeDescribe) { this.type = type; this.messageTypeDescribe = messageTypeDescribe; } /** * 消息体类型描述信息 */ private String messageTypeDescribe; /** * 消息体类型 */ private Integer type; /** * 通过客户端传入的数据消息类型进行枚举类型的查找,如果没有查找到指定的类型,那么则返回null * * @author charlesLee */ public static GenericDefinition get(int type) { for (GenericDefinition<Integer, String> value : ServerType.values()) { if (type == value.getKey()) { return value; } } return null; } @Override public Integer getKey() { return type; } @Override public String getValue() { return messageTypeDescribe; } @Override public GenericDefinition<Integer, String> get() { return this; } }
[ "1143810829@qq.com" ]
1143810829@qq.com
3b682db930da303c06fc5b38cbd53d5425324aea
86b945f3330812f310d4d3682d929f4796f2d0d5
/src/main/java/com/baizhi/dao/AdminMapper.java
81706753339b082091793a112c7f8e265708482d
[ "MIT" ]
permissive
zxmasd/mbg
eb7657ffc94577e82ff9d295edb5a130ca16f0b6
c1d5b4fb917c24b687740c3b52a8796818ace919
refs/heads/master
2023-05-01T01:39:44.574974
2023-04-15T12:56:16
2023-04-15T12:56:16
175,378,563
0
0
MIT
2022-06-21T00:59:03
2019-03-13T08:32:20
Java
UTF-8
Java
false
false
797
java
package com.baizhi.dao; import com.baizhi.entity.Admin; import com.baizhi.entity.AdminExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface AdminMapper { int countByExample(AdminExample example); int deleteByExample(AdminExample example); int deleteByPrimaryKey(String id); int insert(Admin record); int insertSelective(Admin record); List<Admin> selectByExample(AdminExample example); Admin selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") Admin record, @Param("example") AdminExample example); int updateByExample(@Param("record") Admin record, @Param("example") AdminExample example); int updateByPrimaryKeySelective(Admin record); int updateByPrimaryKey(Admin record); }
[ "15364859879@163.com" ]
15364859879@163.com
546bb0a286c751adcbb8d8839e2a1d57ca33805b
f6beea8ab88dad733809e354ef9a39291e9b7874
/com/planet_ink/coffee_mud/MOBS/Tiger.java
2e9082320936a679a442bc5832e8065df1111350
[ "Apache-2.0" ]
permissive
bonnedav/CoffeeMud
c290f4d5a96f760af91f44502495a3dce3eea415
f629f3e2e10955e47db47e66d65ae2883e6f9072
refs/heads/master
2020-04-01T12:13:11.943769
2018-10-11T02:50:45
2018-10-11T02:50:45
153,196,768
0
0
Apache-2.0
2018-10-15T23:58:53
2018-10-15T23:58:53
null
UTF-8
Java
false
false
2,694
java
package com.planet_ink.coffee_mud.MOBS; import com.planet_ink.coffee_mud.core.interfaces.*; import com.planet_ink.coffee_mud.core.*; import com.planet_ink.coffee_mud.core.collections.*; import com.planet_ink.coffee_mud.Abilities.interfaces.*; import com.planet_ink.coffee_mud.Areas.interfaces.*; import com.planet_ink.coffee_mud.Behaviors.interfaces.*; import com.planet_ink.coffee_mud.CharClasses.interfaces.*; import com.planet_ink.coffee_mud.Commands.interfaces.*; import com.planet_ink.coffee_mud.Common.interfaces.*; import com.planet_ink.coffee_mud.Exits.interfaces.*; import com.planet_ink.coffee_mud.Items.interfaces.*; import com.planet_ink.coffee_mud.Libraries.interfaces.*; import com.planet_ink.coffee_mud.Locales.interfaces.*; import com.planet_ink.coffee_mud.MOBS.interfaces.*; import com.planet_ink.coffee_mud.Races.interfaces.*; import java.util.*; /* Copyright 2001-2018 Bo Zimmerman 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. */ public class Tiger extends StdMOB { @Override public String ID() { return "Tiger"; } public Tiger() { super(); final Random randomizer = new Random(System.currentTimeMillis()); username="a tiger"; setDescription("Tigers have reddish-orange fur and dark vertical stripes."); setDisplayText("A tiger prowls here."); CMLib.factions().setAlignment(this,Faction.Align.NEUTRAL); setMoney(0); basePhyStats.setWeight(300 + Math.abs(randomizer.nextInt() % 55)); baseCharStats().setStat(CharStats.STAT_INTELLIGENCE,1); baseCharStats().setStat(CharStats.STAT_STRENGTH,13); baseCharStats().setStat(CharStats.STAT_DEXTERITY,17); baseCharStats().setMyRace(CMClass.getRace("GreatCat")); baseCharStats().getMyRace().startRacing(this,false); basePhyStats().setDamage(10); basePhyStats().setSpeed(2.0); basePhyStats().setAbility(0); basePhyStats().setLevel(5); basePhyStats().setArmor(70); baseState.setHitPoints(CMLib.dice().roll(basePhyStats().level(),20,basePhyStats().level())); addBehavior(CMClass.getBehavior("Aggressive")); recoverMaxState(); resetToMaxState(); recoverPhyStats(); recoverCharStats(); } }
[ "bo@zimmers.net" ]
bo@zimmers.net
8af2d17b710045e0f9e35bd8d344a060afb56ddf
421f0a75a6b62c5af62f89595be61f406328113b
/generated_tests/no_seeding/75_openhre-com.browsersoft.openhre.hl7.impl.config.HL7SegmentImpl-1.0-9/com/browsersoft/openhre/hl7/impl/config/HL7SegmentImpl_ESTest.java
1087a02c7d4a56e3de945ebbd054d062f1663b3a
[]
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
673
java
/* * This file was automatically generated by EvoSuite * Mon Oct 28 23:05:12 GMT 2019 */ package com.browsersoft.openhre.hl7.impl.config; import org.junit.Test; import static org.junit.Assert.*; import org.evosuite.runtime.EvoRunner; import org.evosuite.runtime.EvoRunnerParameters; import org.junit.runner.RunWith; @RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, separateClassLoader = true, useJEE = true) public class HL7SegmentImpl_ESTest extends HL7SegmentImpl_ESTest_scaffolding { @Test public void notGeneratedAnyTest() { // EvoSuite did not generate any tests } }
[ "pderakhshanfar@bsr01.win.tue.nl" ]
pderakhshanfar@bsr01.win.tue.nl
c0e7f3bb64457f6bf1790925c04e5472151c14a7
1d8518c98463214a39cf644d06b8144c2733c4b8
/BeanGame.java
a85270b5bfc50d5a4dd085e63fded75af1d14f30
[]
no_license
andyyoyo/U10416031_HW5_interface
313dfe923aae15af92522117da969e6cb8441633
45143af216826c80357789c08da7296167c8bfe3
refs/heads/master
2021-01-10T13:46:04.507000
2016-03-24T12:58:18
2016-03-24T12:58:18
54,321,829
0
0
null
null
null
null
UTF-8
Java
false
false
2,393
java
//U10416031 import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.layout.Pane; import javafx.stage.Stage; import javafx.scene.shape.Line; import javafx.scene.shape.Circle; public class BeanGame extends Application{ public void start(Stage primaryStage) { //create a pane Pane p = new Pane(); //add the line which is outside the pane Line upl1 = new Line(175,40,175,50); Line upr1 = new Line(225,40,225,50); Line ll = new Line(175,50,105,210); Line rl = new Line(225,50,305,210); Line dl = new Line(105,210,105,240); Line dr = new Line(305,210,305,240); Line d = new Line(105,240,305,240); //add all to the getChildren p.getChildren().add(upl1); p.getChildren().add(upr1); p.getChildren().add(ll); p.getChildren().add(rl); p.getChildren().add(dl); p.getChildren().add(dr); p.getChildren().add(d); //add the buttom line Line[] line = new Line[8]; for(int i =1;i<=7;i++){ line [i] = new Line(105+25*i,210,105+25*i,240); p.getChildren().add(line[i]); } //add the balls in the pane Circle cir = new Circle(200,50,2); cir.setStroke(Color.GREEN); p.getChildren().add(cir); Circle[] cir1 = new Circle[2]; for(int i=0;i<2;i++){ cir1[i] = new Circle(188.5+25*i,75,2); cir1[i].setStroke(Color.GREEN); p.getChildren().add(cir1[i]); } Circle[] cir2 = new Circle[3]; for(int i=0;i<3;i++){ cir2[i] = new Circle(177+25*i,100,2); cir2[i].setStroke(Color.GREEN); p.getChildren().add(cir2[i]); } Circle[] cir3 = new Circle[4]; for(int i=0;i<4;i++){ cir3[i] = new Circle(165.5+25*i,125,2); cir3[i].setStroke(Color.GREEN); p.getChildren().add(cir3[i]); } Circle[] cir4= new Circle[5]; for(int i=0;i<5;i++){ cir4[i] = new Circle(154+25*i,150,2); cir4[i].setStroke(Color.GREEN); p.getChildren().add(cir4[i]); } Circle[] cir5 = new Circle[6]; for(int i=0;i<6;i++){ cir5[i] = new Circle(142.5+25*i,175,2); cir5[i].setStroke(Color.GREEN); p.getChildren().add(cir5[i]); } Circle[] cir6 = new Circle[7]; for(int i=0;i<7;i++){ cir6[i] = new Circle(131+25*i,200,2); cir6[i].setStroke(Color.GREEN); p.getChildren().add(cir6[i]); } Scene scene = new Scene(p); primaryStage.setTitle("Bean game"); primaryStage.setScene(scene); primaryStage.show(); } public static void main (String[] args){ launch(args); } }
[ "andyyoyo76543@gmail.com" ]
andyyoyo76543@gmail.com
9fd4a1a73fecf28b2fafb54f30476fee90430df8
fbf340b502bdb7f3a9d68d6cbbc82a18ca151c48
/src/java/com/onlineshop/model/User.java
9255605d5e45677af44a4518a92edb8865812343
[]
no_license
JodiNoordiansyah/OnlineShop
daf118c0c8dfae1383db43a36a5324bf4ff8c6ae
64ce18f40e1693646072713bdc257436a9409e6f
refs/heads/master
2021-08-30T19:20:08.486974
2017-12-19T04:41:07
2017-12-19T04:41:07
114,584,395
0
0
null
null
null
null
UTF-8
Java
false
false
2,731
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 com.onlineshop.model; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; /** * * @author Acer */ @Entity @Table(name="APPUSER") public class User implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; private String namaLengkap; private String email; private String username; private String password; public Long getId() { return id; } public void setId(Long id) { this.id = id; } @Override public int hashCode() { int hash = 0; hash += (id != null ? id.hashCode() : 0); return hash; } @Override public boolean equals(Object object) { // TODO: Warning - this method won't work in the case the id fields are not set if (!(object instanceof User)) { return false; } User other = (User) object; if ((this.id == null && other.id != null) || (this.id != null && !this.id.equals(other.id))) { return false; } return true; } @Override public String toString() { return "com.onlineshop.model.User[ id=" + id + " ]"; } /** * @return the namaLengkap */ public String getNamaLengkap() { return namaLengkap; } /** * @param namaLengkap the namaLengkap to set */ public void setNamaLengkap(String namaLengkap) { this.namaLengkap = namaLengkap; } /** * @return the email */ public String getEmail() { return email; } /** * @param email the email to set */ public void setEmail(String email) { this.email = email; } /** * @return the username */ public String getUsername() { return username; } /** * @param username the username to set */ public void setUsername(String username) { this.username = username; } /** * @return the password */ public String getPassword() { return password; } /** * @param password the password to set */ public void setPassword(String password) { this.password = password; } }
[ "jodinoordiansyah@gmail.com" ]
jodinoordiansyah@gmail.com
35d90c1a2a7460c93e608f7dbfb5feb702600b6a
d97796343e569ea2982d83a70c9a243e617ff4da
/Spring-Boot-master/src/main/java/com/zx/Pojo/Model.java
015398050fbdf8f46d226c8773f1be24690ce670
[]
no_license
EZreal-zhangxing/EarthQuakeProject
fb3d038fa28d4a32ef09d1348d1767819c6d1194
f66a4ec98bfb3ec17c551b6a4616a4f50b0a00ca
refs/heads/master
2020-03-23T14:38:41.853502
2019-04-14T11:09:16
2019-04-14T11:09:16
141,689,942
3
0
null
null
null
null
UTF-8
Java
false
false
785
java
package com.zx.Pojo; public class Model { private Integer id; private String modelName; private String parentModel; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getModelName() { return modelName; } public void setModelName(String modelName) { this.modelName = modelName; } public String getParentModel() { return parentModel; } public void setParentModel(String parentModel) { this.parentModel = parentModel; } public Model(Integer id, String modelName, String parentModel) { this.id = id; this.modelName = modelName; this.parentModel = parentModel; } public Model() { } }
[ "zhangh@civaonline.cn" ]
zhangh@civaonline.cn
01e2842a955a90ace89b816d688683ec80fdd97e
9c161a0ac493238cf0b1df02093025446ef83335
/projet1/app/src/main/java/model/Status.java
50350fef3bf18d95db2ad78d9c85c80134adc090
[]
no_license
adentsLyon/projetsAndroidStudio
bc9a69d98845fbf31888343df71dfcf95b309d70
f8771d059606c1cf8284546138d3fc00e6f1c0b7
refs/heads/master
2021-01-15T11:46:32.865023
2015-07-31T07:08:52
2015-07-31T07:08:52
37,053,852
0
0
null
null
null
null
UTF-8
Java
false
false
788
java
package model; /** * Created by amachado on 24/06/2015. */ public class Status { private int code; private String name; private String tableName; public Status() { } public Status(int statusCode, String statusName, String tableName) { this.code = statusCode; this.name = statusName; this.tableName = tableName; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getTableName() { return tableName; } public void setTableName(String tableName) { this.tableName = tableName; } }
[ "amachado@adents.com" ]
amachado@adents.com
57ef954a6dcb94fa14a0ed91555196e55f821b93
7898b6967273fb569d61256b7acc8da372c1326e
/LeetCode/ArrayPartitionI.java
b58aefbdef36024568dbd2a4f0330f33343d6b06
[]
no_license
DavinderSinghKharoud/AlgorithmsAndDataStructures
83d4585ebbdc9bc27529bffcadf03f49fc3d0088
183aeba23f51b9edea6be8afbc9ee6cd221d3195
refs/heads/master
2022-07-08T17:18:23.954213
2022-05-17T02:22:16
2022-05-17T02:22:16
229,511,418
2
1
null
null
null
null
UTF-8
Java
false
false
784
java
package LeetCode; import java.util.Arrays; /** * Given an array of 2n integers, your task is to group these integers into n pairs of integer, say (a1, b1), (a2, b2), ..., (an, bn) which makes sum of min(ai, bi) for all i from 1 to n as large as possible. * * Example 1: * Input: [1,4,3,2] * * Output: 4 * Explanation: n is 2, and the maximum sum of pairs is 4 = min(1, 2) + min(3, 4). */ public class ArrayPartitionI { public static int arrayPairSum(int[] nums) { Arrays.sort( nums ); int sum = 0; for( int i = 0; i<nums.length; i+=2 ){ sum+=nums[i]; } return sum; } public static void main(String[] args) { System.out.println( arrayPairSum(new int[]{ 1,4,3,2 })); } }
[ "dskharoud2@gmail.com" ]
dskharoud2@gmail.com
9e4808c0fffd75eb433a81390a4215e44ee0862f
2e41518fa009c522ea860b6c3e445e221f0cc41a
/Source Code/src/com/akisoft/slidingmenu/CustomAutoCompleteTextView.java
5e09b32b723069e353e2fe536b3dbd842a45b2e6
[ "MIT" ]
permissive
aksh4y/CU
ba42d4a647494748b26a0bcfae990b07a9c064e2
edf89cab0d94a4741ea4df073aaa2c1bc6259f5f
refs/heads/master
2021-01-12T03:34:12.837564
2018-02-13T06:23:03
2018-02-13T06:23:03
79,762,456
0
1
null
null
null
null
UTF-8
Java
false
false
797
java
package com.akisoft.slidingmenu; import java.util.HashMap; import android.content.Context; import android.util.AttributeSet; import android.widget.AutoCompleteTextView; /** Customizing AutoCompleteTextView to return Place Description * corresponding to the selected item */ public class CustomAutoCompleteTextView extends AutoCompleteTextView { public CustomAutoCompleteTextView(Context context, AttributeSet attrs) { super(context, attrs); } /** Returns the place description corresponding to the selected item */ @Override protected CharSequence convertSelectionToString(Object selectedItem) { /** Each item in the autocompetetextview suggestion list is a hashmap object */ HashMap<String, String> hm = (HashMap<String, String>) selectedItem; return hm.get("description"); } }
[ "4kshay@ccs.neu.edu" ]
4kshay@ccs.neu.edu
e36f03d0c97c69c3e337ffce8faeab0cbb30617c
90ab5bca7e2ac6d383f221699ad0c9dc41839859
/Leilao.Server/src/br/com/fatec/fake/Provider/ContaProvider.java
0543b06da5a9cb6b8793ce3c6e27c4abe520f5ea
[]
no_license
HenGuirelli/Leilao-rmi-SD
411cf00e5dfb4521d2580130620f74606de01676
a944342323d4645a9c5bff5b904eb21b784882b8
refs/heads/master
2020-04-04T08:41:32.084638
2018-12-14T13:27:30
2018-12-14T13:27:30
155,790,840
0
0
null
null
null
null
UTF-8
Java
false
false
709
java
package br.com.fatec.fake.Provider; import br.com.fatec.exceptions.ContaExisteException; import br.com.fatec.model.Conta; import br.com.fatec.enums.TipoConta; import br.com.fatec.interfaces.ILoginProvider; import br.com.fatec.model.Participante; import br.com.fatec.model.Usuario; public class ContaProvider implements ILoginProvider { public void save(Conta conta) throws ContaExisteException{ /* nada pra fazer aqui */ } public Usuario signIn(Conta conta) { Usuario u = new Participante(); u.setConta(conta); conta.setTipoConta(TipoConta.PARTICIPANTE); return u; } public void update(Conta conta) { /* nada a fazer */ } }
[ "henrique.guirelli@intelitrader.com.br" ]
henrique.guirelli@intelitrader.com.br
73c521bb93c8c5e6dc88199e006bb9db172f2b38
fe9fb6a6eab7d519f57a4e8950849d91b8197dd5
/Documents/RAD_Project/New folder/src/DeleteProduct.java
fd14c4bfb2940540ad5cf489835c8fa07ddf299e
[]
no_license
ridmiAshi/Stock-Managment-System
8abe2a7688b5063f753232ed9ae9c7b023c9dc35
4c79576e9a9001b28752d146eed012d646865f55
refs/heads/master
2022-11-21T07:28:47.500837
2020-07-27T16:49:06
2020-07-27T16:49:06
216,770,901
0
0
null
null
null
null
UTF-8
Java
false
false
6,916
java
import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.Statement; import javax.swing.JOptionPane; /* * 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. */ /** * * @author Sachini Nayanathara */ public class DeleteProduct extends javax.swing.JFrame { Connection con; PreparedStatement pst; ResultSet rs; /** * Creates new form DeleteProduct */ public DeleteProduct() { initComponents(); con=DBconnect.getconnection(); } /** * This method is called from within the constructor to initialize the form. * WARNING: Do NOT modify this code. The content of this method is always * regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jLabel1 = new javax.swing.JLabel(); pidTxt = new javax.swing.JTextField(); pidLabel = new javax.swing.JLabel(); ClearBtn = new javax.swing.JButton(); deleteSupplier = new javax.swing.JButton(); jLabel3 = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); getContentPane().setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout()); jLabel1.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N jLabel1.setText("Delete Product"); getContentPane().add(jLabel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(360, 80, -1, -1)); pidTxt.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { pidTxtActionPerformed(evt); } }); getContentPane().add(pidTxt, new org.netbeans.lib.awtextra.AbsoluteConstraints(390, 190, 190, 50)); pidLabel.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N pidLabel.setText("Product ID"); getContentPane().add(pidLabel, new org.netbeans.lib.awtextra.AbsoluteConstraints(250, 200, -1, -1)); ClearBtn.setBackground(new java.awt.Color(0, 0, 0)); ClearBtn.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N ClearBtn.setForeground(new java.awt.Color(255, 255, 255)); ClearBtn.setText("Clear"); ClearBtn.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { ClearBtnActionPerformed(evt); } }); getContentPane().add(ClearBtn, new org.netbeans.lib.awtextra.AbsoluteConstraints(220, 320, 130, 50)); deleteSupplier.setBackground(new java.awt.Color(0, 0, 0)); deleteSupplier.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N deleteSupplier.setForeground(new java.awt.Color(255, 255, 255)); deleteSupplier.setText("Delete"); deleteSupplier.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { deleteSupplierActionPerformed(evt); } }); getContentPane().add(deleteSupplier, new org.netbeans.lib.awtextra.AbsoluteConstraints(480, 320, 140, 50)); jLabel3.setIcon(new javax.swing.ImageIcon(getClass().getResource("/background.jpg"))); // NOI18N jLabel3.setText("jLabel1"); getContentPane().add(jLabel3, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, 900, 600)); pack(); setLocationRelativeTo(null); }// </editor-fold>//GEN-END:initComponents private void pidTxtActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_pidTxtActionPerformed // TODO add your handling code here: }//GEN-LAST:event_pidTxtActionPerformed private void ClearBtnActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ClearBtnActionPerformed pidTxt.setText(""); }//GEN-LAST:event_ClearBtnActionPerformed private void deleteSupplierActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_deleteSupplierActionPerformed // TODO add your handling code here: try{ String pid = pidTxt.getText(); Statement pst = con.createStatement(); pst.executeUpdate("delete from products where pid='"+pid+"'"); JOptionPane.showMessageDialog(null, "Product Deleted"); pidTxt.setText(""); }catch(Exception e){ JOptionPane.showMessageDialog(null, e); } }//GEN-LAST:event_deleteSupplierActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { /* Set the Nimbus look and feel */ //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) "> /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html */ try { for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { if ("Nimbus".equals(info.getName())) { javax.swing.UIManager.setLookAndFeel(info.getClassName()); break; } } } catch (ClassNotFoundException ex) { java.util.logging.Logger.getLogger(DeleteProduct.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(DeleteProduct.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(DeleteProduct.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(DeleteProduct.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new DeleteProduct().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton ClearBtn; private javax.swing.JButton deleteSupplier; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel3; private javax.swing.JLabel pidLabel; private javax.swing.JTextField pidTxt; // End of variables declaration//GEN-END:variables }
[ "ridmiashi@gmail.com" ]
ridmiashi@gmail.com
0d84dc286b9a0471a1ee94748789ee7071a36247
55198905555db7de06a5ed6e743b9087560ee82e
/WidgetLib/StatusBarLib/src/main/java/com/yc/statusbar/bar/BarStatusLollipop.java
3115a1bf354344d6d5a6a27732defe7f7d11ec1f
[ "Apache-2.0" ]
permissive
Mario0o/LifeHelper
c68ebe76e50283403587558dfdfdddd418667943
83c22ffbd61186aa86d29a325755e5f796d1e117
refs/heads/master
2023-08-17T05:49:25.116555
2023-08-14T23:51:17
2023-08-14T23:51:17
190,854,495
0
0
null
2023-08-15T08:02:23
2019-06-08T06:37:35
Java
UTF-8
Java
false
false
13,235
java
/* Copyright 2017 yangchong211(github.com/yangchong211) 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.yc.statusbar.bar; import android.annotation.TargetApi; import android.app.Activity; import android.graphics.Color; import android.os.Build; import androidx.annotation.ColorInt; import androidx.annotation.NonNull; import androidx.appcompat.widget.Toolbar; import androidx.core.view.OnApplyWindowInsetsListener; import androidx.core.view.ViewCompat; import androidx.core.view.WindowInsetsCompat; import com.google.android.material.appbar.AppBarLayout; import com.google.android.material.appbar.CollapsingToolbarLayout; import com.yc.statusbar.utils.StatusBarUtils; import android.view.View; import android.view.ViewGroup; import android.view.Window; import android.view.WindowManager; import static com.yc.toolutils.StatusBarUtils.getStatusBarHeight; /** * <pre> * @author yangchong * blog : https://github.com/yangchong211/YCStatusBar * time : 2018/06/4 * desc : 状态栏工具类 * revise: 使用方法请看GitHub说明文档 * </pre> */ @TargetApi(Build.VERSION_CODES.LOLLIPOP) final class BarStatusLollipop { /** * 设置状态栏的颜色,5.0以上,可以直接通过setStatusBarColor进行修改 * * @param activity activity * @param statusColor 颜色 */ static void setStatusBarColor(Activity activity, @ColorInt int statusColor) { Window window = activity.getWindow(); //取消状态栏透明 window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); //添加Flag把状态栏设为可绘制模式 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); //设置状态栏颜色 window.setStatusBarColor(statusColor); //设置系统状态栏处于可见状态 window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE); //让view不根据系统窗口来调整自己的布局,实际上就是content布局 StatusBarUtils.setFitsSystemWindows(window,false); } /** * 设置状态栏透明效果 * @param activity activity * @param hideStatusBarBackground 是否隐藏状态栏 */ static void translucentStatusBar(Activity activity, boolean hideStatusBarBackground) { Window window = activity.getWindow(); //添加Flag把状态栏设为可绘制模式 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); //判断是否隐藏状态栏 if (hideStatusBarBackground) { //如果为全透明模式,取消设置Window半透明的Flag window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); //设置状态栏为透明 window.setStatusBarColor(Color.TRANSPARENT); //设置window的状态栏不可见 window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN); } else { //如果为半透明模式,添加设置Window半透明的Flag window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); //设置系统状态栏处于可见状态 window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE); } //view不根据系统窗口来调整自己的布局 StatusBarUtils.setFitsSystemWindows(window,false); } /** * 设置AppBarLayout折叠布局的状态栏颜色 * @param activity activity * @param appBarLayout appBar * @param collapsingToolbarLayout collapsingToolbarLayout * @param toolbar toolbar * @param statusColor 颜色 */ static void setStatusBarColorForCollapsingToolbar(final Activity activity, final AppBarLayout appBarLayout, final CollapsingToolbarLayout collapsingToolbarLayout, Toolbar toolbar, final int statusColor) { final Window window = activity.getWindow(); //取消设置Window半透明的Flag window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); ////添加Flag把状态栏设为可绘制模式 window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); //设置状态栏为透明 window.setStatusBarColor(Color.TRANSPARENT); //设置系统状态栏处于可见状态 window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE); //通过OnApplyWindowInsetsListener()使Layout在绘制过程中将View向下偏移了,使collapsingToolbarLayout可以占据状态栏 ViewCompat.setOnApplyWindowInsetsListener(collapsingToolbarLayout, new OnApplyWindowInsetsListener() { @Override public WindowInsetsCompat onApplyWindowInsets(View v, WindowInsetsCompat insets) { return insets; } }); ViewGroup mContentView = (ViewGroup) window.findViewById(Window.ID_ANDROID_CONTENT); View mChildView = mContentView.getChildAt(0); //view不根据系统窗口来调整自己的布局 if (mChildView != null) { mChildView.setFitsSystemWindows(false); ViewCompat.requestApplyInsets(mChildView); } ((View) appBarLayout.getParent()).setFitsSystemWindows(false); appBarLayout.setFitsSystemWindows(false); collapsingToolbarLayout.setFitsSystemWindows(false); collapsingToolbarLayout.getChildAt(0).setFitsSystemWindows(false); //设置状态栏的颜色 collapsingToolbarLayout.setStatusBarScrimColor(statusColor); toolbar.setFitsSystemWindows(false); //为Toolbar添加一个状态栏的高度, 同时为Toolbar添加paddingTop,使Toolbar覆盖状态栏,ToolBar的title可以正常显示. if (toolbar.getTag() == null) { CollapsingToolbarLayout.LayoutParams lp = (CollapsingToolbarLayout.LayoutParams) toolbar.getLayoutParams(); int statusBarHeight = getStatusBarHeight(activity); lp.height += statusBarHeight; toolbar.setLayoutParams(lp); toolbar.setPadding(toolbar.getPaddingLeft(), toolbar.getPaddingTop() + statusBarHeight, toolbar.getPaddingRight(), toolbar.getPaddingBottom()); toolbar.setTag(true); } appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() { private final static int EXPANDED = 0; private final static int COLLAPSED = 1; private int appBarLayoutState; @Override public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) { //toolbar被折叠时显示状态栏 if (Math.abs(verticalOffset) > collapsingToolbarLayout.getScrimVisibleHeightTrigger()) { if (appBarLayoutState != COLLAPSED) { //修改状态标记为折叠 appBarLayoutState = COLLAPSED; setStatusBarColor(activity, statusColor); } } else { //toolbar显示时同时显示状态栏 if (appBarLayoutState != EXPANDED) { //修改状态标记为展开 appBarLayoutState = EXPANDED; translucentStatusBar(activity, true); } } } }); } static void setStatusBarWhiteForCollapsingToolbar(final Activity activity, final AppBarLayout appBarLayout, final CollapsingToolbarLayout collapsingToolbarLayout, final Toolbar toolbar, final int statusBarColor) { final Window window = activity.getWindow(); window.clearFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); window.setStatusBarColor(Color.TRANSPARENT); window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE); ViewCompat.setOnApplyWindowInsetsListener(collapsingToolbarLayout, new OnApplyWindowInsetsListener() { @Override public WindowInsetsCompat onApplyWindowInsets(View v, WindowInsetsCompat insets) { return insets; } }); ViewGroup mContentView = (ViewGroup) window.findViewById(Window.ID_ANDROID_CONTENT); View mChildView = mContentView.getChildAt(0); if (mChildView != null) { mChildView.setFitsSystemWindows(false); ViewCompat.requestApplyInsets(mChildView); } ((View) appBarLayout.getParent()).setFitsSystemWindows(false); appBarLayout.setFitsSystemWindows(false); toolbar.setFitsSystemWindows(false); if (toolbar.getTag() == null) { CollapsingToolbarLayout.LayoutParams lp = (CollapsingToolbarLayout.LayoutParams) toolbar.getLayoutParams(); int statusBarHeight = getStatusBarHeight(activity); lp.height += statusBarHeight; toolbar.setLayoutParams(lp); toolbar.setPadding(toolbar.getPaddingLeft(), toolbar.getPaddingTop() + statusBarHeight, toolbar.getPaddingRight(), toolbar.getPaddingBottom()); toolbar.setTag(true); } collapsingToolbarLayout.setFitsSystemWindows(false); collapsingToolbarLayout.getChildAt(0).setFitsSystemWindows(false); collapsingToolbarLayout.setStatusBarScrimColor(statusBarColor); appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() { private final static int EXPANDED = 0; private final static int COLLAPSED = 1; private int appBarLayoutState; @Override public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) { //toolbar被折叠时显示状态栏 if (Math.abs(verticalOffset) > collapsingToolbarLayout.getScrimVisibleHeightTrigger()) { if (appBarLayoutState != COLLAPSED) { //修改状态标记为折叠 appBarLayoutState = COLLAPSED; //先判断是否为小米设备,设置状态栏不成功判断是否为6.0以上设备,不是6.0以上设备再判断是否为魅族设备,不是魅族设备就只设置状态栏颜色 if (StateAppBar.setStatusBarLightMode(activity, true)) { return; } if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { activity.getWindow().setBackgroundDrawableResource(android.R.color.transparent); //相当于在布局中设置android:fitsSystemWindows="true",让contentView顶上去 activity.getWindow().getDecorView().setSystemUiVisibility( View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); activity.getWindow().setStatusBarColor(statusBarColor); } else if (!StateAppBar.FlymeSetStatusBarLightMode(activity, true)) { setStatusBarColor(activity, statusBarColor); } } } else { //toolbar显示时同时显示状态栏 if (appBarLayoutState != EXPANDED) { //修改状态标记为展开 appBarLayoutState = EXPANDED; if (StateAppBar.setStatusBarLightMode(activity, false)) { translucentStatusBar(activity, true); return; } if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { ////相当于在布局中设置android:fitsSystemWindows="true",让contentView顶上去 activity.getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE); } else if (StateAppBar.FlymeSetStatusBarLightMode(activity, true)) { } translucentStatusBar(activity, true); } } } }); } }
[ "yangchong211@163.com" ]
yangchong211@163.com
aa7bd30bf1d07726dc55c1dd584992e8194fb26e
020c7ebfdce75ffc163e62fadf70c9dcb2c627f1
/SpringMVC020WebFlow/src/com/cg/hr/controller/Authenticate.java
457ff41e662a7ff78d1c1ee55636e7ca0589c6f5
[]
no_license
shivam1113/m4
f82909c732c012f00bc7798d13ca73b7f47715fc
ad1578f0b1e468568f353a66743501546bbd00b1
refs/heads/master
2021-07-08T05:46:33.332583
2017-10-04T11:59:51
2017-10-04T11:59:51
105,763,137
0
0
null
null
null
null
UTF-8
Java
false
false
1,552
java
package com.cg.hr.controller; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.servlet.ModelAndView; import com.cg.hr.entities.User; import com.cg.hr.exception.EmpException; import com.cg.hr.services.AuthService; @Controller public class Authenticate { @Resource // Setting control to Service Page private AuthService service; @RequestMapping("/getLoginPage.hr") public ModelAndView getLoginPage(){ ModelAndView mAndV=new ModelAndView("Login.jsp"); mAndV.addObject("pageHead","Login page"); return mAndV; } @RequestMapping(value="/authenticate.hr",method=RequestMethod.POST) public ModelAndView authenticateUser(HttpServletRequest request) throws EmpException{ String userName=request.getParameter("userName"); String password=request.getParameter("password"); System.out.println("In controller"+userName+" "+password); User user=new User(userName, password); user=service.isAuthenticated(user); ModelAndView mAndV=new ModelAndView(); if(user.isAuthSucc()) { //GO to Success Page mAndV.addObject("pageHead","Main Menu"); mAndV.addObject("userDetails",user); mAndV.setViewName("MainMenu.jsp"); } else { mAndV.addObject("pageHead","Login Page"); mAndV.addObject("userDetails",user); mAndV.setViewName("Login.jsp"); } return mAndV; } }
[ "shivam.rastogi@capgemini.com" ]
shivam.rastogi@capgemini.com
8b43f9f8cf6e8879be4e49f97af73bc9b9c976dc
8e194cd97abc4e2938889e8457b21d6c409b8351
/src/test/java/com/wb/pro/handle/reflect/CglibProxyExampleHandleTest.java
624adcebcde0278eafc26ae10d6ef33b86b50909
[]
no_license
sky0504/pro
f5fe74801425e9e2be63fdf921d2c10def6f537c
a45bee4c76ce913bd674a7c450bc3d35d0793e1d
refs/heads/master
2021-06-20T18:29:09.175595
2021-04-15T11:57:01
2021-04-15T11:57:01
200,950,086
0
0
null
null
null
null
UTF-8
Java
false
false
589
java
package com.wb.pro.handle.reflect; import com.wb.pro.service.reflect.HelloService; import org.junit.Test; import org.springframework.boot.test.context.SpringBootTest; /** * CGLIB代理测试 * * @author: WangBin * @create: 2020-01-31 18:01 **/ @SpringBootTest public class CglibProxyExampleHandleTest { @Test public void sayTest() { CglibProxyExampleHandle cglibProxyExampleHandle = new CglibProxyExampleHandle(); HelloService helloService = (HelloService) cglibProxyExampleHandle.getProxy(HelloService.class); helloService.sayHello("haha"); } }
[ "bluesky0504@163.com" ]
bluesky0504@163.com
7babf9f28c3afffa1ffe9aeebcee88a38cb26a18
78f284cd59ae5795f0717173f50e0ebe96228e96
/factura-negocio/src/cl/stotomas/factura/negocio/init_24/copy3/TestingTry.java
58dbe76ebea27f839e8cd246b6c30ff0b0689713
[]
no_license
Pattricio/Factura
ebb394e525dfebc97ee2225ffc5fca10962ff477
eae66593ac653f85d05071b6ccb97fb1e058502d
refs/heads/master
2020-03-16T03:08:45.822070
2018-05-07T15:29:25
2018-05-07T15:29:25
132,481,305
0
0
null
null
null
null
ISO-8859-1
Java
false
false
1,256
java
package cl.stotomas.factura.negocio.init_24.copy3; import java.applet.Applet; public class TestingTry { // Inclusión de funcionalidades de esfera de control que no es de confianza // Un atacante puede insertar funcionalidades maliciosas dentro de este programa. // Las Applet comprometen la seguridad. ya que sus funcionalidades se pueden adaptar a la Web // Ademas la entrega de acceso de credenciales es engorrosa para el cliente. public final class TestApplet extends Applet { private static final long serialVersionUID = 1L; } //Comparación de referencias de objeto en lugar de contenido de objeto // El if dentro de este código no se ejecutará. // porque se prioriza el String a mostrar. public final class compareStrings{ public String str1; public String str2; public void comparar() { if (str1 == str2) { System.out.println("str1 == str2"); } } // RECOMENDACIÓN VERACODE // Utilizar equals para realizar la comparación. // public void comprar() // { // if (str1.equals (str2)) // { // System.out.println ("str1 es igual a str2"); // } // } } }
[ "Adriana Molano@DESKTOP-GQ96FK8" ]
Adriana Molano@DESKTOP-GQ96FK8
5c8936d3f58e54cbac02c2fc2e1114486255b0bb
a41544231c57edb8170956e75476ce198bef6dd3
/src/core/at/tuwien/ifs/somtoolbox/util/ImageUtils.java
c92c45d40443473edfdf4074ad89eef566394f8f
[]
no_license
TaylorPeer/somtooolbox-dendrograms
c7d915b2ec509c3c55e0704bd80671b4ba52e3eb
36094e8ab20e3bffe2df333d055f59f7384fed4b
refs/heads/master
2021-01-01T05:50:45.307287
2015-02-08T20:41:16
2015-02-08T20:41:16
30,176,715
0
1
null
null
null
null
UTF-8
Java
false
false
6,487
java
/* * Copyright 2004-2010 Information & Software Engineering Group (188/1) * Institute of Software Technology and Interactive Systems * Vienna University of Technology, Austria * * 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.ifs.tuwien.ac.at/dm/somtoolbox/license.html * * 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 at.tuwien.ifs.somtoolbox.util; import java.awt.Color; import java.awt.Graphics2D; import java.awt.Image; import java.awt.Transparency; import java.awt.image.BufferedImage; /** * This class provides methods to manipulate images. * * @author Rudolf Mayer * @version $Id: ImageUtils.java 4308 2014-01-09 13:03:06Z mayer $ */ public class ImageUtils { enum Origin { TOP, RIGHT, LEFT, BOTTOM; } /** * Automatically crops an image, by continously removing full rows or columns from all sides, as long as all the * pixels in them are all white */ public static BufferedImage autoCrop(BufferedImage bi) { // find the crop points from all sides int cropFromTop = findNumberOfRowsToCrop(bi, Origin.TOP); int cropFromBottom = findNumberOfRowsToCrop(bi, Origin.BOTTOM); int cropFromLeft = findNumberOfColumnsToCrop(bi, Origin.LEFT); int cropFromRight = findNumberOfColumnsToCrop(bi, Origin.RIGHT); int width = bi.getWidth() - cropFromLeft - cropFromRight; int height = bi.getHeight() - cropFromBottom - cropFromTop; // System.out.println(width); return bi.getSubimage(cropFromLeft, cropFromTop, width, height); } /** * Computes how many rows of pixels can be cropped from the specified {@link Origin}; only {@link Origin#TOP} and * {@link Origin#BOTTOM} are valid */ private static int findNumberOfRowsToCrop(BufferedImage bi, Origin origin) { if (origin != Origin.TOP && origin != Origin.BOTTOM) { throw new IllegalArgumentException("Direction can onl be '" + Origin.TOP + "' (downwards) or '" + Origin.BOTTOM + "' (upwards)"); } int rows = 0; while (rows >= 0 && rows < bi.getHeight()) { for (int i = 0; i < bi.getWidth(); i++) { Color color = new Color(bi.getRGB(i, origin == Origin.TOP ? rows : bi.getHeight() - rows - 1)); if (!color.equals(Color.WHITE)) { return rows; } } rows++; } return rows; } /** * Computes how many cols of pixels can be cropped from the specified {@link Origin}; only {@link Origin#LEFT} and * {@link Origin#RIGHT} are valid */ private static int findNumberOfColumnsToCrop(BufferedImage bi, Origin origin) { if (origin != Origin.RIGHT && origin != Origin.LEFT) { throw new IllegalArgumentException("Direction can onl be '" + Origin.LEFT + "' (rightwards) or '" + Origin.RIGHT + "' (leftwards)"); } int cols = 0; while (cols >= 0 && cols < bi.getWidth()) { for (int i = 0; i < bi.getHeight(); i++) { Color color = new Color(bi.getRGB(origin == Origin.LEFT ? cols : bi.getWidth() - cols - 1, i)); if (!color.equals(Color.WHITE)) { return cols; } } cols++; } return cols; } /** Compares if two images contain the same pixel content */ public static boolean equalPixelContent(BufferedImage i1, BufferedImage i2) { // simple check first: compare the dimension of the images if (i1.getWidth() != i2.getWidth() || i1.getHeight() != i2.getHeight()) { return false; } // now do a pixel comparison for (int i = 0; i < i1.getWidth(null); i++) { for (int j = 0; j < i2.getHeight(null); j++) { if (i1.getRGB(i, j) != i2.getRGB(i, j)) { return false; } } } return true; } public static BufferedImage scaleImage(BufferedImage buim, int width) { int height = (int) (width / ((double) buim.getWidth() / (double) buim.getHeight())); BufferedImage scaledImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); scaledImage.createGraphics().drawImage(buim.getScaledInstance(width, height, Image.SCALE_SMOOTH), 0, 0, null); return scaledImage; } public static BufferedImage scaleImageByHeight(BufferedImage buim, int height) { int width = (int) (height / ((double) buim.getHeight() / (double) buim.getWidth())); BufferedImage scaledImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); scaledImage.createGraphics().drawImage(buim.getScaledInstance(width, height, Image.SCALE_SMOOTH), 0, 0, null); return scaledImage; } /** Creates a {@link BufferedImage} with a white, empty background. */ public static BufferedImage createEmptyImage(int width, int height) { BufferedImage res = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); Graphics2D g = (Graphics2D) res.getGraphics(); Color c = g.getBackground(); g.setBackground(Color.WHITE); g.fillRect(0, 0, width, height); g.setBackground(c); return res; } public static BufferedImage createTransparentImage(int width, int height) { return new BufferedImage(width, height, Transparency.TRANSLUCENT); } /** Get the size of an image in bits */ public static long getSizeOfImage(BufferedImage bufferedImage) { return bufferedImage.getColorModel().getPixelSize() * bufferedImage.getHeight() * bufferedImage.getWidth(); } /** Get the size of an image in MBit, using {@link #getSizeOfImage(BufferedImage)} and {@link NumberUtils#KBit2MBit} */ public static double getSizeOfImageInMBit(BufferedImage bufferedImage) { return getSizeOfImage(bufferedImage) / (double) NumberUtils.KBit2MBit; } }
[ "t.peer@cortical.io" ]
t.peer@cortical.io
55ba3d39b07e80566da2eddf372e53f435c785dd
382ba7b53b45653d700f273a442e684a829bf635
/src/org/me/socket/single/Klient.java
929be54109c94bb6f94b7e84c14f078b46e88a8a
[]
no_license
lathyka/PBOSepuluhSP
40eb597f4402439f391221a034b9ebdc8e876f1d
227dd8434841cf13416c91ee6f6ad79003fb1adf
refs/heads/master
2021-01-21T02:10:20.513225
2012-07-04T12:32:03
2012-07-04T12:32:03
null
0
0
null
null
null
null
UTF-8
Java
false
false
903
java
package org.me.socket.single; import java.io.DataOutputStream; import java.io.IOException; import java.net.Socket; import java.net.UnknownHostException; import java.util.logging.Level; import java.util.logging.Logger; public class Klient { public static void main(String[] args) { try { Socket mySock = new Socket("localhost", 2000); DataOutputStream myOutput = new DataOutputStream(mySock.getOutputStream()); myOutput.writeUTF("ini pesan aji"); System.out.println("Behasil dikirim"); myOutput.close(); mySock.close(); } catch (UnknownHostException ex) { Logger.getLogger(Klient.class.getName()).log(Level.SEVERE, null, ex); } catch (IOException ex) { Logger.getLogger(Klient.class.getName()).log(Level.SEVERE, null, ex); } } }
[ "Lathyka@Lathyka-MacBook" ]
Lathyka@Lathyka-MacBook
225878410c287e9c44e06201307c8acad420f982
0ba3e2e44a3045c3c0f0c022e1a97dc7f6d842e4
/GeoGuessSwipe/app/src/main/java/com/example/geoguessswipe/GeoObjectViewHolder.java
2142864b087e4ef35bc90b079d813df9f251e66e
[]
no_license
Yummeh/Geo-guess-swipe
e9414ef45771a6fa2929ba6b8e7df0e81bb94b0d
3ccaedb634b21a0059db7b8118b03ff05fbc7f12
refs/heads/master
2020-05-02T22:45:53.768093
2019-03-28T18:33:24
2019-03-28T18:33:24
178,261,330
0
0
null
null
null
null
UTF-8
Java
false
false
557
java
package com.example.geoguessswipe; import android.content.Context; import android.support.annotation.NonNull; import android.support.v7.widget.RecyclerView; import android.view.View; import android.widget.ImageView; import android.widget.TextView; public class GeoObjectViewHolder extends RecyclerView.ViewHolder { public TextView geoCountry; public ImageView geoImage; public View view; public GeoObjectViewHolder(@NonNull View itemView) { super(itemView); this.geoImage = itemView.findViewById(R.id.geoImageView); this.view = itemView; } }
[ "ralph.de.horde@hva.nl" ]
ralph.de.horde@hva.nl
fed475ede4d6bb8697d81970120fefa74ded4124
809790f209d9d63e2d3b080c21e144a51c2c9d88
/src/introsde/assignment2/ehealth/model/Measurement.java
97ae80e32c28b4baf69d100948d187b9731060b5
[]
no_license
djbb7/introsde-2015-assignment-2
e951621a3064c9e01ed0af4d60e83d92a12bec2b
a6a497e21a928f4fc223160fa8d2918bd01a4d1f
refs/heads/master
2021-01-13T00:15:53.828594
2015-11-23T23:39:11
2015-11-23T23:39:11
45,986,293
0
0
null
null
null
null
UTF-8
Java
false
false
6,083
java
package introsde.assignment2.ehealth.model; import introsde.assignment2.ehealth.dao.PersonHealthDao; import java.io.Serializable; import java.util.Date; import java.util.List; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityManager; import javax.persistence.EntityTransaction; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.NamedQueries; import javax.persistence.NamedQuery; import javax.persistence.OneToOne; import javax.persistence.Table; import javax.persistence.TableGenerator; import javax.persistence.Temporal; import javax.persistence.TemporalType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlTransient; import javax.xml.bind.annotation.XmlType; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; /** * The persistent class for the "Measurement" database table. * A Measurement is a specific value of a Measure Type for a * specific Person. */ @Entity @Table(name = "Measurement") @NamedQueries(value={ @NamedQuery(name="Measurement.findAll", query="SELECT m FROM Measurement m"), @NamedQuery(name="Measurement.findMostRecentForPerson", query="SELECT m " + "FROM Measurement m " + "WHERE m.person=:person AND m.date=" + "(SELECT MAX(mm.date) " + "FROM Measurement mm " + "WHERE mm.person=m.person AND mm.measureDefinition=m.measureDefinition) " + "GROUP BY m.measureDefinition"), @NamedQuery(name="Measurement.findForPersonByType", query="SELECT m " + "FROM Measurement m " + "WHERE m.person=:person AND m.measureDefinition.name=:measurementType " + "ORDER BY m.date DESC" ), @NamedQuery(name="Measurement.findMeasurement", query="SELECT m " + "FROM Measurement m " + "WHERE m.person=:person " + "AND m.measureDefinition.name=:measurementType " + "AND m.id=:id" ) }) @JsonIgnoreProperties(ignoreUnknown=true) @XmlRootElement(name="measure") @XmlType(propOrder={"id", "date", "measureName", "value", "measureUnits"}) public class Measurement implements Serializable { private static final long serialVersionUID = 1L; @Id @GeneratedValue(generator="sqlite_measurement") @TableGenerator(name="sqlite_measurement", table="sqlite_sequence", pkColumnName="name", valueColumnName="seq", pkColumnValue="Measurement") @Column(name = "id") private int id; @Column(name = "value") private String value; @Temporal(TemporalType.DATE) // defines the precision of the date attribute @Column(name = "timestamp") private Date date; @OneToOne @JoinColumn(name = "nameMeasureDefinition", referencedColumnName = "name", insertable = true, updatable = true) private MeasureType measureDefinition; @ManyToOne @JoinColumn(name="idPerson",referencedColumnName="id") private Person person; public Measurement() { } @XmlElement(name="mid") public int getId() { return this.id; } public String getValue() { return this.value; } public Date getDate(){ return this.date; } @XmlTransient public MeasureType getMeasureDefinition() { return measureDefinition; } // we make this transient for JAXB to avoid and infinite loop on serialization @XmlTransient public Person getPerson() { return person; } @XmlElement(name="measure") public String getMeasureName(){ return measureDefinition.getName(); } @XmlElement(name="units") public String getMeasureUnits(){ return measureDefinition.getMeasureUnits(); } public void setId(int idMeasure) { this.id = idMeasure; } public void setValue(String value) { this.value = value; } @XmlElement(name="created") public void setDate(Date date){ this.date = date; } public void setMeasureDefinition(MeasureType param) { this.measureDefinition = param; } public void setMeasureName(String name){ setMeasureDefinition(MeasureType.getMeasureTypeByName(name)); } public void setPerson(Person person) { this.person = person; } // Database operations /** * Given an id, retrieve the corresponding Measurement * @param measureId * @return */ public static Measurement getMeasureById(int measureId) { EntityManager em = PersonHealthDao.instance.createEntityManager(); Measurement m = em.find(Measurement.class, measureId); PersonHealthDao.instance.closeConnections(em); return m; } /** * Get the list of all Measurements for all Person's * @return */ public static List<Measurement> getAll() { EntityManager em = PersonHealthDao.instance.createEntityManager(); List<Measurement> list = em.createNamedQuery("Measurement.findAll", Measurement.class).getResultList(); PersonHealthDao.instance.closeConnections(em); return list; } /** * Save a new Measurement in the database * @param m Measurement to be created * @return Measurement with id set */ public static Measurement saveMeasure(Measurement m) { EntityManager em = PersonHealthDao.instance.createEntityManager(); EntityTransaction tx = em.getTransaction(); tx.begin(); em.persist(m); tx.commit(); PersonHealthDao.instance.closeConnections(em); return m; } /** * Update a Measurement * @param m Measurement to be updated * @return Measurement with updated fields */ public static Measurement updateMeasure(Measurement m) { EntityManager em = PersonHealthDao.instance.createEntityManager(); EntityTransaction tx = em.getTransaction(); tx.begin(); m = em.merge(m); tx.commit(); PersonHealthDao.instance.closeConnections(em); return m; } /** * Delete a Measurement from the database * @param m Measurement to be deleted */ public static void removeMeasure(Measurement m) { EntityManager em = PersonHealthDao.instance.createEntityManager(); EntityTransaction tx = em.getTransaction(); tx.begin(); m = em.merge(m); em.remove(m); tx.commit(); PersonHealthDao.instance.closeConnections(em); } }
[ "danielbruzual@gmail.com" ]
danielbruzual@gmail.com
7028930f8add242e328dc2822ce2fca558c64208
2d6f3e137074c62e76fa6f088e6f598afa5a2c4a
/textrepo-app/src/main/java/nl/knaw/huc/core/DocumentsOverview.java
31a19e78539b10f02bdaaac1209e809b3c7f369a
[ "Apache-2.0" ]
permissive
knaw-huc/textrepo
9914922a96c1cdac1b8ef23df5f5aa13dd4b107b
822845ac11ac77eb3d8a61532d85117f0bc8c1b6
refs/heads/master
2023-08-31T15:17:56.967189
2023-02-14T15:45:53
2023-02-14T15:45:53
201,077,375
3
1
Apache-2.0
2023-09-07T00:59:54
2019-08-07T15:28:33
Java
UTF-8
Java
false
false
1,292
java
package nl.knaw.huc.core; import com.google.common.base.MoreObjects; import java.beans.ConstructorProperties; public class DocumentsOverview { private final long documentCount; private final long hasFile; private final long hasMetadata; private final long hasBoth; private final long hasNone; @ConstructorProperties({"document_count", "has_file", "has_metadata", "has_both"}) public DocumentsOverview(long documentCount, long hasFile, long hasMetadata, long hasBoth) { this.documentCount = documentCount; this.hasFile = hasFile; this.hasMetadata = hasMetadata; this.hasBoth = hasBoth; this.hasNone = documentCount - hasFile - hasMetadata + hasBoth; } public long getDocumentCount() { return documentCount; } public long getHasFile() { return hasFile; } public long getHasMetadata() { return hasMetadata; } public long getHasBoth() { return hasBoth; } public long getHasNone() { return hasNone; } @Override public String toString() { return MoreObjects .toStringHelper(this) .add("documentCount", documentCount) .add("hasFile", hasFile) .add("hasMetadata", hasMetadata) .add("hasBoth", hasBoth) .add("hasNone", hasNone) .toString(); } }
[ "hayco@users.noreply.github.com" ]
hayco@users.noreply.github.com
1900a13d5090faf52abf2b9685ee5afef814875f
0c55702c6c0afc02c63bff1a909bc163c92117bb
/app/src/main/java/com/app/reelsdownloader/model/Node.java
a4865aaf5bab38014b1cee3d10cfa4d329a2704a
[]
no_license
carloshuila/reelsvideodownloader
09594cfe27b7cdab7cb607d290fd814afa2011a2
f4da87402a76436674858d6f0baa418607253bab
refs/heads/main
2023-06-06T04:48:48.969512
2021-06-15T22:01:46
2021-06-15T22:01:46
377,304,770
0
0
null
null
null
null
UTF-8
Java
false
false
1,153
java
package com.app.reelsdownloader.model; import com.google.gson.annotations.SerializedName; import java.io.Serializable; import java.util.List; public class Node implements Serializable { @SerializedName("display_resources") private List<DisplayResource> display_resources; @SerializedName("display_url") private String display_url; @SerializedName("is_video") private boolean is_video; @SerializedName("video_url") private String video_url; public String getDisplay_url() { return this.display_url; } public void setDisplay_url(String str) { this.display_url = str; } public List<DisplayResource> getDisplay_resources() { return this.display_resources; } public void setDisplay_resources(List<DisplayResource> list) { this.display_resources = list; } public boolean isIs_video() { return this.is_video; } public void setIs_video(boolean z) { this.is_video = z; } public String getVideo_url() { return this.video_url; } public void setVideo_url(String str) { this.video_url = str; } }
[ "carloshuila@unicauca.edu.co" ]
carloshuila@unicauca.edu.co
c203ea01bd628dc7c00ddee1a811f8e596b0205d
26308ca4b4708141ddb8488ac86dc3c64037f38e
/beacon-wechat-app/src/main/java/com/beacon/wechat/app/utils/cache/GuavaCache.java
a7392717b1081d2ad798871074c5645f6d50bcef
[]
no_license
crab890715/beancon-wechat
927000d5536b51a733e1902ba7daf1d431567bb6
c153e9795ef7bff8ef7b18183fcf362d33174f4e
refs/heads/master
2020-04-09T11:11:16.782986
2016-02-22T01:55:12
2016-02-22T01:55:12
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,320
java
package com.beacon.wechat.app.utils.cache; import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concurrent.TimeUnit; import org.apache.log4j.Logger; import com.google.common.cache.Cache; import com.google.common.cache.CacheBuilder; public class GuavaCache{ private Logger log = Logger.getLogger(GuavaCache.class); private Cache<String, Object> cache; private long maxinumSize = 10000; private int expiretime = 10; private int concurrencyLevel = 4; private int initialCapacity = 16; public GuavaCache() { this.setCache(CacheBuilder.newBuilder() //设置并发级别为4,并发级别是指可以同时写缓存的线程数 .concurrencyLevel(concurrencyLevel) //设置写缓存后expiretime分钟过期 .expireAfterWrite(expiretime, TimeUnit.MINUTES) //设置缓存容器的初始容量为16 .initialCapacity(initialCapacity) .maximumSize(maxinumSize) .build()); } public long getMaxinumSize() { return maxinumSize; } public void setMaxinumSize(long maxinumSize) { this.maxinumSize = maxinumSize; } public int getExpiretime() { return expiretime; } public void setExpiretime(int expiretime) { this.expiretime = expiretime; } public int getConcurrencyLevel() { return concurrencyLevel; } public void setConcurrencyLevel(int concurrencyLevel) { this.concurrencyLevel = concurrencyLevel; } public int getInitialCapacity() { return initialCapacity; } public void setInitialCapacity(int initialCapacity) { this.initialCapacity = initialCapacity; } public void clear() { this.cache.cleanUp(); } public void remove(String key) { this.cache.invalidate(key); } public Object get(String arg0) { try { return this.cache.get(arg0, new Callable<Object>() { @Override public Object call() throws Exception { return null; } }); } catch (ExecutionException e) { log.error(e); } return null; } public void put(String arg0, Object arg1) { this.cache.put(arg0, arg1); } public Cache<String, Object> getCache() { return cache; } public void setCache(Cache<String, Object> cache) { this.cache = cache; } }
[ "530680853@qq.com" ]
530680853@qq.com
ed862b78c2a329dc370c00a24cc4e4d19adca5b1
9e864037b0656031b44acae2e6d64716675bb08a
/src/Day25_DP/EditDistance.java
2ec305808334d3038a1bce9fc378edb9d66f7c62
[]
no_license
shilpisingh12/30DaysToFAANG
cb100100a056253c3caef53d4b2cb0682bf85281
78e99791881539a3cfb9948a53b63afa64f5a5e9
refs/heads/master
2022-11-24T11:30:50.200428
2020-07-31T16:06:12
2020-07-31T16:06:12
284,077,539
1
0
null
2020-07-31T16:11:09
2020-07-31T16:11:08
null
UTF-8
Java
false
false
906
java
package Day25_DP; import javafx.util.Pair; public class EditDistance { // s1 to s2 public void solve(String s1, String s2) { int n = s1.length(), m = s2.length(); int dp[][] = new int[n + 1][m + 1]; for (int i = 0; i <= n; i++) { for (int j = 0; j <= m; j++) { if (i == 0 && j == 0) { continue; } else if (i == 0) { dp[i][j] = j; } else if (j == 0) { dp[i][j] = i; } else { if (s1.charAt(i - 1) == s2.charAt(j - 1)) { dp[i][j] = dp[i - 1][j - 1]; } else { dp[i][j] = 1 + Math.min(dp[i - 1][j - 1], Math.min(dp[i - 1][j], dp[i][j - 1])); } } } } System.out.println(dp[n][m]); } }
[ "ayushku4557@gmail.com" ]
ayushku4557@gmail.com
a7ba1fbd1b6d56521edf0b81de4cee278d1255fe
dd101bd8eaa79026fc7ca82fd0a0e0148ef6c315
/marryou-web/src/main/java/com/marryou/utils/AjaxUtils.java
eb12a45f02d2520c2b021730b947318c33653173
[]
no_license
uinque/marryou
c44e15a6b806b56bf2431be04b3f26d744e80c17
c9ac45b6aa303bf961ee138a88a2b945ef776cbd
refs/heads/master
2022-11-25T16:08:55.322759
2018-10-15T05:48:13
2018-10-15T05:48:13
153,058,970
1
1
null
2022-11-16T07:54:47
2018-10-15T05:44:15
Java
UTF-8
Java
false
false
4,259
java
package com.marryou.utils; import com.google.common.collect.Maps; import javax.servlet.http.HttpServletRequest; import java.util.Map; // TODO: Auto-generated Javadoc /** * The Class AjaxUtils. */ public class AjaxUtils { // 状态码 /** * The Constant STATUS_CODE_SUCCESS. */ public final static int STATUS_CODE_SUCCESS = 200; /** * The Constant STATUS_CODE_FAILURE. */ public final static int STATUS_CODE_FAILURE = 500; /** * The Constant STATUS_CODE_TIMEOUT. */ public final static int STATUS_CODE_TIMEOUT = 301; /** * The Constant STATUS_CODE_FORBIDDEN. */ public final static int STATUS_CODE_FORBIDDEN = 403; /** * The status code. */ private int statusCode = STATUS_CODE_SUCCESS; /** * The message. */ private String message = ""; /** * The body. */ private Object body; public AjaxUtils() { } public AjaxUtils(String message) { this.message = message; } public AjaxUtils(int statusCode) { super(); this.statusCode = statusCode; } public AjaxUtils(int statusCode, String message) { this.statusCode = statusCode; this.message = message; } /** * Gets the status code. * * @return the status code */ public int getStatusCode() { return statusCode; } /** * Sets the status code. * * @param statusCode the status code * @return the ajax utils */ public AjaxUtils setStatusCode(int statusCode) { this.statusCode = statusCode; return this; } /** * Gets the message. * * @return the message */ public String getMessage() { return message; } /** * Sets the message. * * @param message the message * @return the ajax utils */ public AjaxUtils setMessage(String message) { this.message = message; return this; } /** * New ok. * * @param message the message * @return the ajax utils */ public static AjaxUtils newOk(Object message) { return new AjaxUtils(STATUS_CODE_SUCCESS, message.toString()); } /** * New ok. * * @return the ajax utils */ public static AjaxUtils newOk() { return new AjaxUtils(STATUS_CODE_SUCCESS, ""); } /** * New error. * * @param message the message * @return the ajax utils */ public static AjaxUtils newError(String message) { return new AjaxUtils(STATUS_CODE_FAILURE, message); } /** * New timeout. * * @param message the message * @return the ajax utils */ public static AjaxUtils newTimeout(String message) { return new AjaxUtils(STATUS_CODE_TIMEOUT, message); } /** * New forbidden. * * @param message the message * @return the ajax utils */ public static AjaxUtils newForbidden(String message) { return new AjaxUtils(STATUS_CODE_TIMEOUT, message); } /* * (non-Javadoc) * * @see java.lang.Object#toString() */ @Override public String toString() { Map<String, Object> p = Maps.newHashMap(); p.put("statusCode", getStatusCode()); p.put("message", getMessage()); p.put("body", getBody()); return JsonMapper.nonEmptyMapper().toJson(p); } /** * String. * * @return the string */ public String string() { return toString(); } /** * Checks if is ajax request. * * @param request the request * @return true, if is ajax request */ public static boolean isAjaxRequest(HttpServletRequest request) { if (request == null) return false; return ("XMLHttpRequest".equals(request.getHeader("X-Requested-With"))); } /** * Gets the body. * * @return the body */ public Object getBody() { return body; } /** * Sets the body. * * @param body the body * @return the ajax utils */ public AjaxUtils setBody(Object body) { this.body = body; return this; } }
[ "qllinhonyu@qq.com" ]
qllinhonyu@qq.com
ed21ae834b7dcfc35c2f1265652d13d552368536
9feb0c4be470807dfd739e2a6709e810925e06e4
/JavaJunitAssignment-master/src/test/java/helix/MatrixHelixMorphTest.java
439509f3ba1c38bfc8f95ea9b65f8113aab77e3e
[]
no_license
Piyush1077/Junit-Assignment
0c1c0dd45b05e3858cd4528ba187c767712c65bf
c2623ca677de8845218e748681d8ccfe580ea042
refs/heads/master
2023-03-28T05:11:03.621410
2021-04-03T03:05:16
2021-04-03T03:05:16
354,042,502
0
0
null
null
null
null
UTF-8
Java
false
false
3,646
java
package helix; import org.junit.Test; import static org.junit.Assert.assertTrue; public class MatrixHelixMorphTest { /** Check if two integer matrices have the same contents * * @param matrix1 a 2-D matrix * @param matrix2 a 2-D matrix * @return true if the contents of matrix1 and matrix2 are identical and false otherwise */ public static boolean testEqual(int[][] matrix1, int[][] matrix2) { /* Basic sanity checking: Verify that lengths are equal */ if (matrix1 == null || matrix2 == null) { return true; } if (matrix1.length != matrix2.length) { return false; } if (matrix1[0].length != matrix2[0].length) { return false; } /* Test the contents of the matrices */ for (int i = 0; i < matrix1.length; i++) { for (int j = 0; j < matrix1[0].length; j++) { if (matrix1[i][j] != matrix2[i][j]) { return false; } } } return true; } @Test public void test0x0() { int[][] inMatrix = {{}}; int[][] expOutput = null; assertTrue(testEqual(expOutput, MatrixHelixMorph.helix(inMatrix))); } @Test public void test2x2() { int[][] inMatrix = { {1, 2}, {3, 4} }; int[][] expOutput = { {1, 2}, {4, 3} }; assertTrue(testEqual(expOutput, MatrixHelixMorph.helix(inMatrix))); } @Test public void test1x1() { int[][] inMatrix = { {1} }; int[][] expOutput = { {1} }; assertTrue(testEqual(expOutput, MatrixHelixMorph.helix(inMatrix))); } @Test public void test1x3() { int[][] inMatrix = { {1,2,3} }; int[][] expOutput = { {1,2,3} }; assertTrue(testEqual(expOutput, MatrixHelixMorph.helix(inMatrix))); } @Test public void test3x1() { int[][] inMatrix = { {1},{2},{3} }; int[][] expOutput = { {1},{2},{3} }; assertTrue(testEqual(expOutput, MatrixHelixMorph.helix(inMatrix))); } @Test public void test3x3() { int[][] inMatrix = { {1, 2, 3}, {4, 5, 6}, {7,8,9} }; int[][] expOutput = { {1, 2, 3}, {8, 9, 4}, {7,6,5} }; assertTrue(testEqual(expOutput, MatrixHelixMorph.helix(inMatrix))); } @Test public void test2x3() { int[][] inMatrix = { {1, 2, 3}, {4, 5, 6} }; int[][] expOutput = { {1, 2, 3}, {6,5,4} }; assertTrue(testEqual(expOutput, MatrixHelixMorph.helix(inMatrix))); } @Test public void test4x4() { int[][] inMatrix = { {1, 2, 3,4}, { 5, 6, 7, 8}, {9,10,11,12}, {13,14,15,16}}; int[][] expOutput = { {1, 2, 3,4}, {12,13,14,5}, {11,16,15,6}, {10,9,8,7} }; assertTrue(testEqual(expOutput, MatrixHelixMorph.helix(inMatrix))); } @Test public void test5x3() { int[][] inMatrix = { {1, 2, 3}, { 4, 5, 6 }, {7, 8, 9}, {10,11,12}, {13,14,15}}; int[][] expOutput = { {1, 2, 3}, {12,13,4}, {11,14,5}, {10,15,6}, {9,8,7} }; assertTrue(testEqual(expOutput, MatrixHelixMorph.helix(inMatrix))); } @Test public void test6x5() { int[][] inMatrix = { {1, 2, 3, 4, 5}, {6, 7, 8, 9, 10 }, {11,12,13,14,15}, {16,17,18,19,20}, {21,22,23,24,25}, {26,27,28,29,30}}; int[][] expOutput = { {1, 2, 3,4,5}, {18,19,20,21,6}, {17,28,29,22,7}, {16,27,30,23,8}, {15,26,25,24,9}, {14,13,12,11,10} }; assertTrue(testEqual(expOutput, MatrixHelixMorph.helix(inMatrix))); } // ADD TESTS TO CHECK PARTITIONS }
[ "piyushsingla856@gmail.com" ]
piyushsingla856@gmail.com
26ef4b48be7410d09409bcff12481312e4683348
1deabc7692e16de5f16f4e19dc15cd9b071a999a
/VC4 API/src/vc4/api/container/ContainerItems.java
885f484dba4a3719dc7081b4aebffaa9997556c9
[]
no_license
adventurerok/VoxelCaverns-4
5551059ebd2d76bc1538ab63c15f0c8df9759326
1f31043c7f5bfdfb1b7361f6152a980684d87ff7
refs/heads/master
2020-05-24T16:05:55.418068
2014-12-15T07:37:21
2014-12-15T07:37:21
9,564,206
1
0
null
null
null
null
UTF-8
Java
false
false
447
java
package vc4.api.container; import vc4.api.item.ItemStack; public class ContainerItems extends Container { /** * */ private static final long serialVersionUID = 36822208374927613L; public ContainerItems() { // TASK Auto-generated constructor stub } public ContainerItems(int slots) { super(slots); } public ContainerItems(ItemStack... items) { super(items); } @Override public String getName() { return "items"; } }
[ "paul.durbaba@btinternet.com" ]
paul.durbaba@btinternet.com
38309c5d3f0eb0f2ac5ce7dc6d5464ad0d90adfd
22aca5fdf0d5a04744cd10076a8fca8bbe6ae1ee
/src/test/java/com/goda5/smartjcr/lift/LiftTest.java
10c9baffde4a0dd8bb11a0563121ecda19b75498
[]
no_license
tongc/smartJcr
cc24cc42dc289d6fb25c4dff7d7be5fa0e99be29
0c0a1ef1e40845bbf497b7d98613753fa89c484c
refs/heads/master
2021-01-12T03:38:16.067499
2017-02-05T21:56:28
2017-02-05T21:56:28
78,243,731
0
0
null
null
null
null
UTF-8
Java
false
false
1,209
java
package com.goda5.smartjcr.lift; import org.junit.Test; import java.util.ArrayList; import java.util.List; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.core.Is.is; import static org.junit.Assert.*; public class LiftTest { @Test public void test() { Floor floor0 = new Floor("ground"); Floor floor1 = new Floor("1st"); Floor floor2 = new Floor("2nd"); Floor floor3 = new Floor("3rd"); List<Floor> floors = new ArrayList<>(); floors.add(floor0); floors.add(floor1); floors.add(floor2); floors.add(floor3); Lift lift = new Lift(floor0); ControlRoom controlRoom = new ControlRoom(lift, floors); Object passenger = new Object(); lift.enter(passenger); controlRoom.request(floor2); controlRoom.moveLift(); assertThat(lift.exit(), is(passenger)); assertThat(lift.getLocation(), is(floor2)); assertNull(lift.getPassenger()); controlRoom.request(floor3); controlRoom.request(floor1); controlRoom.moveLift(); controlRoom.moveLift(); assertThat(lift.getLocation(), is(floor1)); } }
[ "chentongtc@gmail.com" ]
chentongtc@gmail.com
dd0798463885bbb19b81592aef5d32e598786310
7f298c2bf9ff5a61eeb87e3929e072c9a04c8832
/spring-aop/src/main/java/org/springframework/aop/interceptor/SimpleTraceInterceptor.java
3ec5ed458d5805b3bccf46a7e491753c07b8cdf4
[ "Apache-2.0" ]
permissive
stwen/my-spring5
1ca1e85786ba1b5fdb90a583444a9c030fe429dd
d44be68874b8152d32403fe87c39ae2a8bebac18
refs/heads/master
2023-02-17T19:51:32.686701
2021-01-15T05:39:14
2021-01-15T05:39:14
322,756,105
0
0
null
null
null
null
UTF-8
Java
false
false
2,550
java
/* * Copyright 2002-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.aop.interceptor; import org.aopalliance.intercept.MethodInvocation; import org.apache.commons.logging.Log; /** * Simple AOP Alliance {@code MethodInterceptor} that can be introduced * in a chain to display verbose trace information about intercepted method * invocations, with method entry and method exit info. * * <p>Consider using {@code CustomizableTraceInterceptor} for more * advanced needs. * * @author Dmitriy Kopylenko * @author Juergen Hoeller * @see CustomizableTraceInterceptor * @since 1.2 */ @SuppressWarnings("serial") public class SimpleTraceInterceptor extends AbstractTraceInterceptor { /** * Create a new SimpleTraceInterceptor with a static logger. */ public SimpleTraceInterceptor() { } /** * Create a new SimpleTraceInterceptor with dynamic or static logger, * according to the given flag. * * @param useDynamicLogger whether to use a dynamic logger or a static logger * @see #setUseDynamicLogger */ public SimpleTraceInterceptor(boolean useDynamicLogger) { setUseDynamicLogger(useDynamicLogger); } @Override protected Object invokeUnderTrace(MethodInvocation invocation, Log logger) throws Throwable { String invocationDescription = getInvocationDescription(invocation); writeToLog(logger, "Entering " + invocationDescription); try { Object rval = invocation.proceed(); writeToLog(logger, "Exiting " + invocationDescription); return rval; } catch (Throwable ex) { writeToLog(logger, "Exception thrown in " + invocationDescription, ex); throw ex; } } /** * Return a description for the given method invocation. * * @param invocation the invocation to describe * @return the description */ protected String getInvocationDescription(MethodInvocation invocation) { return "method '" + invocation.getMethod().getName() + "' of class [" + invocation.getThis().getClass().getName() + "]"; } }
[ "xianhao_gan@qq.com" ]
xianhao_gan@qq.com
acd691407cf03de84889c6ae297605b66164f6e4
cc831729169d4cae2957dd010294de8f6def9943
/Week_03/nio02/src/main/java/io/github/kimmking/gateway/inbound/HttpInboundServer.java
9e0373fd40ff0af410ac9f0852777bc59153d4b5
[]
no_license
qiaoqing1993/JAVA-000
d3af20dc7582dfc4e26862ecf447767e5bdfe8aa
a2fb00aed498a689a214edda7b6ad87169ebf497
refs/heads/main
2023-01-06T15:12:44.454106
2020-11-04T13:00:44
2020-11-04T13:00:44
303,882,468
0
0
null
2020-10-14T02:34:00
2020-10-14T02:34:00
null
UTF-8
Java
false
false
2,274
java
package io.github.kimmking.gateway.inbound; import io.netty.bootstrap.ServerBootstrap; import io.netty.buffer.PooledByteBufAllocator; import io.netty.channel.Channel; import io.netty.channel.ChannelOption; import io.netty.channel.EventLoopGroup; import io.netty.channel.epoll.EpollChannelOption; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.nio.NioServerSocketChannel; import io.netty.handler.logging.LogLevel; import io.netty.handler.logging.LoggingHandler; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class HttpInboundServer { private static Logger logger = LoggerFactory.getLogger(HttpInboundServer.class); private int port;//网关端口 private String proxyServer;//server实际地址 public HttpInboundServer(int port, String proxyServer) { this.port=port; this.proxyServer = proxyServer; } public void run() throws Exception { EventLoopGroup bossGroup = new NioEventLoopGroup(1); EventLoopGroup workerGroup = new NioEventLoopGroup(16); try { ServerBootstrap b = new ServerBootstrap(); b.option(ChannelOption.SO_BACKLOG, 128) .option(ChannelOption.TCP_NODELAY, true) .option(ChannelOption.SO_KEEPALIVE, true) .option(ChannelOption.SO_REUSEADDR, true) .option(ChannelOption.SO_RCVBUF, 32 * 1024) .option(ChannelOption.SO_SNDBUF, 32 * 1024) .option(EpollChannelOption.SO_REUSEPORT, true) .childOption(ChannelOption.SO_KEEPALIVE, true)//worker参数 .option(ChannelOption.ALLOCATOR, PooledByteBufAllocator.DEFAULT); b.group(bossGroup, workerGroup).channel(NioServerSocketChannel.class) .handler(new LoggingHandler(LogLevel.INFO)).childHandler(new HttpInboundInitializer(this.proxyServer)); Channel ch = b.bind(port).sync().channel(); logger.info("开启netty http服务器,监听地址和端口为 http://127.0.0.1:" + port + '/'); ch.closeFuture().sync(); } finally { bossGroup.shutdownGracefully(); workerGroup.shutdownGracefully(); } } }
[ "luobinqne@qq.com" ]
luobinqne@qq.com
50f0b4c6caed0420d5bdcbee17220a1d53bbe27c
f85937116f3dff0f30bcf143e8bb53c2be0c1ca3
/src/server/server/utility/Outputer.java
80e9a1064a3f7bd39a8ea8c75376cfd1ada9bce4
[]
no_license
andrey1pozh/Lab8
eaae1f04edab07afe005e70299090f09f2e063ed
59ec42a8b2909e3330ee6fd0c94ca9a2657e27ef
refs/heads/master
2023-05-30T14:41:24.628732
2021-06-25T21:54:37
2021-06-25T21:54:37
380,244,616
0
0
null
null
null
null
UTF-8
Java
false
false
1,123
java
package server.server.utility; /** * Class for outputting something. */ public class Outputer { /** * Prints toOut.toString() to Console. * * @param toOut Object to print */ public static void print(Object toOut) { System.out.print(toOut); } /** * Prints \n to Console. */ public static void println() { System.out.println(); } /** * Prints toOut.toString() + \n to Console. * * @param toOut Object to print */ public static void println(Object toOut) { System.out.println(toOut); } /** * Prints error: toOut.toString() to Console. * * @param toOut Error to print */ public static void printerror(Object toOut) { System.out.println("error: " + toOut); } /** * Prints formatted 2-element table to Console. * * @param element1 Left element of the row. * @param element2 Right element of the row. */ public static void printtable(Object element1, Object element2) { System.out.printf("%-37s%-1s%n", element1, element2); } }
[ "andrey1pozh@gmail.com" ]
andrey1pozh@gmail.com
8df9faf0858e7895b22feeed8d9b9b48164782d6
99319ea9880da2e7c3b7236681dc72bb4dffa977
/src/main/java/com/elytradev/marsenal/block/BlockFehuStele.java
32a184c5fa5729d299c4cd76eca7c8cfe621524c
[ "MIT" ]
permissive
Jorch72/MagicArsenal
02dfa507fdbb082998f630a395e7ae5de61f9b77
4a2f4fb389d8ae3b070417619916b3e665dfa6d6
refs/heads/master
2020-03-29T11:28:11.416587
2018-06-18T16:08:12
2018-06-18T16:08:12
149,854,144
0
0
null
null
null
null
UTF-8
Java
false
false
2,128
java
/* * MIT License * * Copyright (c) 2018 Isaac Ellingson (Falkreon) and contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.elytradev.marsenal.block; import java.util.List; import com.elytradev.marsenal.StringExtras; import com.elytradev.marsenal.tile.TileEntityFehuStele; import net.minecraft.client.util.ITooltipFlag; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; public class BlockFehuStele extends BlockAbstractStele { public BlockFehuStele() { super("fehu"); } @Override public TileEntity createNewTileEntity(World worldIn, int meta) { return new TileEntityFehuStele(); } @Override @SideOnly(Side.CLIENT) public void addInformation(ItemStack stack, World player, List<String> tooltip, ITooltipFlag advanced) { StringExtras.addInformation("info.magicarsenal.stele.fehu", "", tooltip); StringExtras.addSplitInformation("tooltip.magicarsenal.stele.fehu", "§9§o", tooltip); } }
[ "falkreon@gmail.com" ]
falkreon@gmail.com
b979afcf9477ae0d41ffa27f09aeb1b425879d35
32f38cd53372ba374c6dab6cc27af78f0a1b0190
/app/src/main/java/com/jiuyan/inimage/r.java
c33bf6414c021d1d0a1b6a7b3df44cc05c9ceaed
[]
no_license
shuixi2013/AmapCode
9ea7aefb42e0413f348f238f0721c93245f4eac6
1a3a8d4dddfcc5439df8df570000cca12b15186a
refs/heads/master
2023-06-06T23:08:57.391040
2019-08-29T04:36:02
2019-08-29T04:36:02
null
0
0
null
null
null
null
UTF-8
Java
false
false
612
java
package com.jiuyan.inimage; import android.util.Log; import com.alipay.android.hackbyte.ClassVerifier; /* compiled from: InPhotoEditActivity */ class r implements Runnable { final /* synthetic */ InPhotoEditActivity a; r(InPhotoEditActivity inPhotoEditActivity) { this.a = inPhotoEditActivity; if (Boolean.FALSE.booleanValue()) { Log.v("hackbyte ", ClassVerifier.class.toString()); } } public void run() { if (InSDKEntrance.sEditCallback != null) { InSDKEntrance.sEditCallback.onEditCancel(); } this.a.finish(); } }
[ "hubert.yang@nf-3.com" ]
hubert.yang@nf-3.com
6da8529f20cedbd46cc6d8d8cedbdfa655debb87
4aa90348abcb2119011728dc067afd501f275374
/app/src/main/java/com/tencent/qqvideo/proxy/common/VcSystemInfo.java
59b144acb1db5bc84804a4dc8dac6062fcc47db4
[]
no_license
jambestwick/HackWechat
0d4ceb2d79ccddb45004ca667e9a6a984a80f0f6
6a34899c8bfd50d19e5a5ec36a58218598172a6b
refs/heads/master
2022-01-27T12:48:43.446804
2021-12-29T10:36:30
2021-12-29T10:36:30
249,366,791
0
0
null
2020-03-23T07:48:32
2020-03-23T07:48:32
null
UTF-8
Java
false
false
24,192
java
package com.tencent.qqvideo.proxy.common; import android.content.Context; import android.content.pm.PackageManager; import android.content.pm.PackageManager.NameNotFoundException; import android.content.res.Configuration; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.net.NetworkInfo.State; import android.net.TrafficStats; import android.net.wifi.WifiInfo; import android.net.wifi.WifiManager; import android.os.Build.VERSION; import android.provider.Settings.System; import android.telephony.TelephonyManager; import android.text.TextUtils; import java.io.BufferedReader; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.io.PrintStream; import java.io.RandomAccessFile; public class VcSystemInfo { public static final int CHIP_ARM_LATER = 50; public static final int CHIP_ARM_V5 = 3; public static final int CHIP_ARM_V6 = 4; public static final int CHIP_ARM_V7_NENO = 6; public static final int CHIP_ARM_V7_NO_NENO = 5; public static final int CHIP_MIPS = 2; public static final int CHIP_UNKNOW = 0; public static final int CHIP_X86 = 1; public static final int NETWORK_AP_3G = 2; public static final int NETWORK_AP_GPRS = 3; public static final int NETWORK_AP_LINE = 4; public static final int NETWORK_AP_WIFI = 1; public static final int NETWORK_CLASS_2_G = 2; public static final int NETWORK_CLASS_3_G = 3; public static final int NETWORK_CLASS_4_G = 4; public static final int NETWORK_CLASS_UNKNOWN = 0; public static final int NETWORK_NONE = 0; private static final int NETWORK_TYPE_1xRTT = 7; private static final int NETWORK_TYPE_CDMA = 4; private static final int NETWORK_TYPE_EDGE = 2; private static final int NETWORK_TYPE_EHRPD = 14; private static final int NETWORK_TYPE_EVDO_0 = 5; private static final int NETWORK_TYPE_EVDO_A = 6; private static final int NETWORK_TYPE_EVDO_B = 12; private static final int NETWORK_TYPE_GPRS = 1; private static final int NETWORK_TYPE_HSDPA = 8; private static final int NETWORK_TYPE_HSPA = 10; private static final int NETWORK_TYPE_HSPAP = 15; private static final int NETWORK_TYPE_HSUPA = 9; private static final int NETWORK_TYPE_IDEN = 11; private static final int NETWORK_TYPE_LTE = 13; private static final int NETWORK_TYPE_UMTS = 3; public static final int PLAYER_LEVEL_1 = 1; public static final int PLAYER_LEVEL_11 = 11; public static final int PLAYER_LEVEL_16 = 16; public static final int PLAYER_LEVEL_21 = 21; public static final int PLAYER_LEVEL_26 = 26; public static final int PLAYER_LEVEL_6 = 6; private static final String TAG = "VcSystemInfo"; public static final int TYPE_CMNET = 2; public static final int TYPE_CMWAP = 3; public static final int TYPE_NONE = 0; public static final int TYPE_OTHER = 4; public static final int TYPE_WIFI = 1; private static int appVersionCode = 0; private static String appVersionName; private static String deviceID = ""; private static String deviceIMEI; private static String deviceIMSI; private static String deviceMacAddr; public static int mCpuArchitecture = 0; public static String mCpuHardware = ""; private static int mDeviceLevel = 0; public static String mFeature = ""; private static int mMCC = 0; private static int mMNC = 0; public static String mProcessorName = "N/A"; public static int mScreenHeight; public static int mScreenWidth; public int mCoreNumber = 1; public long mCurrCpuFreq = 0; private long mLastCpu; private long mLastIdle; public long mMaxCpuFreq = 0; public int mdispHeight; public int mdispWidth; public VcSystemInfo() { mScreenWidth = 320; mScreenHeight = 480; this.mdispWidth = 320; this.mdispHeight = 240; this.mLastCpu = 0; this.mLastIdle = 0; } public static String getDeviceIMEI(Context context) { if (!TextUtils.isEmpty(deviceIMEI)) { return deviceIMEI; } if (context == null) { return ""; } try { TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService("phone"); if (telephonyManager != null) { String deviceId = telephonyManager.getDeviceId(); deviceIMEI = deviceId; if (deviceId == null) { deviceIMEI = ""; } return deviceIMEI; } } catch (Throwable th) { } return ""; } public static String getDeviceIMSI(Context context) { if (!TextUtils.isEmpty(deviceIMSI)) { return deviceIMSI; } if (context == null) { return ""; } try { TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService("phone"); if (telephonyManager != null) { String subscriberId = telephonyManager.getSubscriberId(); deviceIMSI = subscriberId; if (subscriberId == null) { deviceIMSI = ""; } return deviceIMSI; } } catch (Throwable th) { } return ""; } public static String getDeviceID(Context context) { if (!TextUtils.isEmpty(deviceID)) { return deviceID; } if (context == null) { return ""; } try { String string = System.getString(context.getContentResolver(), "android_id"); deviceID = string; if (string == null) { deviceID = ""; } } catch (Throwable th) { deviceID = ""; } return deviceID; } public static String getDeviceMacAddr(Context context) { if (!TextUtils.isEmpty(deviceMacAddr)) { return deviceMacAddr; } if (context == null) { return ""; } try { WifiManager wifiManager = (WifiManager) context.getSystemService("wifi"); if (wifiManager != null) { WifiInfo connectionInfo = wifiManager.getConnectionInfo(); if (connectionInfo != null) { String macAddress = connectionInfo.getMacAddress(); deviceMacAddr = macAddress; if (macAddress == null) { deviceMacAddr = ""; } return deviceMacAddr; } } } catch (Throwable th) { } return ""; } public static String getOsVersion() { return VERSION.RELEASE; } public static int getOsVerIntFromVerStr() { String osVersion = getOsVersion(); int osVerInt = getOsVerInt(); if (osVersion.length() < 3) { return osVerInt; } try { int parseInt = Integer.parseInt(osVersion.substring(0, 1)); int parseInt2 = Integer.parseInt(osVersion.substring(2, 3)); if (parseInt == 2) { if (parseInt2 == 3) { return 9; } return osVerInt; } else if (parseInt != 4) { return osVerInt; } else { switch (parseInt2) { case 0: return 14; case 1: return 16; case 2: return 17; case 3: return 18; case 4: return 19; default: return osVerInt; } } } catch (Exception e) { return osVerInt; } } public static int getOsVerInt() { switch (VERSION.SDK_INT) { case 9: case 10: return 9; case 14: case 15: return 14; case 16: return 16; case 17: return 17; case 18: return 18; case 19: case 20: return 19; default: return 0; } } public static String getRomInfo() { return VERSION.INCREMENTAL; } public static int GetNetAP(Context context) { if (context == null) { return 0; } ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService("connectivity"); if (connectivityManager == null) { return 0; } NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo(); if (activeNetworkInfo == null) { return 0; } if ("wifi".equalsIgnoreCase(activeNetworkInfo.getTypeName())) { return 1; } return 2; } public static String getAppName(Context context, String str) { if (context == null) { return ""; } try { PackageManager packageManager = context.getPackageManager(); return packageManager.getApplicationLabel(packageManager.getApplicationInfo(str, 0)).toString(); } catch (Throwable th) { return ""; } } public static String getAppVersionName(Context context) { if (!TextUtils.isEmpty(appVersionName)) { return appVersionName; } String str = ""; if (context == null) { return str; } try { String str2 = context.getPackageManager().getPackageInfo(context.getPackageName(), 0).versionName; appVersionName = str2; if (str2 != null) { return str2; } try { return ""; } catch (Throwable th) { return str2; } } catch (Throwable th2) { return str; } } public static int getAppVersionCode(Context context, String str) { if (appVersionCode != 0) { return appVersionCode; } if (context == null) { return 0; } try { int i = context.getPackageManager().getPackageInfo(str, 0).versionCode; appVersionCode = i; return i; } catch (Throwable th) { return 0; } } public static boolean isNetworkAvailable(Context context) { if (context == null) { return false; } ConnectivityManager connectivityManager = (ConnectivityManager) context.getApplicationContext().getSystemService("connectivity"); if (connectivityManager == null) { return false; } NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo(); if (activeNetworkInfo == null || !activeNetworkInfo.isAvailable()) { return false; } return activeNetworkInfo.getState() == State.CONNECTED; } public static int getNetWorkType(Context context) { if (context == null) { return 0; } int i; try { ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService("connectivity"); if (connectivityManager != null) { NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo(); if (activeNetworkInfo != null) { switch (activeNetworkInfo.getType()) { case 0: i = 2; try { if (!(activeNetworkInfo.getExtraInfo() == null || "cmnet".equalsIgnoreCase(activeNetworkInfo.getExtraInfo()))) { i = 3; break; } } catch (Exception e) { break; } case 1: i = 1; break; default: i = 4; break; } return i; } } i = 0; } catch (Exception e2) { i = 0; } return i; } public static int getWifiNetStrength(Context context) { if (context == null) { return 0; } try { WifiInfo connectionInfo = ((WifiManager) context.getSystemService("wifi")).getConnectionInfo(); if (connectionInfo == null) { return 0; } int rssi = connectionInfo.getRssi(); if (VERSION.SDK_INT >= 14) { return WifiManager.calculateSignalLevel(connectionInfo.getRssi(), 101); } if (rssi <= -100) { return 0; } if (rssi >= -55) { return 100; } return (int) ((((float) (rssi + 100)) * 100.0f) / 45.0f); } catch (Throwable th) { return 0; } } public static long getRxBytesFromNetwork(Context context) { if (context == null) { return -1; } try { context.getClassLoader().loadClass("android.net.TrafficStats"); if (-1 == -1) { return TrafficStats.getTotalRxBytes(); } return -1; } catch (ClassNotFoundException e) { return 0; } catch (Throwable th) { return 0; } } public static long getAppInstallTime(Context context) { long j = 0; if (context != null) { try { j = new File(context.getPackageManager().getApplicationInfo(context.getPackageName(), 0).sourceDir).lastModified() / 1000; } catch (NameNotFoundException e) { } catch (Throwable th) { } } return j; } public static int getScreenWidth(Context context) { if (context == null) { return 0; } if (mScreenWidth != 0) { return mScreenWidth; } try { mScreenWidth = context.getResources().getDisplayMetrics().widthPixels; } catch (Throwable th) { } return mScreenWidth; } public static int getScreenHeight(Context context) { if (context == null) { return 0; } if (mScreenHeight != 0) { return mScreenHeight; } try { mScreenHeight = context.getResources().getDisplayMetrics().heightPixels; } catch (Throwable th) { } return mScreenHeight; } public static boolean isNetworkTypeMobile(Context context) { if (context == null) { return true; } ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService("connectivity"); if (connectivityManager != null) { NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo(); if (activeNetworkInfo != null) { switch (activeNetworkInfo.getType()) { case 0: case 2: case 3: case 4: case 5: return true; default: return false; } } } return true; } public static int getMarketId(Context context) { InputStream open; BufferedReader bufferedReader; Throwable th; InputStream inputStream = null; int i = -1; if (context != null) { try { open = context.getApplicationContext().getAssets().open("channel.ini"); try { bufferedReader = new BufferedReader(new InputStreamReader(open)); try { String readLine = bufferedReader.readLine(); if (!TextUtils.isEmpty(readLine) && readLine.contains("CHANNEL=")) { Object substring = readLine.substring(readLine.indexOf("=") + 1); if (!TextUtils.isEmpty(substring)) { i = Integer.parseInt(substring.trim()); } } if (open != null) { try { open.close(); } catch (Throwable th2) { } } bufferedReader.close(); } catch (Throwable th3) { th = th3; if (open != null) { try { open.close(); } catch (Throwable th4) { throw th; } } if (bufferedReader != null) { bufferedReader.close(); } throw th; } } catch (Throwable th5) { th = th5; bufferedReader = null; if (open != null) { open.close(); } if (bufferedReader != null) { bufferedReader.close(); } throw th; } } catch (Throwable th6) { th = th6; bufferedReader = null; open = null; if (open != null) { open.close(); } if (bufferedReader != null) { bufferedReader.close(); } throw th; } } return i; } public static int getMCC(Context context) { if (mMCC != 0) { return mMCC; } if (context == null) { return 0; } try { Configuration configuration = context.getResources().getConfiguration(); if (configuration != null) { mMCC = configuration.mcc; } return mMCC; } catch (Throwable th) { return 0; } } public static int getMNC(Context context) { if (mMNC != 0) { return mMNC; } if (context == null) { return 0; } try { Configuration configuration = context.getResources().getConfiguration(); if (configuration != null) { mMNC = configuration.mnc; } return mMNC; } catch (Throwable th) { return 0; } } public static String PrintStack(Throwable th) { if (th == null) { return null; } OutputStream byteArrayOutputStream = new ByteArrayOutputStream(); try { th.printStackTrace(new PrintStream(byteArrayOutputStream)); byteArrayOutputStream.close(); } catch (IOException e) { } catch (Throwable th2) { byteArrayOutputStream.close(); } return byteArrayOutputStream.toString(); } public static String readSystemStat() { RandomAccessFile randomAccessFile; Throwable th; String str = null; try { randomAccessFile = new RandomAccessFile("/proc/stat", "r"); try { str = randomAccessFile.readLine(); try { randomAccessFile.close(); } catch (Throwable th2) { } } catch (Throwable th3) { th = th3; if (randomAccessFile != null) { try { randomAccessFile.close(); } catch (Throwable th4) { } } throw th; } } catch (Throwable th5) { Throwable th6 = th5; randomAccessFile = str; th = th6; if (randomAccessFile != null) { randomAccessFile.close(); } throw th; } return str; } public static int getSystemCpuUsage(String str, String str2) { float f = -1.0f; if (TextUtils.isEmpty(str) || TextUtils.isEmpty(str2)) { return -1; } try { String[] split = str.trim().split("\\s+"); long systemIdleTime = getSystemIdleTime(split); long systemUptime = getSystemUptime(split); split = str2.trim().split("\\s+"); long systemIdleTime2 = getSystemIdleTime(split); long systemUptime2 = getSystemUptime(split); if (systemIdleTime >= 0 && systemUptime >= 0 && systemIdleTime2 >= 0 && systemUptime2 >= 0 && systemUptime2 + systemIdleTime2 > systemUptime + systemIdleTime && systemUptime2 >= systemUptime) { f = (((float) (systemUptime2 - systemUptime)) / ((float) ((systemIdleTime2 + systemUptime2) - (systemIdleTime + systemUptime)))) * 100.0f; } } catch (Throwable th) { } return (int) f; } public static long getSystemUptime(String[] strArr) { long j = 0; for (int i = 1; i < strArr.length; i++) { if (4 != i) { try { j += Long.parseLong(strArr[i]); } catch (Throwable th) { return -1; } } } return j; } public static long getSystemIdleTime(String[] strArr) { try { return Long.parseLong(strArr[4]); } catch (Throwable th) { return -1; } } public static int getNetworkClass(Context context) { if (context == null) { return 0; } int networkClass; ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService("connectivity"); if (connectivityManager != null) { NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo(); if (activeNetworkInfo != null && activeNetworkInfo.isConnected()) { switch (activeNetworkInfo.getType()) { case 0: networkClass = getNetworkClass(activeNetworkInfo.getSubtype()); break; default: networkClass = 0; break; } return networkClass; } } networkClass = 0; return networkClass; } private static int getNetworkClass(int i) { switch (i) { case 1: case 2: case 4: case 7: case 11: return 2; case 3: case 5: case 6: case 8: case 9: case 10: case 12: case 14: case 15: return 3; case 13: return 4; default: return 0; } } public static String getWiFiMacAddress(Context context) { try { return ((WifiManager) context.getSystemService("wifi")).getConnectionInfo().getMacAddress(); } catch (Throwable th) { return ""; } } }
[ "malin.myemail@163.com" ]
malin.myemail@163.com
7352a73af2cc134f1ebfcc8e47ad8da7e52668ab
4dfc0d04a2b744f17b6991ac3847fd32c28555df
/src/main/java/com/serotonin/m2m2/web/dwr/util/DwrPermission.java
600a265007e454abd15980c1c9d538fa76b54ca9
[]
no_license
neckhyg/scada_core
aa9b8bd57bf903f73d041a06ce9d99f2ffd771e7
d3f255d1add8584e6e86d7132a7578e45d0e33d3
refs/heads/master
2021-01-10T19:24:00.701390
2013-10-20T05:04:54
2013-10-20T05:04:54
13,037,668
1
1
null
null
null
null
UTF-8
Java
false
false
416
java
package com.serotonin.m2m2.web.dwr.util; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface DwrPermission { boolean admin() default false; boolean user() default false; boolean anonymous() default false; }
[ "wangt@eazytec.com" ]
wangt@eazytec.com
a98e6429898f5f38bcbe1745986024c8f75051b0
9bcec68dd980d78dd72cd585cda346135fecdd16
/src/main/java/com/iheart/challenge/response/NotFound.java
ab44383b67e813d02f70588c837b9a62fc843a34
[]
no_license
vnkallagunta/iheart
9880f9d363562ad162ba6e1e120cd0ff78d5e395
d1544c77ef561447b47a5e4a0f0df543365a7a27
refs/heads/master
2020-03-25T07:45:21.134855
2018-08-08T17:07:46
2018-08-08T17:07:46
143,580,254
0
0
null
null
null
null
UTF-8
Java
false
false
148
java
package com.iheart.challenge.response; public class NotFound<T> extends Response<T>{ public NotFound(final T value) { this.message= value; } }
[ "venkatank@VENKATAs-iMac.local" ]
venkatank@VENKATAs-iMac.local
51b5214d413ac6de5beaf9449684e9aa559042b9
be6271008f221ff2841c14c81861536c0cffd6c9
/LabInfoSysMaven/src/Smoke/NewInstance_BulkEntryTemplate_UptoDispatch.java
a7095267e091bbd1cd36943b819e32ca6bffde12
[]
no_license
kraj2504/mav2
3c5b998e9132d5910028b158de4bc0298e760720
3dff17ae45249116fe30fe21ad95a2e96e021a62
refs/heads/master
2020-03-26T13:37:56.844779
2018-08-16T07:10:44
2018-08-16T07:10:44
144,948,969
0
0
null
null
null
null
UTF-8
Java
false
false
9,749
java
package Smoke; import org.testng.Assert; import org.testng.ITestResult; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeTest; import org.testng.annotations.Test; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.Keys; import java.util.List; import org.apache.log4j.xml.DOMConfigurator; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.interactions.Actions; import org.openqa.selenium.support.PageFactory; import pageObjects.PO_BulkEntry; import pageObjects.PO_BulkEntryROAR; import pageObjects.PO_BulkEntryTemplate; import pageObjects.PO_DueClearance; import pageObjects.PO_Registration; import pageObjects.PO_Login; import pageObjects.PO_ManageApproval; import pageObjects.PO_ManageDispatch; import pageObjects.PO_ManageSample; import pageObjects.PO_MasterControl; import pageObjects.PO_PatientList; import pageObjects.PO_ROARApproval; import pageObjects.PO_ResultValidate; import pageObjects.PO_SampleScannerAck; import pageObjects.PO_TemplateApproval; import pageObjects.PO_WorkList; import utility.Constant; import utility.ExcelUtils; import utility.Log; import utility.Utils; public class NewInstance_BulkEntryTemplate_UptoDispatch { private static WebDriver driver = null; private String sTestCaseName; private int iTestCaseRow; @BeforeTest public void beforeMethod() throws Exception { DOMConfigurator.configure(Constant.log4jXMLpath); sTestCaseName = Utils.getTestCaseName(this.toString()); Log.startTestCase(sTestCaseName); ExcelUtils.openExcelFile(Constant.Path_TestData + Constant.File_TestData_NewInstance,"Sheet1"); iTestCaseRow = ExcelUtils.getRowNumber(sTestCaseName,Constant.col_TestCaseName); String sURL = ExcelUtils.getCellData(iTestCaseRow, Constant.col_URL); driver = Utils.OpenBrowser(iTestCaseRow, sURL); } @Test(priority = 1) public void newInstance_BulkEntryROAR_PreliminaryAndFinal_UptoDispatch_Growth_TwoAnalyteFlow() throws Exception { try { // Instantiate PageObjects class PO_MasterControl MasterControlObject = PageFactory.initElements(driver,PO_MasterControl.class); PO_Login loginPageObject = PageFactory.initElements(driver,PO_Login.class); PO_Registration generateBillPageObject = PageFactory.initElements(driver,PO_Registration.class); PO_PatientList patientListPageObjects = PageFactory.initElements(driver,PO_PatientList.class); PO_ManageSample manageSamplePageObjects = PageFactory.initElements(driver,PO_ManageSample.class); PO_SampleScannerAck sampleScannerAck = PageFactory.initElements(driver,PO_SampleScannerAck.class); PO_BulkEntryTemplate bulkEntryTemplate = PageFactory.initElements(driver,PO_BulkEntryTemplate.class); PO_TemplateApproval templateApproval = PageFactory.initElements(driver,PO_TemplateApproval.class); PO_ROARApproval ROARApproval = PageFactory.initElements(driver,PO_ROARApproval.class); PO_BulkEntry bulkEntryObj = PageFactory.initElements(driver,PO_BulkEntry.class); PO_ResultValidate resultValidate = PageFactory.initElements(driver,PO_ResultValidate.class); PO_ManageApproval ManageApprovalObj = PageFactory.initElements(driver,PO_ManageApproval.class); PO_DueClearance dueClearance = PageFactory.initElements(driver,PO_DueClearance.class); PO_ManageDispatch manageDispatchobj = PageFactory.initElements(driver,PO_ManageDispatch.class); // Fetching Data from excel file String sUserName = ExcelUtils.getCellData(iTestCaseRow, Constant.col_UserName); String sPassword = ExcelUtils.getCellData(iTestCaseRow, Constant.col_Password); String sTitle = ExcelUtils.getCellData(iTestCaseRow, Constant.col_Title); String sFirstName = Utils.getRandomName(25); String sGender = ExcelUtils.getCellData(iTestCaseRow, Constant.col_Gender); String sAge = ExcelUtils.getCellData(iTestCaseRow, Constant.col_Age); String sAgeType = ExcelUtils.getCellData(iTestCaseRow, Constant.col_AgeType); String sMobileNo = Utils.getRandomNumber(10); String sMailID = ExcelUtils.getCellData(iTestCaseRow, Constant.col_EmailID); String sServiceName1 = ExcelUtils.getCellData(iTestCaseRow, Constant.col_ServiceName1); String sServiceName2 = ExcelUtils.getCellData(iTestCaseRow, Constant.col_ServiceName2); String sSampleType = ExcelUtils.getCellData(iTestCaseRow, Constant.col_SampleType); //User Login loginPageObject.login(sUserName, sPassword); Assert.assertEquals("Registration", driver.getTitle(),"Login failed"); //Register patient and generate bill generateBillPageObject.selectTitle(sTitle); generateBillPageObject.EnterFirstName(sFirstName); generateBillPageObject.selectGender(sGender); generateBillPageObject.enterAge(sAge); generateBillPageObject.selectAgeType(sAgeType); generateBillPageObject.EnterMobileNumber(sMobileNo); generateBillPageObject.EnterMailID(sMailID); generateBillPageObject.EnterServiceName(1,sServiceName1); generateBillPageObject.EnterServiceName(2,sServiceName2); String amount = generateBillPageObject.getDueAmount(); generateBillPageObject.EnterCashAmount(amount); generateBillPageObject.ClickGenerateBill(); Assert.assertEquals(MasterControlObject.getAlertMsg(),"Saved successfully","***Registration --> Alert msg not displayed as expected.***"); MasterControlObject.acceptAlert(); MasterControlObject.gotoPage("Patient List"); patientListPageObjects.searchRecord(sFirstName); Assert.assertTrue(patientListPageObjects.getStatus().equalsIgnoreCase("Registered"),"***Patient not registered***"); //Collecting sample MasterControlObject.changeRole(Constant.PHLEBOTOMY); manageSamplePageObjects.clickPatientDetailsTable(); manageSamplePageObjects.searchRecord(sFirstName); manageSamplePageObjects.selectPatient(); manageSamplePageObjects.clickCollectSample(); String msg = MasterControlObject.getAlertMsg(); Assert.assertEquals("Saved Successfully", msg,"***Collecting sample --> Alert msg not displayed as expected.***"); MasterControlObject.acceptAlert(); MasterControlObject.gotoPage("Patient List"); patientListPageObjects.searchRecord(sFirstName); patientListPageObjects.verifyingStatusBarCode("Sample Collected"); // List<String> barcodes = patientListPageObjects.getAllBarCode(); //Bulk Entry Template entry MasterControlObject.changeRole(Constant.TECHNICIAN); MasterControlObject.gotoPage("Bulk Entry Template"); bulkEntryTemplate.searchRecord(sFirstName); bulkEntryTemplate.selectService(); bulkEntryTemplate.selectTemplate("Select"); bulkEntryTemplate.enterResultText(); bulkEntryTemplate.clickSave(); Assert.assertEquals(MasterControlObject.getAlertMsg(),"Results Entered Successfully","***Bulk Entry Template --> Alert msg not displayed as expected.***"); MasterControlObject.acceptAlert(); MasterControlObject.gotoPage("Patient List"); patientListPageObjects.searchRecord(sFirstName); patientListPageObjects.verifyingStatusBarCode("Result Entered", sServiceName1); //Approve a record in Manage Approval MasterControlObject.changeRole(Constant.AUTHORIZATION); MasterControlObject.gotoPage("Template Approval"); templateApproval.searchRecord(sFirstName); templateApproval.clickSave(); Assert.assertEquals(MasterControlObject.getAlertMsg(),"Results Approved Successfully","***Template approval --> Alert not displayed as expected after approving results***"); MasterControlObject.acceptAlert(); MasterControlObject.gotoPage("Patient List"); patientListPageObjects.searchRecord(sFirstName); patientListPageObjects.verifyingStatusBarCode("Approved", sServiceName1); //EMailing Final report MasterControlObject.changeRole(Constant.DISPATCH); manageDispatchobj.searchRecord(sFirstName); manageDispatchobj.selectPatient(); manageDispatchobj.clickEmail(); Assert.assertEquals(MasterControlObject.getAlertMsg(), "Dispatch List Emailed","***Alert msg not displayed as expected after click email***"); MasterControlObject.acceptAlert(); manageDispatchobj.clickRefresh(); manageDispatchobj.selectFilter("Show Emailed Report"); manageDispatchobj.searchRecord(sFirstName); Assert.assertEquals(Integer.toString(manageDispatchobj.verifyPatientName(sFirstName)),"1","Patient details not showing in EmailedReport"); //Dispatching the record manageDispatchobj.clickRefresh(); manageDispatchobj.searchRecord(sFirstName); manageDispatchobj.selectPatient(); manageDispatchobj.clickDispatch(); Assert.assertEquals(MasterControlObject.getAlertMsg(), "Dispatch List Printed","***Alert msg not displayed as expected after click dispatch***"); MasterControlObject.acceptAlert(); manageDispatchobj.clickRefresh(); manageDispatchobj.selectFilter("Show Printed Report"); manageDispatchobj.searchRecord(sFirstName); Assert.assertEquals(Integer.toString(manageDispatchobj.verifyPatientName(sFirstName)),"1","Patient details not showing in PrintedReport"); } catch(Exception e) { ExcelUtils.setCellData("Fail", iTestCaseRow, Constant.col_Result); Utils.takeScreenshot(driver, sTestCaseName); Log.error(e.getMessage()); throw (e); } } @AfterMethod public void updateResult(ITestResult result) throws Exception { if(result.getStatus() == ITestResult.SUCCESS) { ExcelUtils.setCellData("Pass", iTestCaseRow, Constant.col_Result); Log.info("Test Passed"); } else if(result.getStatus() == ITestResult.FAILURE) { ExcelUtils.setCellData("Fail", iTestCaseRow, Constant.col_Result); Log.info("Test Failed"); Utils.takeScreenshot(driver, sTestCaseName); } Log.endTestCase(sTestCaseName); // driver.quit(); } }
[ "kraj2504@gmail.com" ]
kraj2504@gmail.com
06e512c8249074502aebad7210443625a1caeb0c
db1af5dfee5af1f282a530c9268ed64f31a060a4
/src/cl/bci/poc/Inicio.java
9bea8f67861e3cee0fcc296672ffeb73ce1f4ace
[]
no_license
ricardoTreumun/pocEclipse
08ab7042409f7e76e57e63b89b0297fa1aa32053
9518de4255eeb1dec4eb5fde79c0c2836cd6dae9
refs/heads/master
2021-01-23T00:45:35.321624
2017-05-30T15:06:41
2017-05-30T15:06:41
92,843,249
0
0
null
null
null
null
UTF-8
Java
false
false
240
java
package cl.bci.poc; public class Inicio { public static void main(String[] args) { System.out.println("HolaMundo"); System.out.println("ESGFDEGFD"); System.out.println("Este es mi segundo cambio"); } }
[ "ricardo.treumun@2brains.cl" ]
ricardo.treumun@2brains.cl
8db2d9c5efdb71d140bc47d71294f65c48149cdd
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/23/23_d0ae5e495186a7e1317c4fdc615b355b05916759/CategoryListAdapter/23_d0ae5e495186a7e1317c4fdc615b355b05916759_CategoryListAdapter_t.java
1123fdbd3b5f5a664f2ad8dce02d9e54b1624b0e
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
1,601
java
package com.restaurant.adapter; import java.util.ArrayList; import android.app.Activity; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.ImageView; import android.widget.TextView; import com.restaurant.collection.R; import com.restaurant.collection.entity.Area; import com.restaurant.collection.entity.Category; public class CategoryListAdapter extends BaseAdapter { private final Activity activity; private final ArrayList<Category> data; private static LayoutInflater inflater = null; public CategoryListAdapter(Activity a, ArrayList<Category> cs) { activity = a; data = cs; inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE); } public int getCount() { return data.size(); } public Object getItem(int position) { return position; } public long getItemId(int position) { return position; } public View getView(int position, View convertView, ViewGroup parent) { View vi = convertView; if (convertView == null) vi = inflater.inflate(R.layout.item_listview_category, null); TextView text = (TextView) vi.findViewById(R.id.text_list); text.setText(data.get(position).getName()); // vi.setBackground(activity.getResources().getDrawable(R.drawable.restaurant_list_selector)); return vi; } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
bddb16291fc2c1534a16ab26ca69e1db6222b595
e80c5110e33a440e1827850031651efa602db435
/app/src/main/java/com/example/zizoj/instaclone/Utils/ViewPostFragment.java
f160df7babee0d76f6ef0e67671b15989ccab3f4
[]
no_license
ezzatthrwat/instaclone
5549afeecb04e890727d570972a2fe57e139da75
9df91ada680f4650ca65a5f2abcfffa9a682f47a
refs/heads/master
2020-04-03T18:16:12.362449
2018-11-12T20:08:30
2018-11-12T20:08:30
155,476,583
0
0
null
null
null
null
UTF-8
Java
false
false
23,391
java
package com.example.zizoj.instaclone.Utils; import android.content.Context; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.util.Log; import android.view.GestureDetector; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuItem; import android.view.MotionEvent; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import com.example.zizoj.instaclone.Models.Comment; import com.example.zizoj.instaclone.Models.Like; import com.example.zizoj.instaclone.Models.Photo; import com.example.zizoj.instaclone.Models.Users; import com.example.zizoj.instaclone.Models.UsersAccountSettings; import com.example.zizoj.instaclone.R; import com.google.firebase.auth.FirebaseAuth; import com.google.firebase.auth.FirebaseUser; import com.google.firebase.database.DataSnapshot; import com.google.firebase.database.DatabaseError; import com.google.firebase.database.DatabaseReference; import com.google.firebase.database.FirebaseDatabase; import com.google.firebase.database.Query; import com.google.firebase.database.ValueEventListener; import com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.TimeZone; public class ViewPostFragment extends Fragment { private static final String TAG = "ViewPostFragment"; public interface OnCommentThreadSelectedListener{ void onCommentThreadSelectedListener(Photo photo); } OnCommentThreadSelectedListener mOnCommentThreadSelectedListener; public ViewPostFragment(){ super(); setArguments(new Bundle()); } //widgets private SqaureImageView mPostImage; private BottomNavigationViewEx bottomNavigationView; private TextView mBackLabel, mCaption, mUsername, mTimestamp, mLikes , mComments; private ImageView mBackArrow, mEllipses, mHeartRed, mHeartWhite, mProfileImage , mComment; //firebase private FirebaseAuth mAuth; private FirebaseAuth.AuthStateListener mAuthListener; private FirebaseDatabase mFirebaseDatabase; private DatabaseReference myRef; private FirebaseMethods mFirebaseMethods; //vars private Photo mPhoto; private int mActivityNumber = 0; private String photoUsername = ""; private String profilePhotoUrl = ""; private UsersAccountSettings mUserAccountSettings; private GestureDetector mGestureDetector; Heart mHeart; private boolean mLikedByCurrentUser ; private StringBuilder mUsers ; private String mLikesString = ""; private Users mCurrentUser; @Nullable @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_view_post, container, false); mPostImage = (SqaureImageView) view.findViewById(R.id.post_image); bottomNavigationView = (BottomNavigationViewEx) view.findViewById(R.id.bottomnavigation); mBackArrow = (ImageView) view.findViewById(R.id.backArrow); mBackLabel = (TextView) view.findViewById(R.id.tvBackLabel); mCaption = (TextView) view.findViewById(R.id.image_caption); mUsername = (TextView) view.findViewById(R.id.username); mTimestamp = (TextView) view.findViewById(R.id.image_time_posted); mEllipses = (ImageView) view.findViewById(R.id.ivEllipses); mHeartRed = (ImageView) view.findViewById(R.id.image_heart_red); mHeartWhite = (ImageView) view.findViewById(R.id.image_heart); mProfileImage = (ImageView) view.findViewById(R.id.profile_photo_post); mLikes = (TextView) view.findViewById(R.id.image_likes); mComment = (ImageView) view.findViewById(R.id.speech_bubble); mComments = (TextView) view.findViewById(R.id.image_comments_link); mHeart = new Heart(mHeartWhite, mHeartRed); mGestureDetector = new GestureDetector(getActivity(), new GestureListener()); setupFirebaseAuth(); setupBottomNavigationView(); return view; } private void init(){ try{ UniversalImageLoader.setImage(getPhotoFromBundle().getImage_path(), mPostImage, null, ""); mActivityNumber = getActivityNumFromBundle(); String photo_id = getPhotoFromBundle().getPhoto_id(); Query query = FirebaseDatabase.getInstance().getReference() .child(getString(R.string.dbname_photos)) .orderByChild(getString(R.string.field_photo_id)) .equalTo(photo_id); query.addListenerForSingleValueEvent(new ValueEventListener() { @Override public void onDataChange(DataSnapshot dataSnapshot) { for ( DataSnapshot singleSnapshot : dataSnapshot.getChildren()){ Photo newPhoto = new Photo(); Map<String, Object> objectMap = (HashMap<String, Object>) singleSnapshot.getValue(); newPhoto.setCaption(objectMap.get(getString(R.string.field_caption)).toString()); newPhoto.setTags(objectMap.get(getString(R.string.field_tags)).toString()); newPhoto.setPhoto_id(objectMap.get(getString(R.string.field_photo_id)).toString()); newPhoto.setUser_id(objectMap.get(getString(R.string.field_user_id)).toString()); newPhoto.setDate_created(objectMap.get(getString(R.string.field_date_created)).toString()); newPhoto.setImage_path(objectMap.get(getString(R.string.field_image_path)).toString()); List<Comment> commentsList = new ArrayList<Comment>(); for (DataSnapshot dSnapshot : singleSnapshot .child(getString(R.string.field_comments)).getChildren()){ Comment comment = new Comment(); comment.setUser_id(dSnapshot.getValue(Comment.class).getUser_id()); comment.setComment(dSnapshot.getValue(Comment.class).getComment()); comment.setDate_created(dSnapshot.getValue(Comment.class).getDate_created()); commentsList.add(comment); } newPhoto.setComments(commentsList); mPhoto = newPhoto; getPhotoDetails(); getCurrentUser(); // getLikesString(); } } @Override public void onCancelled(DatabaseError databaseError) { Log.d(TAG, "onCancelled: query cancelled."); } }); }catch (NullPointerException e){ Log.e(TAG, "onCreateView: NullPointerException: " + e.getMessage() ); } } @Override public void onResume() { super.onResume(); if (isAdded()){ init(); } } private void getCurrentUser(){ DatabaseReference reference = FirebaseDatabase.getInstance().getReference(); Query query = reference .child(getString(R.string.dbname_users)) .orderByChild(getString(R.string.field_user_id)) .equalTo(FirebaseAuth.getInstance().getCurrentUser().getUid()); query.addListenerForSingleValueEvent(new ValueEventListener() { @Override public void onDataChange(DataSnapshot dataSnapshot) { for ( DataSnapshot singleSnapshot : dataSnapshot.getChildren()){ mCurrentUser = singleSnapshot.getValue(Users.class); } getLikesString(); } @Override public void onCancelled(DatabaseError databaseError) { Log.d(TAG, "onCancelled: query cancelled."); } }); } public class GestureListener extends GestureDetector.SimpleOnGestureListener{ @Override public boolean onDown(MotionEvent e) { return true; } @Override public boolean onDoubleTap(MotionEvent e) { Log.d(TAG, "onDoubleTap: double tap detected."); DatabaseReference reference = FirebaseDatabase.getInstance().getReference(); Query query = reference .child(getString(R.string.dbname_photos)) .child(mPhoto.getPhoto_id()) .child(getString(R.string.field_likes)); query.addListenerForSingleValueEvent(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot dataSnapshot) { for (DataSnapshot singleSnapshot : dataSnapshot.getChildren()){ String keyID = singleSnapshot.getKey(); //case1: Then user already liked the photo if(mLikedByCurrentUser && singleSnapshot.getValue(Like.class).getUser_id() .equals(FirebaseAuth.getInstance().getCurrentUser().getUid())){ myRef.child(getString(R.string.dbname_photos)) .child(mPhoto.getPhoto_id()) .child(getString(R.string.field_likes)) .child(keyID) .removeValue(); /// myRef.child(getString(R.string.dbname_user_photos)) .child(FirebaseAuth.getInstance().getCurrentUser().getUid()) .child(mPhoto.getPhoto_id()) .child(getString(R.string.field_likes)) .child(keyID) .removeValue(); mHeart.toggleLike(); getLikesString(); } //case2: The user has not liked the photo else if(!mLikedByCurrentUser){ //add new like addNewLike(); break; } } if(!dataSnapshot.exists()){ //add new like addNewLike(); } } @Override public void onCancelled(@NonNull DatabaseError databaseError) { } }); return true; } } private void addNewLike(){ Log.d(TAG, "addNewLike: adding new like"); String newLikeID = myRef.push().getKey(); Like like = new Like(); like.setUser_id(FirebaseAuth.getInstance().getCurrentUser().getUid()); myRef.child(getString(R.string.dbname_photos)) .child(mPhoto.getPhoto_id()) .child(getString(R.string.field_likes)) .child(newLikeID) .setValue(like); myRef.child(getString(R.string.dbname_user_photos)) .child(mPhoto.getUser_id()) .child(mPhoto.getPhoto_id()) .child(getString(R.string.field_likes)) .child(newLikeID) .setValue(like); mHeart.toggleLike(); getLikesString(); } @Override public void onAttach(Context context) { super.onAttach(context); try{ mOnCommentThreadSelectedListener = (OnCommentThreadSelectedListener) getActivity(); }catch (ClassCastException e){ Log.e(TAG, "onAttach: ClassCastException: " + e.getMessage() ); } } private void getLikesString(){ DatabaseReference reference = FirebaseDatabase.getInstance().getReference(); Query query = reference .child(getString(R.string.dbname_photos)) .child(mPhoto.getPhoto_id()) .child(getString(R.string.field_likes)); query.addListenerForSingleValueEvent(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot dataSnapshot) { mUsers = new StringBuilder(); for (final DataSnapshot singleSnapshot : dataSnapshot.getChildren()){ DatabaseReference reference = FirebaseDatabase.getInstance().getReference(); Query query = reference .child(getString(R.string.dbname_users)) .orderByChild(getString(R.string.field_user_id)) .equalTo(singleSnapshot.getValue(Like.class).getUser_id()); query.addListenerForSingleValueEvent(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot dataSnapshot) { for (DataSnapshot singleSnapshot : dataSnapshot.getChildren()){ mUsers.append(singleSnapshot.getValue(Users.class).getUsername()+ ","); mUsers.append(","); } String[] splitUsers = mUsers.toString().split(","); if (mUsers.toString().contains(mCurrentUser.getUsername())){ mLikedByCurrentUser = true; }else { mLikedByCurrentUser = false; } int length = splitUsers.length; if(length == 1){ mLikesString = "Likes by " + splitUsers[0]; } else if(length == 2){ mLikesString = "Likes by " + splitUsers[0] + " and " + splitUsers[1]; } else if(length == 3){ mLikesString = "Likes by " + splitUsers[0] + ", " + splitUsers[1] + " and " + splitUsers[2]; } else if(length == 4){ mLikesString = "Likes by " + splitUsers[0] + ", " + splitUsers[1] + ", " + splitUsers[2] + " and " + splitUsers[3]; } else if(length > 4){ mLikesString = "Likes by " + splitUsers[0] + ", " + splitUsers[1] + ", " + splitUsers[2] + " and " + (splitUsers.length - 3) + " others"; } setupWidgets(); } @Override public void onCancelled(@NonNull DatabaseError databaseError) { } }); } if(!dataSnapshot.exists()){ mLikesString = ""; mLikedByCurrentUser = false; setupWidgets(); } } @Override public void onCancelled(@NonNull DatabaseError databaseError) { } }); } /** * retrieve the activity number from the incoming bundle from profileActivity interface * @return */ private int getActivityNumFromBundle(){ Log.d(TAG, "getActivityNumFromBundle: arguments: " + getArguments()); Bundle bundle = this.getArguments(); if(bundle != null) { return bundle.getInt(getString(R.string.activity_number)); }else{ return 0; } } /** * retrieve the photo from the incoming bundle from profileActivity interface * @return */ private Photo getPhotoFromBundle(){ Log.d(TAG, "getPhotoFromBundle: arguments: " + getArguments()); Bundle bundle = this.getArguments(); if(bundle != null) { return bundle.getParcelable(getString(R.string.photo)); }else{ return null; } } /** * BottomNavigationView setup */ private void setupBottomNavigationView(){ Log.d(TAG, "setupBottomNavigationView: setting up BottomNavigationView"); BottomNavigationViewHelper.setupBottomNavigationView(bottomNavigationView); BottomNavigationViewHelper.enableNavigation(getActivity(),getActivity() ,bottomNavigationView); Menu menu = bottomNavigationView.getMenu(); MenuItem menuItem = menu.getItem(mActivityNumber); menuItem.setChecked(true); } private void getPhotoDetails(){ Log.d(TAG, "getPhotoDetails: retrieving photo details."); DatabaseReference reference = FirebaseDatabase.getInstance().getReference(); Query query = reference .child(getString(R.string.dbname_users_account_setting)) .orderByChild(getString(R.string.field_user_id)) .equalTo(mPhoto.getUser_id()); query.addListenerForSingleValueEvent(new ValueEventListener() { @Override public void onDataChange(DataSnapshot dataSnapshot) { for ( DataSnapshot singleSnapshot : dataSnapshot.getChildren()){ mUserAccountSettings = singleSnapshot.getValue(UsersAccountSettings.class); } } @Override public void onCancelled(DatabaseError databaseError) { Log.d(TAG, "onCancelled: query cancelled."); } }); } private void setupWidgets(){ String timestampDiff = getTimestampDifference(); if(!timestampDiff.equals("0")){ mTimestamp.setText(timestampDiff + " DAYS AGO"); }else{ mTimestamp.setText("TODAY"); } UniversalImageLoader.setImage(mUserAccountSettings.getProfile_photo() , mProfileImage ,null, ""); mUsername.setText(mUserAccountSettings.getUsername()); mLikes.setText(mLikesString); mCaption.setText(mPhoto.getCaption()); mBackArrow.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Log.d(TAG, "onClick: navigating back"); getActivity().getSupportFragmentManager().popBackStack(); } }); mComment.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Log.d(TAG, "onClick: Comment"); mOnCommentThreadSelectedListener.onCommentThreadSelectedListener(mPhoto); } }); if(mLikedByCurrentUser){ mHeartWhite.setVisibility(View.GONE); mHeartRed.setVisibility(View.VISIBLE); mHeartRed.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { Log.d(TAG, "onTouch: red heart touch detected."); return mGestureDetector.onTouchEvent(event); } }); } else{ mHeartWhite.setVisibility(View.VISIBLE); mHeartRed.setVisibility(View.GONE); mHeartWhite.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { Log.d(TAG, "onTouch: white heart touch detected."); return mGestureDetector.onTouchEvent(event); } }); } if(mPhoto.getComments().size() > 0){ mComments.setText("View all " + mPhoto.getComments().size() + " comments"); }else{ mComments.setText(""); } mComments.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Log.d(TAG, "onClick: navigating to comments thread"); mOnCommentThreadSelectedListener.onCommentThreadSelectedListener(mPhoto); } }); } /** * Returns a string representing the number of days ago the post was made * @return */ private String getTimestampDifference(){ Log.d(TAG, "getTimestampDifference: getting timestamp difference."); String difference = ""; Calendar c = Calendar.getInstance(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'", Locale.CANADA); sdf.setTimeZone(TimeZone.getTimeZone("Canada/Pacific"));//google 'android list of timezones' Date today = c.getTime(); sdf.format(today); Date timestamp; final String photoTimestamp = mPhoto.getDate_created(); try{ timestamp = sdf.parse(photoTimestamp); difference = String.valueOf(Math.round(((today.getTime() - timestamp.getTime()) / 1000 / 60 / 60 / 24 ))); }catch (ParseException e){ Log.e(TAG, "getTimestampDifference: ParseException: " + e.getMessage() ); difference = "0"; } return difference; } /* ------------------------------------ Firebase --------------------------------------------- */ /** * Setup the firebase auth object */ private void setupFirebaseAuth(){ Log.d(TAG, "setupFirebaseAuth: setting up firebase auth."); mAuth = FirebaseAuth.getInstance(); mFirebaseDatabase = FirebaseDatabase.getInstance(); myRef = mFirebaseDatabase.getReference(); mAuthListener = new FirebaseAuth.AuthStateListener() { @Override public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) { FirebaseUser user = firebaseAuth.getCurrentUser(); if (user != null) { // User is signed in Log.d(TAG, "onAuthStateChanged:signed_in:" + user.getUid()); } else { // User is signed out Log.d(TAG, "onAuthStateChanged:signed_out"); } // ... } }; } @Override public void onStart() { super.onStart(); mAuth.addAuthStateListener(mAuthListener); } @Override public void onStop() { super.onStop(); if (mAuthListener != null) { mAuth.removeAuthStateListener(mAuthListener); } } }
[ "ezzatthrwat@gmail.com" ]
ezzatthrwat@gmail.com
1b28bfd8a20ed8ed87ac421d73813b578dfcd661
23811240e7d487006bce7522c41ba264d11aac0e
/GalleryPhoto/app/src/main/java/davidepatrizi/com/galleryphoto/DownloadImage.java
d497eca592df997a65353103eedc3b1a7833cd9b
[]
no_license
bobaldo/masterApp_android
76baf81686e240533e9b723203bbaf241eaf6061
7cdbe25beadf740cc72ab8ba66a09da6869c2f26
refs/heads/master
2020-06-04T19:56:05.353142
2016-09-17T19:52:01
2016-10-06T12:29:52
27,648,048
0
0
null
null
null
null
UTF-8
Java
false
false
1,522
java
package davidepatrizi.com.galleryphoto; import android.content.Context; import android.graphics.drawable.Drawable; import android.net.Uri; import android.os.AsyncTask; import android.widget.ImageView; import android.widget.Toast; import java.io.InputStream; import java.lang.ref.WeakReference; import java.net.URL; /** * Created by Bobaldo on 25/02/2015. */ public class DownloadImage extends AsyncTask<String, Void, Drawable> { private Context context; private String url; private final WeakReference<ImageView> imageViewReference; public DownloadImage(ImageView imageView, Context context) { imageViewReference = new WeakReference<ImageView>(imageView); this.context = context; } @Override protected Drawable doInBackground(String... s) { try { InputStream is = (InputStream) new URL(s[0]).getContent(); return Drawable.createFromStream(is, "From " + s[0]); } catch (Exception e) { Toast.makeText(context, "Errore: " + e.getMessage(), Toast.LENGTH_SHORT).show(); return null; } } @Override // Once the image is downloaded, associates it to the imageView protected void onPostExecute(Drawable draw) { if (isCancelled()) { draw = null; } if (imageViewReference != null) { ImageView imageView = imageViewReference.get(); if (imageView != null) { imageView.setImageDrawable(draw); } } } }
[ "davidepatrizi@gmail.com" ]
davidepatrizi@gmail.com
429eb99079d0db6dc49105cce63065a800b7ea36
8af1164bac943cef64e41bae312223c3c0e38114
/results-java/orientechnologies--orientdb/9328ce558638d85dce5566a565f791beed5230fa/before/ORecordSerializerBinary.java
a495d2e36c52f97cf1da8a218b6fbc6803395962
[]
no_license
fracz/refactor-extractor
3ae45c97cc63f26d5cb8b92003b12f74cc9973a9
dd5e82bfcc376e74a99e18c2bf54c95676914272
refs/heads/master
2021-01-19T06:50:08.211003
2018-11-30T13:00:57
2018-11-30T13:00:57
87,353,478
0
0
null
null
null
null
UTF-8
Java
false
false
4,167
java
/* * * * Copyright 2014 Orient Technologies LTD (info(at)orientechnologies.com) * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * * * * For more information: http://www.orientechnologies.com * */ package com.orientechnologies.orient.core.serialization.serializer.record.binary; import com.orientechnologies.common.log.OLogManager; import com.orientechnologies.orient.core.record.ORecord; import com.orientechnologies.orient.core.record.impl.ODocument; import com.orientechnologies.orient.core.serialization.OBase64Utils; import com.orientechnologies.orient.core.serialization.serializer.record.ORecordSerializer; import com.orientechnologies.orient.core.serialization.serializer.record.OSerializationSetThreadLocal; public class ORecordSerializerBinary implements ORecordSerializer { public static final String NAME = "ORecordSerializerBinary"; public static final ORecordSerializerBinary INSTANCE = new ORecordSerializerBinary(); private static final byte CURRENT_RECORD_VERSION = 0; private ODocumentSerializer[] serializerByVersion; public ORecordSerializerBinary() { serializerByVersion = new ODocumentSerializer[1]; serializerByVersion[0] = new ORecordSerializerBinaryV0(); } @Override public int getCurrentVersion() { return CURRENT_RECORD_VERSION; } @Override public int getMinSupportedVersion() { return CURRENT_RECORD_VERSION; } @Override public String toString() { return NAME; } @Override public ORecord fromStream(final byte[] iSource, ORecord iRecord, final String[] iFields) { if (iSource.length == 0) return iRecord; if (iRecord == null) iRecord = new ODocument(); else checkTypeODocument(iRecord); BytesContainer container = new BytesContainer(iSource); container.skip(1); try { if (iFields != null && iFields.length > 0) serializerByVersion[iSource[0]].deserializePartial((ODocument) iRecord, container, iFields); else serializerByVersion[iSource[0]].deserialize((ODocument) iRecord, container); } catch (RuntimeException e) { OLogManager.instance().warn(this, "Error deserializing record with id %s send this data for debugging: %s ", iRecord.getIdentity().toString(), OBase64Utils.encodeBytes(iSource)); throw e; } return iRecord; } @Override public byte[] toStream(final ORecord iSource, final boolean iOnlyDelta) { checkTypeODocument(iSource); final BytesContainer container = new BytesContainer(); // WRITE SERIALIZER VERSION int pos = container.alloc(1); container.bytes[pos] = CURRENT_RECORD_VERSION; if (!OSerializationSetThreadLocal.checkAndAdd((ODocument) iSource)) { // SERIALIZE CLASS ONLY serializerByVersion[CURRENT_RECORD_VERSION].serialize((ODocument) iSource, container, true); // SET SERIALIZATION AS PARTIAL OSerializationSetThreadLocal.setPartial((ODocument) iSource); return container.fitBytes(); } try { // SERIALIZE RECORD serializerByVersion[CURRENT_RECORD_VERSION].serialize((ODocument) iSource, container, false); } finally { OSerializationSetThreadLocal.removeCheck((ODocument) iSource); } return container.fitBytes(); } private void checkTypeODocument(final ORecord iRecord) { if (!(iRecord instanceof ODocument)) { throw new UnsupportedOperationException("The " + ORecordSerializerBinary.NAME + " don't support record of type " + iRecord.getClass().getName()); } } }
[ "fraczwojciech@gmail.com" ]
fraczwojciech@gmail.com
466bf7ff5e8b578a6d883952c804e2a224f1b6c8
d5d7e9a532f6e7f1d06ac465f53eb5a259cd424d
/pet-clinic-data/src/main/java/guru/springframework/sfgpetclinic/model/BaseEntity.java
35d757ea7a1e38e2a53d29a07291378bf6b73c30
[]
no_license
jcohen66/sfg-pet-clinic
bd802ff8936a36bc291f01b3e745e069a211c63e
2539f8a2ede4cdc48902a5052a7ce4ab9f7805fd
refs/heads/master
2020-04-13T20:36:51.220743
2019-01-26T04:02:21
2019-01-26T04:02:21
163,434,223
0
0
null
2019-01-23T00:14:15
2018-12-28T17:26:50
Java
UTF-8
Java
false
false
627
java
package guru.springframework.sfgpetclinic.model; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.MappedSuperclass; import java.io.Serializable; @Getter @Setter @NoArgsConstructor @AllArgsConstructor @MappedSuperclass public class BaseEntity implements Serializable { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) protected Long id; public boolean isNew() { return this.id == null; } }
[ "jcohen66@optonline.net" ]
jcohen66@optonline.net
9014d96a8f735b0a82f414f547ade0edcd3ed7d5
42647a7aed847a9ade39614eee34d16a59edf7d3
/src/Card/ICardService.java
78050ce096aa9bf9a65e26c06e29e05c2056b506
[]
no_license
ElenaOhana/ATM_withRelationalDB
40cbaafc5ba1863c15af330b89a331b041897a0b
7eadcc0e03910b2b6fb4cba89d1349c5afbc356c
refs/heads/master
2023-03-11T12:57:43.566288
2021-03-05T18:29:23
2021-03-05T18:29:23
289,243,929
0
0
null
null
null
null
UTF-8
Java
false
false
126
java
package Card; public interface ICardService { ICard createCard(String name, String pin, int id, String accountNumber); }
[ "petinael708@gmail.com" ]
petinael708@gmail.com
c539c225cf13acd7c35518890d5ee4f68c73a775
aebc258087545643312d19aa93393230e773572f
/src/main/java/com/enchere/dao/IMaisonEnfantDao.java
9532419394c43c771e16b31682f68611d7e0b01a
[]
no_license
sikosiko1/enchere
e0e199d98d2efdb60a6eb879e60dd760b01b33bc
e68cac37ccba6fdb4b11b65d53f2ffb1e524ed78
refs/heads/master
2021-01-10T03:20:30.008398
2016-03-11T16:19:52
2016-03-11T16:19:52
53,142,928
0
0
null
null
null
null
UTF-8
Java
false
false
267
java
package com.enchere.dao; import com.enchere.models.MaisonEnfant; public interface IMaisonEnfantDao { public boolean create(MaisonEnfant maisonEnfant); public boolean update(MaisonEnfant maisonEnfant); public boolean delete(MaisonEnfant maisonEnfant); }
[ "kaka221990@hotmail.com" ]
kaka221990@hotmail.com
fe86c2cb46064bdf1afc7ac2b31549102b67b437
93ffb4dddb60c246d88c8ed130dbdae616f99998
/javalearn/src/com/lzy/filelearn/Person.java
740926264cf3d3f911d794584e22edfa27155760
[]
no_license
NoNmin98/javalearn
d9e7d51c50b5f21f5b8db4b29523b3d0dbf6d6cd
94ef3bff2b47f064a30f1d1441cb72f94f69c9ad
refs/heads/master
2023-01-20T21:29:05.872062
2020-11-24T10:18:28
2020-11-24T10:18:28
293,040,001
1
0
null
null
null
null
UTF-8
Java
false
false
1,501
java
package com.lzy.filelearn; import java.io.Serializable; import java.util.Objects; /** * @author: lzy * @description: * @date: 2020-09-19-21:13 */ public class Person<T> implements Serializable { public static final long serialVersionUID = 4223453L; String name; int age; T orderT; public Person(){} public Person(String name, int age, T orderT){ this.name=name; this.age=age; this.orderT=orderT; } 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 T getOrderT() { return orderT; } public void setOrderT(T orderT) { this.orderT = orderT; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; Person<?> person = (Person<?>) o; return age == person.age && Objects.equals(name, person.name) && Objects.equals(orderT, person.orderT); } @Override public int hashCode() { return Objects.hash(name, age, orderT); } @Override public String toString() { return "Person{" + "name='" + name + '\'' + ", age=" + age + ", orderT=" + orderT + '}'; } }
[ "32301978+NoNmin98@users.noreply.github.com" ]
32301978+NoNmin98@users.noreply.github.com
3563bc9ff1f219a33d8d26caeed3b5771d9b1828
24c00e5fb2fb19b3230dec5ac23be9f862b1e25d
/src/main/java/org/smart4j/framework/test/aspect/SystemController.java
7b59902f99e35438e9fce7c344213c85165cee0f
[]
no_license
cainiaobang/smart-framework
43568b62931b076cf3554bae3277159fb9f01d9c
7f8c858da12ca22b6a7469b25ddf236d5c8e1ff3
refs/heads/master
2021-10-24T12:11:01.508188
2019-03-26T02:03:04
2019-03-26T02:03:04
111,191,855
0
0
null
null
null
null
UTF-8
Java
false
false
1,255
java
package org.smart4j.framework.test.aspect; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.smart4j.framework.annotation.Action; import org.smart4j.framework.annotation.Controller; import org.smart4j.framework.bean.Param; import org.smart4j.framework.bean.View; import org.smart4j.plugin.security.SecurityHelper; import org.smart4j.plugin.security.exception.AuthcException; @Controller public class SystemController { private static final Logger LOGGER= LoggerFactory.getLogger(SystemController.class); @Action("get:/") public View index(){ return new View("index.jsp"); } @Action("get:/login") public View login(){ return new View("login.jsp"); } @Action("post:/login") public View loginSubmit(Param param){ String userName=param.getString("username"); String password=param.getString("password"); try{ SecurityHelper.login(userName,password); }catch (AuthcException e){ LOGGER.error("login failure",e); return new View("/login"); } return new View("/customer"); } @Action("get:logout") public View logout(){ SecurityHelper.logout(); return new View("/"); } }
[ "lqb_seu@163.com" ]
lqb_seu@163.com
598126c89fe4ae8f79861183f17f3a271f105cda
7762298af7d52cf6df36a6ac84a7996103ef8f3a
/Grupo_MVG_TP9/src/main/java/ar/edu/unju/fi/tp9/controller/CompraController.java
b80cc98f837f71fad807a8874976fbfeb4513655
[]
no_license
sofia-munoz/repo-GrupoMVG-TP9
46b1454b270449a13da56e533f85c0a39e8eff24
b5bcc6fe50d8d108bcd2004e3818cc129268433d
refs/heads/master
2023-05-25T21:40:53.650090
2021-06-10T19:39:02
2021-06-10T19:39:02
373,998,292
0
0
null
2021-06-10T19:39:03
2021-06-05T01:52:26
Java
UTF-8
Java
false
false
3,496
java
package ar.edu.unju.fi.tp9.controller; import java.util.Optional; import javax.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.servlet.ModelAndView; import ar.edu.unju.fi.tp9.model.Compra; import ar.edu.unju.fi.tp9.model.Producto; import ar.edu.unju.fi.tp9.service.ICompraService; import ar.edu.unju.fi.tp9.service.IProductoService; @Controller public class CompraController { @Autowired private Compra compra; @Autowired @Qualifier("compraServiceMysql") private ICompraService compraService; @Autowired @Qualifier("productoServiceMysql") private IProductoService productoService; @GetMapping("/compra/nueva") public String getCompraNuevaPage(Model model) { model.addAttribute("compra", compra); model.addAttribute("productos", productoService.getProductos()); return "compranueva"; } @PostMapping("/compra/guardar") public ModelAndView getGuardarCompraPage(@Valid @ModelAttribute("compra")Compra compra, BindingResult validacion) { ModelAndView model; if(validacion.hasErrors()) { model = new ModelAndView("compranueva"); model.addObject("productos", productoService.getProductos()); System.out.println(compra); return model; } else { model = new ModelAndView("compras"); Optional<Producto> producto = productoService.getProductoPorId(compra.getProducto().getId()); compra.setProducto(producto.get()); compra.setTotal(compra.getCantidad()*producto.get().getPrecio()); compraService.guardarCompra(compra); model.addObject("compras", compraService.getCompras()); return model; } } @GetMapping("/compra/listado") public String getListadoCompraPage(Model model) { model.addAttribute("compra", compra); model.addAttribute("compras", compraService.getCompras()); return "compras"; } @GetMapping("/compra/ultima") public String getCompraUltimoPage(Model model) { model.addAttribute(compraService.consultarUltimaCompra()); return "ultimacompra"; } @GetMapping("/compra/editar/{id}") public ModelAndView modificarCompraPage(@PathVariable (value = "id")Long id) { ModelAndView model = new ModelAndView("compranueva"); Optional<Compra> compra = compraService.getCompraPorId(id); model.addObject("compra", compra); model.addObject("productos", productoService.getProductos()); return model; } @GetMapping("/compra/eliminar/{id}") public ModelAndView eliminarCompraPage(@PathVariable(value = "id")Long id) { ModelAndView model = new ModelAndView("redirect:/compra/listado"); compraService.eliminarCompra(id); return model; } @GetMapping("/compra/busqueda") public String buscarProductoPorFiltro(@RequestParam(name = "producto.nombre")String nombreProducto, @RequestParam(name = "total")double monto, Model model, @ModelAttribute(name = "compra")Compra compra) { model.addAttribute("compra"); model.addAttribute("compras", compraService.consultarCompras(nombreProducto, monto)); return "compras"; } }
[ "sofim@LAPTOP-SOFIAM" ]
sofim@LAPTOP-SOFIAM
84294520b6c04bc914cf7a019d456baae48fd39d
f69ab5d54bf509a98095018c53313aa2e5c489b7
/practice-code-blue/programme-java/do-whileloop.java
225e477de187a4629ff183f29c5cc89cd9b6fac8
[]
no_license
yveslox/Genesisras
39224ce0e33c8b20f9d3473dd5909a7d45938e9c
93a042ceff60cd081305bb8a7f9d83ee6bac41ac
refs/heads/master
2023-08-20T23:53:39.694347
2023-08-20T11:21:18
2023-08-20T11:21:18
169,721,914
3
0
null
2023-09-14T11:40:28
2019-02-08T11:00:00
Shell
UTF-8
Java
false
false
146
java
class dowhileloop { public static void main(String args[]) { int i = 1; do { System.out.println(i); i++; }while( i <= 5); } }
[ "yvesmole@gmail.com" ]
yvesmole@gmail.com
abee36632d870ba9b85b3918d8e538146504f4f6
428236a50da59ff672a2927688a4ed52d66234a4
/app/src/main/java/cn/ran/flicenter/views/SlideAutoLoopView.java
6d257da1b028fc4099f60be100af83a35cbf2fc2
[]
no_license
ranyiran/fulicenter
89c2b191022ce5a3fb7f4fb2cf1dda59152df928
0c9e15eaead5d9dcfdc5891714a7451043bd9243
refs/heads/master
2021-01-11T00:02:57.212147
2016-10-28T11:19:51
2016-10-28T11:19:51
70,765,697
0
0
null
null
null
null
UTF-8
Java
false
false
8,213
java
package cn.ran.flicenter.views; import android.content.Context; import android.os.Handler; import android.os.Message; import android.support.v4.view.PagerAdapter; import android.support.v4.view.ViewPager; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.View; import android.view.ViewGroup; import android.view.animation.Interpolator; import android.view.animation.LinearInterpolator; import android.widget.ImageView; import android.widget.Scroller; import java.lang.reflect.Field; import java.util.Timer; import java.util.TimerTask; import cn.ran.flicenter.utils.ImageLoader; /** * 图片轮播 * * @author yao */ public class SlideAutoLoopView extends ViewPager { Context mContext; /** * 自动播放的标识符 */ final int ACTION_PLAY = 1; /** * 定义FlowIndicator:图片指示器view */ FlowIndicator mFlowIndicator; /** * 轮播图片的适配器 */ SlideAutoLooopAdapter mAdapter; /** * 图片数量 */ int mCount; /** * 图片轮播间隔时间 */ int mDuration = 2000; /** * 相册的图片下载地址数组 */ String[] mAlbumImgUrl; Timer mTimer; Handler mHandler; boolean mAutoSwitch = false; public SlideAutoLoopView(Context context, AttributeSet attrs) { super(context, attrs); mContext = context; initHandler(); setListener(); } private void setListener() { setOnPageChangeListener(); setOnTouchListener(); } /** * 设置触摸页面的事件监听 */ private void setOnTouchListener() { this.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { if (event.getAction() == MotionEvent.ACTION_DOWN || event.getAction() == MotionEvent.ACTION_MOVE) { mAutoSwitch = false; } return false; } }); } /** * 监听ViewPager页面改变 */ private void setOnPageChangeListener() { this.setOnPageChangeListener(new OnPageChangeListener() { @Override public void onPageSelected(int position) { //设置指示器中实心圆的切换 mFlowIndicator.setFocus(position % mCount); } @Override public void onPageScrolled(int arg0, float arg1, int arg2) { // TODO Auto-generated method stub } @Override public void onPageScrollStateChanged(int arg0) { // TODO Auto-generated method stub } }); } private void initHandler() { mHandler = new Handler() { @Override public void handleMessage(Message msg) { if (msg.what == ACTION_PLAY) {//若是播放操作 if (!mAutoSwitch) {//若不是自动播放状态 mAutoSwitch = true;//设置为自动播放状态 } else {//设置为下一个item //取出当前item的下标 int currentItem = SlideAutoLoopView.this.getCurrentItem(); currentItem++;//递增 //设置当前item为下一个 SlideAutoLoopView.this.setCurrentItem(currentItem); } } } }; } /** * 轮播图片的适配器 * * @author yao */ class SlideAutoLooopAdapter extends PagerAdapter { Context context; String[] albumImgUrl; int count; ImageLoader imageLoader; public SlideAutoLooopAdapter(Context context, String[] albumImgUrl, int count) { super(); this.context = context; this.albumImgUrl = albumImgUrl; this.count = count; } @Override public int getCount() {//支持无限轮播 if (count == 0) { return 0; } return Integer.MAX_VALUE; } @Override public boolean isViewFromObject(View arg0, Object arg1) { return arg0 == arg1; } @Override public Object instantiateItem(ViewGroup container, int position) { final ImageView iv = new ImageView(context); LayoutParams params = new LayoutParams(); iv.setLayoutParams(params); String imgUrl = albumImgUrl[position % count]; String imgName = "images/" + imgUrl; // String url= I.DOWNLOAD_ALBUM_IMG_URL+imgUrl; // Bitmap bitmap = imageLoader.displayImage(url, imgName, Utils.px2dp(context, 260), Utils.px2dp(context, 200), new OnImageLoadListener() { // @Override // public void onSuccess(String path, Bitmap bitmap) { // iv.setImageBitmap(bitmap); // } // // @Override // public void error(String errorMsg) { // // TODO Auto-generated method stub // // } // }); // if(bitmap==null){ // iv.setImageResource(R.drawable.nopic); // }else{ // iv.setImageBitmap(bitmap); // } ImageLoader.downloadImg(context, iv, imgUrl, true); container.addView(iv); return iv; } @Override public void destroyItem(ViewGroup container, int position, Object object) { container.removeView((View) object); } } /** * 开始图片的轮播 */ public void startPlayLoop(FlowIndicator flowIndicator, String[] albumImgUrl, int count) { if (mAdapter == null) { mCount = count; this.mFlowIndicator = flowIndicator; mFlowIndicator.setCount(count); mFlowIndicator.setFocus(0); this.mAlbumImgUrl = albumImgUrl; mAdapter = new SlideAutoLooopAdapter(mContext, mAlbumImgUrl, count); this.setAdapter(mAdapter); try { Field field = ViewPager.class.getDeclaredField("mScroller"); field.setAccessible(true); MyScroller scroller = new MyScroller(mContext, new LinearInterpolator()); scroller.setDuration(500); scroller.startScroll(0, 0, 50, 0); field.set(this, scroller); } catch (NoSuchFieldException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IllegalAccessException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IllegalArgumentException e) { // TODO Auto-generated catch block e.printStackTrace(); } } if (mTimer == null) { mTimer = new Timer(); } mTimer.schedule(new TimerTask() { @Override public void run() { mHandler.sendEmptyMessage(ACTION_PLAY); } }, 1, mDuration); } /** * 停止图片轮播 */ public void stopPlayLoop() { if (mTimer != null) { mTimer.cancel(); mTimer = null; } } /** * ViewPager列表项滚动的距离、时间间隔的设置 * * @author yao */ class MyScroller extends Scroller { public MyScroller(Context context, Interpolator interpolator) { super(context, interpolator); // TODO Auto-generated constructor stub } int duration;//图片移动的时间间隔 public void setDuration(int duration) { this.duration = duration; } @Override public void startScroll(int startX, int startY, int dx, int dy, int duration) { super.startScroll(startX, startY, dx, dy, this.duration); } } }
[ "271536025@qq.com" ]
271536025@qq.com
aed761a98346e4a26eb1167862f722869e2daefd
44a36429df737ef38fae6ac2e525ddc2ce8e3d6b
/ZNTDmsModel/gen/com/znt/diange/dmsmodel/R.java
710865b783faaa8bff13e8bd3604a6680457f001
[]
no_license
mapbased/ZNTVodBox
850c09826f72e5d8300d4a394d980e7b33d37f44
31a6d0babb47e1153906b379e87f4542ab28f0d1
refs/heads/master
2021-05-19T04:00:21.762410
2017-09-04T16:34:06
2017-09-04T16:34:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,030
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.znt.diange.dmsmodel; public final class R { public static final class attr { } public static final class dimen { public static int padding_large=0x7f060002; public static int padding_medium=0x7f060001; public static int padding_small=0x7f060000; } public static final class drawable { public static int ic_action_search=0x7f020000; public static int ic_launcher=0x7f020001; } public static final class layout { public static int activity_main=0x7f030000; } public static final class string { public static int app_name=0x7f040000; public static int dms_app_name=0x7f040001; public static int dms_title_activity_main=0x7f040002; } public static final class style { public static int AppTheme=0x7f050000; } }
[ "yuyan19850204@sina.com" ]
yuyan19850204@sina.com
7fd7987b4df2516a8bdb139927a857edfcff7333
22ca777d5fb55d7270f5b7b12af409e42721d4fa
/src/main/java/com/basic/thread/pipeio/ThreadRead.java
38d61619b40758e57b9be743fb72656db61a831a
[]
no_license
Yommmm/Java-Basic
73d1f8ef59ba6186f7169f0dd885cbe7a21d2094
fec3793a1284ac53676daf71547f53469b33e042
refs/heads/master
2021-05-26T05:14:27.590319
2020-05-15T15:43:04
2020-05-15T15:43:04
127,542,927
1
0
null
null
null
null
UTF-8
Java
false
false
459
java
package com.basic.thread.pipeio; import java.io.PipedInputStream; public class ThreadRead extends Thread { private ReadData readData; private PipedInputStream input; public ThreadRead(ReadData readData, PipedInputStream input) { super(); this.readData = readData; this.input = input; } @Override public void run() { super.run(); readData.readMethod(input); } }
[ "yangzhiwen@chalco-steering.com" ]
yangzhiwen@chalco-steering.com
86cf8befde3d5c266cb98a8533d9d84c774d4a0c
51aef8e206201568d04fb919bf54a3009c039dcf
/trunk/src/com/jme/scene/state/lwjgl/records/LineRecord.java
26fb6a06865fbdbe664d372426031e1f62e6e46e
[]
no_license
lihak/fairytale-soulfire-svn-to-git
0b8bdbfcaf774f13fc3d32cc3d3a6fae64f29c81
a85eb3fc6f4edf30fef9201902fcdc108da248e4
refs/heads/master
2021-02-11T15:25:47.199953
2015-12-28T14:48:14
2015-12-28T14:48:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,791
java
/* * Copyright (c) 2003-2008 jMonkeyEngine * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of 'jMonkeyEngine' nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package com.jme.scene.state.lwjgl.records; import org.lwjgl.opengl.GL11; import com.jme.scene.state.StateRecord; public class LineRecord extends StateRecord { public boolean smoothed = false; public boolean stippled = false; public int smoothHint = -1; public float width = -1; public int stippleFactor = -1; public short stipplePattern = -1; public void applyLineWidth(float lineWidth) { if (!isValid() || this.width != lineWidth) { GL11.glLineWidth(lineWidth); this.width = lineWidth; } } public void applyLineSmooth(boolean smoothed) { if (smoothed) { if (!isValid() || !this.smoothed) { GL11.glEnable(GL11.GL_LINE_SMOOTH); this.smoothed = true; } if (!isValid() || smoothHint != GL11.GL_NICEST) { GL11.glHint(GL11.GL_LINE_SMOOTH_HINT, GL11.GL_NICEST); smoothHint = GL11.GL_NICEST; } } else if (!isValid() || this.smoothed) { GL11.glDisable(GL11.GL_LINE_SMOOTH); this.smoothed = false; } } public void applyLineStipple(int stippleFactor, short stipplePattern) { if (stipplePattern != (short)0xFFFF) { if (!isValid() || !this.stippled) { GL11.glEnable(GL11.GL_LINE_STIPPLE); this.stippled = true; } if (!isValid() || stippleFactor != this.stippleFactor || stipplePattern != this.stipplePattern) { GL11.glLineStipple(stippleFactor, stipplePattern); this.stippleFactor = stippleFactor; this.stipplePattern = stipplePattern; } } else if (!isValid() || this.stippled) { GL11.glDisable(GL11.GL_LINE_STIPPLE); this.stippled = false; } } @Override public void invalidate() { super.invalidate(); smoothed = false; stippled = false; smoothHint = -1; width = -1; stippleFactor = -1; stipplePattern = -1; } }
[ "you@example.com" ]
you@example.com
19aa4e6176380e2cc62f20c92280c6dd4004c289
d393ffbd6cc993b0b6a0e4958252cb6cc17764bd
/src/main/java/com/shakepoint/web/api/data/dto/response/UserPurchaseResponse.java
794c354fd180634a1bb8b7e2a8b4b4e8dd0f792e
[]
no_license
albertoruvel/shakepoint-rest-api
cfafb8dd8f720d7b79beeafef3586c0954538934
3b367be95429844e161a10d4f9f4b24d1f39e3b3
refs/heads/master
2020-03-08T12:35:31.546087
2018-12-05T04:07:55
2018-12-05T04:07:55
128,130,421
0
0
null
null
null
null
UTF-8
Java
false
false
1,311
java
package com.shakepoint.web.api.data.dto.response; public class UserPurchaseResponse { private String id; private double total; private String productName; private String machineName; private String purchaseDate; public UserPurchaseResponse(String id, double total, String productName, String machineName, String purchaseDate) { this.id = id; this.total = total; this.productName = productName; this.machineName = machineName; this.purchaseDate = purchaseDate; } public String getId() { return id; } public void setId(String id) { this.id = id; } public double getTotal() { return total; } public void setTotal(double total) { this.total = total; } public String getProductName() { return productName; } public void setProductName(String productName) { this.productName = productName; } public String getMachineName() { return machineName; } public void setMachineName(String machineName) { this.machineName = machineName; } public String getPurchaseDate() { return purchaseDate; } public void setPurchaseDate(String purchaseDate) { this.purchaseDate = purchaseDate; } }
[ "arubalcaba@24hourfit.com" ]
arubalcaba@24hourfit.com
91435b57109d0436bd47a20e30fbd2f5cdca8145
f5ad4a4918fdf511f5e8eb90c7b656c5bbd7d228
/src/reportModel/reportStockCakeModel.java
9d45a7a48a82bf525f38549b75a34f2cfcfa1533
[]
no_license
spipejr/tet
c502fe1767c6f790f30cc2cb5da29a5c6f95374e
6386701ac279decb38cb887a5df2a4187ffcbdec
refs/heads/master
2020-03-13T04:28:26.972375
2018-04-13T19:09:19
2018-04-13T19:09:19
130,963,548
0
0
null
null
null
null
UTF-8
Java
false
false
29,645
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package reportModel; import com.mysql.jdbc.Statement; import dbutility.dbUtility; import java.sql.ResultSet; import java.sql.SQLException; import java.util.Date; import org.jdesktop.swingx.treetable.AbstractTreeTableModel; import utilititiesfunction.Format; import utilititiesfunction.ThaiUtilities; /** * * @author s386 */ public class reportStockCakeModel extends AbstractTreeTableModel { private Statement stmt; private reportStockCakeBean myroot; ThaiUtilities cvth = new ThaiUtilities(); dbUtility db = new dbUtility(); public reportStockCakeModel(String sql) throws SQLException { db.dbconnect(); stmt = null; String tempbran = ""; String tempbranold = ""; String tempdate = ""; String tempdateold = ""; String tempbname = ""; String tempbnameold = ""; Date d_tempdate =null; Date d_tempdateold = null; int countgroup = 0; int counttotal = 0; int countdate = 0; int i=1; ResultSet rs = null; stmt = (Statement) dbUtility.con.createStatement(); rs = stmt.executeQuery(sql); reportStockCakeBean subtree = null; reportStockCakeBean datetree = null; myroot = new reportStockCakeBean(); if(!db.Char_Set.equalsIgnoreCase("utf-8")) { while (rs.next()) { d_tempdate = rs.getDate("s_date"); tempbran = rs.getString("s_bran"); tempdate = rs.getString("s_date"); tempbname = cvth.ASCII2Unicode(rs.getString("name")); if(!tempbranold.equals(tempbran)) { tempdateold = ""; if(subtree != null) { // subtree.getChildren().add(new MyTreeNode("Total Of Group","","","",Format.doubleFmt.format(totalgroup),"")); myroot.getChildren().add(subtree); subtree.setS_bran("Branch "+tempbranold+" "+tempbnameold +" Total "+countgroup+" Record"); //subtree = new reportSaleOfPluBean( rs.getString("s_bran"),"","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" ); } subtree = new reportStockCakeBean(); countgroup = 0; if(!tempdateold.equals(tempdate)) { i=1; datetree = new reportStockCakeBean("Date "+utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")),"","","","","","","","","","","","","","","","","","" ); subtree.getChildren().add(datetree); //datetree.getChildren().add(new MyTreeNode( "Items "+i, "",cvth.ASCII2Unicode(rs.getString("s_pcode")),cvth.ASCII2Unicode(rs.getString("pdesc")),cvth.ASCII2Unicode(rs.getString("pprice11")),cvth.ASCII2Unicode(rs.getString("punit1")) )); datetree.getChildren().add(new reportStockCakeBean( cvth.ASCII2Unicode(rs.getString("s_bran")), utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")), cvth.ASCII2Unicode(rs.getString("pgroup")), cvth.ASCII2Unicode(rs.getString("pcode")), cvth.ASCII2Unicode(rs.getString("pdesc")), Format.doubleFmt.format(rs.getDouble("adjeod")), cvth.ASCII2Unicode(rs.getString("punit1")), Format.doubleFmt.format(rs.getDouble("bod")), Format.doubleFmt.format(rs.getDouble("rec")), Format.doubleFmt.format(rs.getDouble("tfr")), Format.doubleFmt.format(rs.getDouble("wid")), Format.doubleFmt.format(rs.getDouble("ret")), Format.doubleFmt.format(rs.getDouble("rfn")), Format.doubleFmt.format(rs.getDouble("sal")), Format.doubleFmt.format(rs.getDouble("adj")), Format.doubleFmt.format(rs.getDouble("eod")), Format.doubleFmt.format(rs.getDouble("pret")), cvth.ASCII2Unicode(rs.getString("tuser")), cvth.ASCII2Unicode(rs.getString("trem")) )); } else { datetree.getChildren().add(new reportStockCakeBean( cvth.ASCII2Unicode(rs.getString("s_bran")), utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")), cvth.ASCII2Unicode(rs.getString("pgroup")), cvth.ASCII2Unicode(rs.getString("pcode")), cvth.ASCII2Unicode(rs.getString("pdesc")), Format.doubleFmt.format(rs.getDouble("adjeod")), cvth.ASCII2Unicode(rs.getString("punit1")), Format.doubleFmt.format(rs.getDouble("bod")), Format.doubleFmt.format(rs.getDouble("rec")), Format.doubleFmt.format(rs.getDouble("tfr")), Format.doubleFmt.format(rs.getDouble("wid")), Format.doubleFmt.format(rs.getDouble("ret")), Format.doubleFmt.format(rs.getDouble("rfn")), Format.doubleFmt.format(rs.getDouble("sal")), Format.doubleFmt.format(rs.getDouble("adj")), Format.doubleFmt.format(rs.getDouble("eod")), Format.doubleFmt.format(rs.getDouble("pret")), cvth.ASCII2Unicode(rs.getString("tuser")), cvth.ASCII2Unicode(rs.getString("trem")) )); } } else { if(!tempdateold.equals(tempdate)) { i=1; datetree = new reportStockCakeBean("Date "+utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")),"","","","","","","","","","","","","","","","","","" ); subtree.getChildren().add(datetree); //datetree.getChildren().add(new MyTreeNode( "Items "+i, "",cvth.ASCII2Unicode(rs.getString("s_pcode")),cvth.ASCII2Unicode(rs.getString("pdesc")),cvth.ASCII2Unicode(rs.getString("pprice11")),cvth.ASCII2Unicode(rs.getString("punit1")) )); datetree.getChildren().add(new reportStockCakeBean( cvth.ASCII2Unicode(rs.getString("s_bran")), utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")), cvth.ASCII2Unicode(rs.getString("pgroup")), cvth.ASCII2Unicode(rs.getString("pcode")), cvth.ASCII2Unicode(rs.getString("pdesc")), Format.doubleFmt.format(rs.getDouble("adjeod")), cvth.ASCII2Unicode(rs.getString("punit1")), Format.doubleFmt.format(rs.getDouble("bod")), Format.doubleFmt.format(rs.getDouble("rec")), Format.doubleFmt.format(rs.getDouble("tfr")), Format.doubleFmt.format(rs.getDouble("wid")), Format.doubleFmt.format(rs.getDouble("ret")), Format.doubleFmt.format(rs.getDouble("rfn")), Format.doubleFmt.format(rs.getDouble("sal")), Format.doubleFmt.format(rs.getDouble("adj")), Format.doubleFmt.format(rs.getDouble("eod")), Format.doubleFmt.format(rs.getDouble("pret")), cvth.ASCII2Unicode(rs.getString("tuser")), cvth.ASCII2Unicode(rs.getString("trem")) )); } else { datetree.getChildren().add(new reportStockCakeBean( cvth.ASCII2Unicode(rs.getString("s_bran")), utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")), cvth.ASCII2Unicode(rs.getString("pgroup")), cvth.ASCII2Unicode(rs.getString("pcode")), cvth.ASCII2Unicode(rs.getString("pdesc")), Format.doubleFmt.format(rs.getDouble("adjeod")), cvth.ASCII2Unicode(rs.getString("punit1")), Format.doubleFmt.format(rs.getDouble("bod")), Format.doubleFmt.format(rs.getDouble("rec")), Format.doubleFmt.format(rs.getDouble("tfr")), Format.doubleFmt.format(rs.getDouble("wid")), Format.doubleFmt.format(rs.getDouble("ret")), Format.doubleFmt.format(rs.getDouble("rfn")), Format.doubleFmt.format(rs.getDouble("sal")), Format.doubleFmt.format(rs.getDouble("adj")), Format.doubleFmt.format(rs.getDouble("eod")), Format.doubleFmt.format(rs.getDouble("pret")), cvth.ASCII2Unicode(rs.getString("tuser")), cvth.ASCII2Unicode(rs.getString("trem")) )); } } i++; countgroup++; counttotal++; countdate++; tempbranold = rs.getString("s_bran"); tempdateold = rs.getString("s_date"); tempbnameold = cvth.ASCII2Unicode(rs.getString("name")); d_tempdateold = rs.getDate("s_date"); } // Format.doubleFmt.format(totalgroup) if(subtree != null) { subtree.setS_bran("Branch "+tempbran+" "+tempbname +" Total "+countgroup+" Record"); myroot.getChildren().add(subtree); } //myroot.getChildren().add(new MyTreeNode("Total All","","","",Format.doubleFmt.format(totalall),"")); myroot.setS_bran("Report List Of "+counttotal+" Record"); } else { while (rs.next()) { d_tempdate = rs.getDate("s_date"); tempbran = rs.getString("s_bran"); tempdate = rs.getString("s_date"); tempbname = rs.getString("name"); if(!tempbranold.equals(tempbran)) { tempdateold = ""; if(subtree != null) { // subtree.getChildren().add(new MyTreeNode("Total Of Group","","","",Format.doubleFmt.format(totalgroup),"")); myroot.getChildren().add(subtree); subtree.setS_bran("Branch "+tempbranold+" "+tempbnameold +" Total "+countgroup+" Record"); //subtree = new reportSaleOfPluBean( rs.getString("s_bran"),"","","","","","","","","","","","","","","","","","","","","","","","","","","","","","" ); } subtree = new reportStockCakeBean(); countgroup = 0; if(!tempdateold.equals(tempdate)) { i=1; datetree = new reportStockCakeBean("Date "+utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")),"","","","","","","","","","","","","","","","","","" ); subtree.getChildren().add(datetree); //datetree.getChildren().add(new MyTreeNode( "Items "+i, "",cvth.ASCII2Unicode(rs.getString("s_pcode")),cvth.ASCII2Unicode(rs.getString("pdesc")),cvth.ASCII2Unicode(rs.getString("pprice11")),cvth.ASCII2Unicode(rs.getString("punit1")) )); datetree.getChildren().add(new reportStockCakeBean( rs.getString("s_bran"), utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")), rs.getString("pgroup"), rs.getString("pcode"), rs.getString("pdesc"), Format.doubleFmt.format(rs.getDouble("adjeod")), rs.getString("punit1"), Format.doubleFmt.format(rs.getDouble("bod")), Format.doubleFmt.format(rs.getDouble("rec")), Format.doubleFmt.format(rs.getDouble("tfr")), Format.doubleFmt.format(rs.getDouble("wid")), Format.doubleFmt.format(rs.getDouble("ret")), Format.doubleFmt.format(rs.getDouble("rfn")), Format.doubleFmt.format(rs.getDouble("sal")), Format.doubleFmt.format(rs.getDouble("adj")), Format.doubleFmt.format(rs.getDouble("eod")), Format.doubleFmt.format(rs.getDouble("pret")), rs.getString("tuser"), rs.getString("trem") )); } else { datetree.getChildren().add(new reportStockCakeBean( rs.getString("s_bran"), utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")), rs.getString("pgroup"), rs.getString("pcode"), rs.getString("pdesc"), Format.doubleFmt.format(rs.getDouble("adjeod")), rs.getString("punit1"), Format.doubleFmt.format(rs.getDouble("bod")), Format.doubleFmt.format(rs.getDouble("rec")), Format.doubleFmt.format(rs.getDouble("tfr")), Format.doubleFmt.format(rs.getDouble("wid")), Format.doubleFmt.format(rs.getDouble("ret")), Format.doubleFmt.format(rs.getDouble("rfn")), Format.doubleFmt.format(rs.getDouble("sal")), Format.doubleFmt.format(rs.getDouble("adj")), Format.doubleFmt.format(rs.getDouble("eod")), Format.doubleFmt.format(rs.getDouble("pret")), rs.getString("tuser"), rs.getString("trem") )); } } else { if(!tempdateold.equals(tempdate)) { i=1; datetree = new reportStockCakeBean("Date "+utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")),"","","","","","","","","","","","","","","","","","" ); subtree.getChildren().add(datetree); //datetree.getChildren().add(new MyTreeNode( "Items "+i, "",cvth.ASCII2Unicode(rs.getString("s_pcode")),cvth.ASCII2Unicode(rs.getString("pdesc")),cvth.ASCII2Unicode(rs.getString("pprice11")),cvth.ASCII2Unicode(rs.getString("punit1")) )); datetree.getChildren().add(new reportStockCakeBean( rs.getString("s_bran"), utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")), rs.getString("pgroup"), rs.getString("pcode"), rs.getString("pdesc"), Format.doubleFmt.format(rs.getDouble("adjeod")), rs.getString("punit1"), Format.doubleFmt.format(rs.getDouble("bod")), Format.doubleFmt.format(rs.getDouble("rec")), Format.doubleFmt.format(rs.getDouble("tfr")), Format.doubleFmt.format(rs.getDouble("wid")), Format.doubleFmt.format(rs.getDouble("ret")), Format.doubleFmt.format(rs.getDouble("rfn")), Format.doubleFmt.format(rs.getDouble("sal")), Format.doubleFmt.format(rs.getDouble("adj")), Format.doubleFmt.format(rs.getDouble("eod")), Format.doubleFmt.format(rs.getDouble("pret")), rs.getString("tuser"), rs.getString("trem") )); } else { datetree.getChildren().add(new reportStockCakeBean( rs.getString("s_bran"), utilititiesfunction.Format.dateFmtShow.format(rs.getDate("s_date")), rs.getString("pgroup"), rs.getString("pcode"), rs.getString("pdesc"), Format.doubleFmt.format(rs.getDouble("adjeod")), rs.getString("punit1"), Format.doubleFmt.format(rs.getDouble("bod")), Format.doubleFmt.format(rs.getDouble("rec")), Format.doubleFmt.format(rs.getDouble("tfr")), Format.doubleFmt.format(rs.getDouble("wid")), Format.doubleFmt.format(rs.getDouble("ret")), Format.doubleFmt.format(rs.getDouble("rfn")), Format.doubleFmt.format(rs.getDouble("sal")), Format.doubleFmt.format(rs.getDouble("adj")), Format.doubleFmt.format(rs.getDouble("eod")), Format.doubleFmt.format(rs.getDouble("pret")), rs.getString("tuser"), rs.getString("trem") )); } } i++; countgroup++; counttotal++; countdate++; tempbranold = rs.getString("s_bran"); tempdateold = rs.getString("s_date"); tempbnameold = rs.getString("name"); d_tempdateold = rs.getDate("s_date"); } // Format.doubleFmt.format(totalgroup) if(subtree != null) { subtree.setS_bran("Branch "+tempbran+" "+tempbname +" Total "+countgroup+" Record"); myroot.getChildren().add(subtree); } //myroot.getChildren().add(new MyTreeNode("Total All","","","",Format.doubleFmt.format(totalall),"")); myroot.setS_bran("Report List Of "+counttotal+" Record"); } } @Override public int getColumnCount() { return 30; } @Override public String getColumnName( int column ) { switch( column ) { default: return "Unknown"; } } @Override public Object getValueAt( Object node, int column ) { //System.out.println( "getValueAt: " + node + ", " + column ); reportStockCakeBean treenode = ( reportStockCakeBean )node; switch( column ) { case 0: return treenode.getS_bran(); case 1: return treenode.getDate(); case 2: return treenode.getDept(); case 3: return treenode.getPcode(); case 4: return treenode.getPname(); case 5: return treenode.getPrice(); case 6: return treenode.getUnit(); case 7: return treenode.getBod(); case 8: return treenode.getRec(); case 9: return treenode.getTfr(); case 10: return treenode.getWid(); case 11: return treenode.getRet(); case 12: return treenode.getRfn(); case 13: return treenode.getSal(); case 14: return treenode.getAdj(); case 15: return treenode.getEod(); case 16: return treenode.getPret(); case 17: return treenode.getTuser(); case 18: return treenode.getTrem(); default: return "Unknown"; } } @Override public Object getChild( Object node, int index ) { reportStockCakeBean treenode = ( reportStockCakeBean )node; return treenode.getChildren().get( index ); } @Override public int getChildCount( Object parent ) { reportStockCakeBean treenode = ( reportStockCakeBean )parent; return treenode.getChildren().size(); } @Override public int getIndexOfChild( Object parent, Object child ) { reportStockCakeBean treenode = ( reportStockCakeBean )parent; for( int i=0; i>treenode.getChildren().size(); i++ ) { if( treenode.getChildren().get( i ) == child ) { return i; } } // TODO Auto-generated method stub return 0; } public boolean isLeaf( Object node ) { reportStockCakeBean treenode = ( reportStockCakeBean )node; if( treenode.getChildren().size() > 0 ) { return false; } return true; } @Override public Object getRoot() { return myroot; } }
[ "pos@pos-Inspiron-3442" ]
pos@pos-Inspiron-3442
52d1431ad4750a072ba1ea0a29142539e74a6136
a3c6bdba8beefdc809b44699ba4c39ec25116fe1
/src/au/com/qantas/DateUtil.java
aa13373bf3109900de70c4b970583a78b0b5f6c6
[]
no_license
saurabhmanwani/Qantas_Challenge
67a2b82967316f94704632516d3d8549251f4c43
24dd1d7a08a315df1d5c9c6dd62c02db4d5f5acf
refs/heads/master
2021-05-04T23:26:16.085316
2018-01-29T09:01:04
2018-01-29T09:01:04
119,356,437
0
0
null
null
null
null
UTF-8
Java
false
false
4,540
java
package au.com.qantas; /** * @author SM * * Date Utility Class */ public class DateUtil { private static final int DAYS_IN_YEAR = 365; private static final int[] MONTHS_NON_LEAP = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; private static final int[] MONTHS_LEAP = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; private DateUtil(){ // do nothing // object can't be created } /** * Get the number of days between 2 days * * @param startDate * @param endDate * @return number of days */ public static int getDaysBetweenTwoDates(String startDate, String endDate){ if(validateDate(startDate) && validateDate(endDate)){ // start Date int startDateDay = getDaysFromDateString(startDate); int startDateMonth = getMonthFromDateString(startDate); int startDateYear = getYearFromDateString(startDate); // end Date int endDateDay = getDaysFromDateString(endDate); int endDateMonth = getMonthFromDateString(endDate); int endDateYear = getYearFromDateString(endDate); return getDaysFromFirstJan(endDateDay, endDateMonth, endDateYear) - getDaysFromFirstJan(startDateDay, startDateMonth, startDateYear) + getDaysBetweenYears(startDateYear, endDateYear) - 1; } throw new RuntimeException("Invalid Date Format"); } /** * Get the number of days from 1st Jan (eg. 15th Feb will return 46) * * @param day * @param month * @param year * @return days count */ private static int getDaysFromFirstJan(int day, int month, int year){ int count = day; month-=1; count+=getDaysFromMonths(month, year); return count; } /** * Get the total number of days from the month passed (1 for jan, 12 for dec etc) * Takes leap year into consideration * eg. passing 2 as month and 2016 as year will return 60 (31+29) * * @param month * @param year * @return */ private static int getDaysFromMonths(int month, int year){ int days=0; for(int i=month;i>0;i--){ if(isLeapYear(year)){ days+=MONTHS_LEAP[i-1]; } else { days+=MONTHS_NON_LEAP[i-1]; } } return days; } /** * Get number of days between years * Takes leap year into consideration * eg. 2017 as startYear and 2018 as endYear will return 730 (365+365) * * @param startYear * @param endYear * @return days count */ public static int getDaysBetweenYears(int startYear, int endYear){ int days=0; for(int i=startYear;i<endYear;i++){ if(isLeapYear(i)){ days+=DAYS_IN_YEAR+1; }else{ days+=DAYS_IN_YEAR; } } return days; } /** * Check if an year is a leap year * * @param year * @return boolean */ public static boolean isLeapYear(int year){ if((year%400==0)||((year%4==0)&&(year%100!=0))){ return true; } return false; } /** * Get day from date String * * @param date * @return day */ public static int getDaysFromDateString(String date){ if(validateDate(date)){ return Integer.valueOf(date.substring(8)); } throw new RuntimeException("Invalid Date Format"); } /** * Get month from date String * * @param date * @return month */ public static int getMonthFromDateString(String date){ if(validateDate(date)){ return Integer.valueOf(date.substring(5,7)); } throw new RuntimeException("Invalid Date Format"); } /** * Get year from date String * * @param date * @return year */ public static int getYearFromDateString(String date){ if(validateDate(date)){ return Integer.valueOf(date.substring(0,4)); } throw new RuntimeException("Invalid Date Format"); } /** * Validates if date is in yyyy/mm/dd format * * @param date * @return boolean */ public static boolean validateDate(String date){ if(date!=null && !date.isEmpty()) { return date.matches("[0-9]{4}[-][0-9]{2}[-][0-9]{2}"); } throw new RuntimeException("Date String is Null/Empty"); } }
[ "saurabhmanwani@gmail.com" ]
saurabhmanwani@gmail.com
5d0ac2bc40cd17bfdb2f180391420d92cc0f9fc3
6850150f5cc2a983056ebcce2cafe0c34848136a
/Spring/OnlineMovieTicketSystem/src/main/java/com/cg/OnlineMovieTicketSystem/controller/BookingController.java
3581fee92c09d6158fa43a4cd4442f3bcb4b128f
[]
no_license
tushartevetia/SPRINT2
7b8f2c9d7dc69ecd0999069987c1a8a3ef12c50d
f99071cd63b66271abec3d0f6ee4e729c30a9631
refs/heads/master
2022-07-13T20:32:11.679113
2020-05-13T10:14:41
2020-05-13T10:14:41
260,219,986
0
0
null
null
null
null
UTF-8
Java
false
false
4,119
java
package com.cg.OnlineMovieTicketSystem.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.CrossOrigin; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; import com.cg.OnlineMovieTicketSystem.exception.UserNamePasswordNotProvidedException; import com.cg.OnlineMovieTicketSystem.model.Booking; import com.cg.OnlineMovieTicketSystem.model.User; import com.cg.OnlineMovieTicketSystem.service.BookingService; import com.cg.OnlineMovieTicketSystem.service.MovieService; import com.cg.OnlineMovieTicketSystem.service.TheaterService; import com.cg.OnlineMovieTicketSystem.service.UserService; /* * @author-Tushar Tevetia */ @RestController @RequestMapping("/customer") @CrossOrigin(origins = "*", allowedHeaders = "*") public class BookingController { @Autowired private BookingService bookingService; @Autowired private MovieService movieService; @Autowired private TheaterService theaterService; @Autowired private UserService userService; //-------------------------------------------Do Booking------------------------------------------------------------------- @RequestMapping(value="/booking/doBooking",method=RequestMethod.POST,consumes = MediaType.APPLICATION_JSON_VALUE) public Booking addBooking(@RequestBody Booking booking) { return bookingService.addBooking(booking); } //--------------------------------------------Cancel Booking-------------------------------------------------------------- @RequestMapping(value="/booking/cancelbooking/{bookingId}",method=RequestMethod.DELETE) public String cancelBooking(@PathVariable("bookingId")Integer bookingId) { return bookingService.cancelBooking(bookingId); } //--------------------------------------------Login------------------------------------------------------------------- @GetMapping("/Login/Validate/{name}/{password}") public int validateLogin(@PathVariable String name,@PathVariable String password) { if(name.contentEquals("null") || password.contentEquals("null")) { throw new UserNamePasswordNotProvidedException("UserName or Password Should Not be Empty"); } else return userService.validateLogin(name, password); } //---------------------------------------------SignUp/Register New User---------------------------------------------- @PostMapping("/SignUp/Register") public ResponseEntity<String> signUp(@RequestBody User userobject) { // if(userobject.getName().contentEquals("null")) throw new MovieException("Empty Name not allowed"); userService.signUp(userobject); return new ResponseEntity<String>("User Successfully Created",HttpStatus.OK); } /* * @GetMapping("/User/UserName/{name}") public List<Customer> * getEmployeeByUserName(@PathVariable String name) { return * userService.getUserByUserName(name); } */ // @GetMapping("/User/custId/{name}") // public int getIdByName(@PathVariable String name) // { // return userService.getIdByName(name); // } //----------------------------------------------Get Login Details-------------------------------------------------------- @GetMapping("/Login/LoginDetails/{name}") public User loginDetails(@PathVariable ("name") String name) { return userService.loginDetails(name); } //-----------------------------------------------------Change Password--------------------------------------------------- @PutMapping("/Login/ChangePassword") public boolean changePassword(@RequestBody User login) { return userService.changePassword(login); } }
[ "tushartevetia@gmail.com" ]
tushartevetia@gmail.com
b27cf35dbc03389868aa37fe4f30a2bf04afa644
4fc929e44e4c8ca07faa85cc7fe3f68bf1005c61
/src/com/facebook/buck/jvm/java/abi/StubJarClassEntry.java
9d1d62c7da8253a49770a3c15f10274b9a9d600d
[ "Apache-2.0" ]
permissive
johnblaze321/buck
99a70237f4104acdb7a8052ff651f8a8f1d96873
3964170ba4ecb7d5c0f269e0bd6a6d44e157950f
refs/heads/master
2020-12-02T11:04:47.801319
2017-07-07T22:41:43
2017-07-07T23:53:13
96,597,214
1
0
null
2017-07-08T05:03:15
2017-07-08T05:03:15
null
UTF-8
Java
false
false
6,010
java
/* * Copyright 2017-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. You may obtain * a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ package com.facebook.buck.jvm.java.abi; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.nio.file.Path; import java.util.ArrayList; import java.util.List; import java.util.Set; import javax.annotation.Nullable; import org.objectweb.asm.ClassVisitor; import org.objectweb.asm.ClassWriter; import org.objectweb.asm.Opcodes; import org.objectweb.asm.tree.ClassNode; import org.objectweb.asm.tree.InnerClassNode; class StubJarClassEntry extends StubJarEntry { @Nullable private final Set<String> referencedClassNames; private final Path path; private final ClassNode stub; @Nullable public static StubJarClassEntry of(LibraryReader input, Path path, boolean sourceAbiCompatible) throws IOException { ClassNode stub = new ClassNode(Opcodes.ASM5); // As we read the class in, we create a partial stub that removes non-ABI methods and fields // but leaves the entire InnerClasses table. We record all classes that are referenced from // ABI methods and fields, and will use that information later to filter the InnerClasses table. ClassReferenceTracker referenceTracker = new ClassReferenceTracker(stub); ClassVisitor firstLevelFiltering = new AbiFilteringClassVisitor(referenceTracker); // If we want ABIs that are compatible with those generated from source, we add a visitor // at the very start of the chain which transforms the event stream coming out of `ClassNode` // to look like what ClassVisitorDriverFromElement would have produced. if (sourceAbiCompatible) { firstLevelFiltering = new SourceAbiCompatibleVisitor(firstLevelFiltering); } input.visitClass(path, firstLevelFiltering); // The synthetic package-info class is how package annotations are recorded; that one is // actually used by the compiler if (!isAnonymousOrLocalOrSyntheticClass(stub) || stub.name.endsWith("/package-info")) { return new StubJarClassEntry(path, stub, referenceTracker.getReferencedClassNames()); } return null; } private StubJarClassEntry(Path path, ClassNode stub, Set<String> referencedClassNames) { this.path = path; this.stub = stub; this.referencedClassNames = referencedClassNames; } @Override public void write(StubJarWriter writer) throws IOException { writer.writeEntry(path, this::openInputStream); } private InputStream openInputStream() throws IOException { ClassWriter writer = new ClassWriter(0); ClassVisitor visitor = writer; visitor = new InnerClassSortingClassVisitor(stub.name, visitor); visitor = new AbiFilteringClassVisitor(visitor, referencedClassNames); stub.accept(visitor); return new ByteArrayInputStream(writer.toByteArray()); } private static boolean isAnonymousOrLocalOrSyntheticClass(ClassNode node) { if ((node.access & Opcodes.ACC_SYNTHETIC) == Opcodes.ACC_SYNTHETIC) { return true; } InnerClassNode innerClass = getInnerClassMetadata(node); while (innerClass != null) { if (innerClass.outerName == null) { return true; } innerClass = getInnerClassMetadata(node, innerClass.outerName); } return false; } @Nullable private static InnerClassNode getInnerClassMetadata(ClassNode node) { String name = node.name; return getInnerClassMetadata(node, name); } @Nullable private static InnerClassNode getInnerClassMetadata(ClassNode node, String className) { for (InnerClassNode innerClass : node.innerClasses) { if (innerClass.name.equals(className)) { return innerClass; } } return null; } private static class InnerClassSortingClassVisitor extends ClassVisitor { private final String className; private final List<InnerClassNode> innerClasses = new ArrayList<>(); private InnerClassSortingClassVisitor(String className, ClassVisitor cv) { super(Opcodes.ASM5, cv); this.className = className; } @Override public void visitInnerClass(String name, String outerName, String innerName, int access) { innerClasses.add(new InnerClassNode(name, outerName, innerName, access)); } @Override public void visitEnd() { innerClasses.sort( (o1, o2) -> { // Enclosing classes and member classes should come first, with their order preserved boolean o1IsEnclosingOrMember = isEnclosingOrMember(o1); boolean o2IsEnclosingOrMember = isEnclosingOrMember(o2); if (o1IsEnclosingOrMember && o2IsEnclosingOrMember) { // Preserve order among these return 0; } else if (o1IsEnclosingOrMember) { return -1; } else if (o2IsEnclosingOrMember) { return 1; } // References to other classes get sorted. return o1.name.compareTo(o2.name); }); for (InnerClassNode innerClass : innerClasses) { innerClass.accept(cv); } super.visitEnd(); } private boolean isEnclosingOrMember(InnerClassNode innerClass) { if (className.equals(innerClass.name)) { // Self! return true; } if (className.equals(innerClass.outerName)) { // Member class return true; } // Enclosing class return className.startsWith(innerClass.name + "$"); } } }
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
77e01ec52a30978fbd1304de549e14e488995dc5
883c2058ccaf2bf2d0145f1e34eb9142d9fd900d
/src/main/java/com/as/structural/proxy/gumballWithoutProxy/GumballMachine.java
9a2302269124bb01ea4084d700570626c899ee5e
[]
no_license
AndriySV/JavaPatterns
6eac712970da98a8aed02fcf38e2d7db6b0322cf
bed7e829435a39d19d08cd9e07755dfd91035911
refs/heads/develop
2021-06-25T00:51:06.680581
2017-03-25T20:14:57
2017-03-25T20:14:57
27,065,257
2
0
null
2014-12-10T18:40:19
2014-11-24T07:20:31
Java
UTF-8
Java
false
false
2,457
java
package com.as.structural.proxy.gumballWithoutProxy; import com.as.structural.proxy.gumballWithoutProxy.state.HasQuarterState; import com.as.structural.proxy.gumballWithoutProxy.state.NoQuarterState; import com.as.structural.proxy.gumballWithoutProxy.state.SoldOutState; import com.as.structural.proxy.gumballWithoutProxy.state.SoldState; import com.as.structural.proxy.gumballWithoutProxy.state.State; import com.as.structural.proxy.gumballWithoutProxy.state.WinnerState; public class GumballMachine { State soldOutState; State noQuarterState; State hasQuarterState; State soldState; State winnerState; State state = soldOutState; int count = 0; String location; public GumballMachine(String location, int count) { soldOutState = new SoldOutState(this); noQuarterState = new NoQuarterState(this); hasQuarterState = new HasQuarterState(this); soldState = new SoldState(this); winnerState = new WinnerState(this); this.count = count; if (count > 0) { state = noQuarterState; } this.location = location; } public void insertQuarter() { state.insertQuarter(); } public void ejectQuarter() { state.ejectQuarter(); } public void turnCrank() { state.turnCrank(); state.dispense(); } public void setState(State state) { this.state = state; } public void releaseBall() { System.out.println("A gumball comes rolling out the slot..."); if (count != 0) { count = count - 1; } } public int getCount() { return count; } public void refill(int count) { this.count = count; state = noQuarterState; } public State getState() { return state; } public String getLocation() { return location; } public State getSoldOutState() { return soldOutState; } public State getNoQuarterState() { return noQuarterState; } public State getHasQuarterState() { return hasQuarterState; } public State getSoldState() { return soldState; } public State getWinnerState() { return winnerState; } public String toString() { StringBuffer result = new StringBuffer(); result.append("\nMighty Gumball, Inc."); result.append("\nJava-enabled Standing Gumball Model #2004"); result.append("\nInventory: " + count + " gumball"); if (count != 1) { result.append("s"); } result.append("\n"); result.append("Machine is " + state + "\n"); return result.toString(); } }
[ "A.S.Elips@gmail.com" ]
A.S.Elips@gmail.com
396d6750fd483d78d5152c8448b944d693591c6e
e5d32248bada988a2498379b0338b5a0720d5d53
/src/main/java/models/Turno.java
491fae26cfad71d285ed4aec88bc73856808c9c1
[ "MIT" ]
permissive
Felp13-zz/CEETeca
27abd0d1974534a3b5f700514d96655b6dab60f9
712dcc332ea2dbb5f3eee2093ebdc7597ef25f3c
refs/heads/master
2022-09-30T12:25:07.618352
2018-11-21T19:05:09
2018-11-21T19:05:09
158,616,036
0
1
null
null
null
null
UTF-8
Java
false
false
1,477
java
package models; // Generated 20/11/2018 13:58:57 by Hibernate Tools 4.3.1 import java.util.HashSet; import java.util.Set; /** * Turno generated by hbm2java */ public class Turno implements java.io.Serializable { private int codigoTurno; private Curso curso; private char descricaoTurno; private Set modulos = new HashSet(0); public Turno() { } public Turno(int codigoTurno, Curso curso, char descricaoTurno) { this.codigoTurno = codigoTurno; this.curso = curso; this.descricaoTurno = descricaoTurno; } public Turno(int codigoTurno, Curso curso, char descricaoTurno, Set modulos) { this.codigoTurno = codigoTurno; this.curso = curso; this.descricaoTurno = descricaoTurno; this.modulos = modulos; } public int getCodigoTurno() { return this.codigoTurno; } public void setCodigoTurno(int codigoTurno) { this.codigoTurno = codigoTurno; } public Curso getCurso() { return this.curso; } public void setCurso(Curso curso) { this.curso = curso; } public char getDescricaoTurno() { return this.descricaoTurno; } public void setDescricaoTurno(char descricaoTurno) { this.descricaoTurno = descricaoTurno; } public Set getModulos() { return this.modulos; } public void setModulos(Set modulos) { this.modulos = modulos; } }
[ "wendelmenegardo@gmail.com" ]
wendelmenegardo@gmail.com
28ddc4ea7cd3ddc5c69d1a225d9eb8676da313cb
c4623aa95fb8cdd0ee1bc68962711c33af44604e
/src/com/yelp/android/ui/util/aj$b.java
b84564dbefc40888d0612a46ebf67d8b8e0f66cc
[]
no_license
reverseengineeringer/com.yelp.android
48f7f2c830a3a1714112649a6a0a3110f7bdc2b1
b0ac8d4f6cd5fc5543f0d8de399b6d7b3a2184c8
refs/heads/master
2021-01-19T02:07:25.997811
2016-07-19T16:37:24
2016-07-19T16:37:24
38,555,675
1
0
null
null
null
null
UTF-8
Java
false
false
2,522
java
package com.yelp.android.ui.util; import android.text.TextUtils; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.TextView; public class aj$b<Clearable extends BaseAdapter, extends g> { public final Clearable a; public CharSequence b; public final int[] c; public final int d; public final View e; public final View f; public boolean g; public final boolean h; public boolean i = true; public aj$b(Clearable paramClearable, CharSequence paramCharSequence, int[] paramArrayOfInt, int paramInt, View paramView1, View paramView2) { a = paramClearable; b = paramCharSequence; c = paramArrayOfInt; d = paramInt; e = paramView1; f = paramView2; if ((paramView1 != null) || (!TextUtils.isEmpty(paramCharSequence))) { bool1 = true; g = bool1; if (paramView2 == null) { break label88; } } label88: for (boolean bool1 = bool2;; bool1 = false) { h = bool1; return; bool1 = false; break; } } private View a(View paramView, ViewGroup paramViewGroup) { if (e != null) { paramViewGroup = e; return paramViewGroup; } if (paramView == null) { if (paramViewGroup == null) { throw new IllegalArgumentException("If convertView is null a parent must be supplied"); } paramView = new TextView(paramViewGroup.getContext(), null, d); } for (;;) { TextView localTextView = (TextView)paramView; localTextView.setText(b); paramViewGroup = paramView; if (c == null) { break; } localTextView.setCompoundDrawablesWithIntrinsicBounds(c[0], c[1], c[2], c[3]); return paramView; } } public View a() { return e; } public void a(CharSequence paramCharSequence) { b = paramCharSequence; if ((e != null) || (!TextUtils.isEmpty(b))) {} for (boolean bool = true;; bool = false) { g = bool; return; } } public View b() { return f; } public String toString() { if (a != null) { return String.format("\nSection[types:%s, header:%s, footer:%s size:%s]", new Object[] { Integer.valueOf(a.getViewTypeCount()), Boolean.valueOf(g), Boolean.valueOf(h), Integer.valueOf(a.getCount()) }); } return "Empty"; } } /* Location: * Qualified Name: com.yelp.android.ui.util.aj.b * Java Class Version: 6 (50.0) * JD-Core Version: 0.7.1 */
[ "reverseengineeringer@hackeradmin.com" ]
reverseengineeringer@hackeradmin.com
65d722b5f3dbfeb1096992d61315f22cede83cb5
e9f93f3fe01cae5c67de7d85226fe24fb373ea64
/3주차/Servlet 연습1/ServletTest/src/com/example/model/UserTable.java
d48f80508abe13c223a8ba8c37f06ab64f7711e6
[]
no_license
final567/DataStreams
73755cb57a930c4d27f7a4e33d5bf6094033b517
61cda37207ce90d6fa3c22630d12340b661bc5cd
refs/heads/master
2021-01-01T19:11:29.638666
2013-08-23T01:03:42
2013-08-23T01:03:42
null
0
0
null
null
null
null
UTF-8
Java
false
false
824
java
package com.example.model; import java.util.*; public class UserTable { static ArrayList<User> userTable = new ArrayList<User>(); public void setUserTable(String name, int age, int phoneNumber) { User user = new User(); user.setUser(name, age, phoneNumber); userTable.add(user); } public ArrayList getUserTable() { return userTable; } /* public ArrayList getUserNameList(int num) { ArrayList<String> userNameList = new ArrayList<String>(); Iterator it = userTable.iterator(); while(it.hasNext()) { userNameList.add(userTable.get((int) it.next()).getName()); } return userNameList; } public int getUserAge(int num) { return userTable.get(num).getAge(); } public int getUserPhoneNumber(int num) { return userTable.get(num).getPhoneNumber(); } //*/ }
[ "final-ff7@hanmail.net" ]
final-ff7@hanmail.net
b6f24218b8232757a21bb72f6f8552c4a2e22c77
515065a037ded309507e4f499b44f8f34fffea51
/Aula JAva/IMC.java
942b348857ef7a8e0331ef34b454bbcac6939a93
[]
no_license
tonycasper/Facul
2fd2e02750768ace203278c61bb53076046f60b1
0f615f478a07aafbc1f8d859e63f2623aca2a217
refs/heads/master
2020-05-29T22:08:30.101446
2017-04-23T17:21:54
2017-04-23T17:21:54
82,611,182
0
0
null
null
null
null
WINDOWS-1252
Java
false
false
438
java
import javax.swing.JOptionPane; public class IMC { public static void main (String args[]) { double dQtddias; //pegando os dados String sIdade = JOptionPane.showInputDialog( "Digite a sua idade:"); double dIdade = Double.parseDouble(sIdade); dQtdias = dIdade * 365; JOptionPane.showMessageDialog(null, "A quantidade de dias é:" + dQtdias); } }
[ "81717626@animaedu.intranet" ]
81717626@animaedu.intranet
23e48b1a4087dea5ffa83bce740e4b906857f95e
776b8f266e917fe3127ea641afc005c89b08c363
/src/main/java/com/jba/annotation/UniqueUsernameValidator.java
8a120f4f2a16f12b1f4b3f056dbbfc74bcb38c74
[]
no_license
Olefir17/hello-from-blog
4186fe69caf92c7775f3c7964458cef7ba63d3b1
43b4b4ecccdd558965db532dbe4ea1cb0af1178e
refs/heads/master
2021-01-25T07:55:06.583479
2017-06-04T09:39:35
2017-06-04T09:39:35
93,686,217
0
0
null
null
null
null
UTF-8
Java
false
false
768
java
package com.jba.annotation; /** * Created by Анастасия on 09.05.2017. */ import javax.validation.ConstraintValidator; import javax.validation.ConstraintValidatorContext; import org.springframework.beans.factory.annotation.Autowired; import com.jba.repository.UserRepository; public class UniqueUsernameValidator implements ConstraintValidator<UniqueUsername, String> { @Autowired private UserRepository userRepository; @Override public void initialize(UniqueUsername constraintAnnotation) { } @Override public boolean isValid(String username, ConstraintValidatorContext context) { if(userRepository == null) { return true; } return userRepository.findByName(username) == null; } }
[ "anastasia.olefir@yandex.ua" ]
anastasia.olefir@yandex.ua
e1f564ffde7e14f6a3d0499be1b85b890c9d5a3e
793df459501d0113d6acdd41faf590122a242796
/confu-master/benchmarks/xalan/original_source_from_jdcore/org/apache/xalan/xsltc/compiler/UnsupportedElement.java
8404c8b3c745d88e4ac85683a8fb6c247fbb6357
[ "Apache-2.0" ]
permissive
tsmart-date/nasac-2017-demo
fc9c927eb6cc88e090066fc351b58c74a79d936e
07f2d3107f1b40984ffda9e054fa744becd8c8a3
refs/heads/master
2021-07-15T21:29:42.245245
2017-10-24T14:28:14
2017-10-24T14:28:14
105,340,725
0
1
null
null
null
null
UTF-8
Java
false
false
3,012
java
package org.apache.xalan.xsltc.compiler; import java.util.Vector; import org.apache.bcel.generic.ConstantPoolGen; import org.apache.bcel.generic.INVOKESTATIC; import org.apache.bcel.generic.InstructionList; import org.apache.bcel.generic.PUSH; import org.apache.xalan.xsltc.compiler.util.ClassGenerator; import org.apache.xalan.xsltc.compiler.util.ErrorMsg; import org.apache.xalan.xsltc.compiler.util.MethodGenerator; import org.apache.xalan.xsltc.compiler.util.Type; import org.apache.xalan.xsltc.compiler.util.TypeCheckError; import org.apache.xalan.xsltc.compiler.util.Util; final class UnsupportedElement extends SyntaxTreeNode { private Vector _fallbacks = null; private ErrorMsg _message = null; private boolean _isExtension = false; public UnsupportedElement(String uri, String prefix, String local, boolean isExtension) { super(uri, prefix, local); _isExtension = isExtension; } public void setErrorMessage(ErrorMsg message) { _message = message; } public void display(int indent) { indent(indent); Util.println("Unsupported element = " + _qname.getNamespace() + ":" + _qname.getLocalPart()); displayContents(indent + 4); } private void processFallbacks(Parser parser) { Vector children = getContents(); if (children != null) { int count = children.size(); for (int i = 0; i < count; i++) { SyntaxTreeNode child = (SyntaxTreeNode)children.elementAt(i); if ((child instanceof Fallback)) { Fallback fallback = (Fallback)child; fallback.activate(); fallback.parseContents(parser); if (_fallbacks == null) { _fallbacks = new Vector(); } _fallbacks.addElement(child); } } } } public void parseContents(Parser parser) { processFallbacks(parser); } public Type typeCheck(SymbolTable stable) throws TypeCheckError { if (_fallbacks != null) { int count = _fallbacks.size(); for (int i = 0; i < count; i++) { Fallback fallback = (Fallback)_fallbacks.elementAt(i); fallback.typeCheck(stable); } } return Type.Void; } public void translate(ClassGenerator classGen, MethodGenerator methodGen) { if (_fallbacks != null) { int count = _fallbacks.size(); for (int i = 0; i < count; i++) { Fallback fallback = (Fallback)_fallbacks.elementAt(i); fallback.translate(classGen, methodGen); } } else { ConstantPoolGen cpg = classGen.getConstantPool(); InstructionList il = methodGen.getInstructionList(); int unsupportedElem = cpg.addMethodref("org.apache.xalan.xsltc.runtime.BasisLibrary", "unsupported_ElementF", "(Ljava/lang/String;Z)V"); il.append(new PUSH(cpg, getQName().toString())); il.append(new PUSH(cpg, _isExtension)); il.append(new INVOKESTATIC(unsupportedElem)); } } }
[ "liuhan0518@gmail.com" ]
liuhan0518@gmail.com
396caf74208611947ae3a43f6d71744ba554f2c8
0126b0f607f8f1918d7261d82c86db5c05924c46
/ProjectExample/src/com/example/utils/ScreenUtils.java
a65b66ddd8f1d48acbea2ecb82f576c755308f5c
[]
no_license
knightneo/heart_rate_android
dc25d6d2d8c279cc0ec966c28fa6c0b509ebe5c8
80b6ec79ac663f59db7ea1717c982f7f2734e8fe
refs/heads/master
2016-09-07T18:41:53.249204
2015-09-07T15:13:43
2015-09-07T15:13:43
42,059,981
0
0
null
null
null
null
GB18030
Java
false
false
2,931
java
package com.example.utils; import android.app.Activity; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Rect; import android.util.DisplayMetrics; import android.view.View; import android.view.WindowManager; /** * 获得屏幕相关的辅助类 * * @author 吴彧 * */ public class ScreenUtils { private ScreenUtils() { /* cannot be instantiated */ throw new UnsupportedOperationException("cannot be instantiated"); } /** * 获得屏幕高度 * * @param context * @return */ public static int getScreenWidth(Context context) { WindowManager wm = (WindowManager) context .getSystemService(Context.WINDOW_SERVICE); DisplayMetrics outMetrics = new DisplayMetrics(); wm.getDefaultDisplay().getMetrics(outMetrics); return outMetrics.widthPixels; } /** * 获得屏幕宽度 * * @param context * @return */ public static int getScreenHeight(Context context) { WindowManager wm = (WindowManager) context .getSystemService(Context.WINDOW_SERVICE); DisplayMetrics outMetrics = new DisplayMetrics(); wm.getDefaultDisplay().getMetrics(outMetrics); return outMetrics.heightPixels; } /** * 获得状态栏的高度 * * @param context * @return */ public static int getStatusHeight(Context context) { int statusHeight = -1; try { Class<?> clazz = Class.forName("com.android.internal.R$dimen"); Object object = clazz.newInstance(); int height = Integer.parseInt(clazz.getField("status_bar_height") .get(object).toString()); statusHeight = context.getResources().getDimensionPixelSize(height); } catch (Exception e) { e.printStackTrace(); } return statusHeight; } /** * 获取当前屏幕截图,包含状态栏 * * @param activity * @return */ public static Bitmap snapShotWithStatusBar(Activity activity) { View view = activity.getWindow().getDecorView(); view.setDrawingCacheEnabled(true); view.buildDrawingCache(); Bitmap bmp = view.getDrawingCache(); int width = getScreenWidth(activity); int height = getScreenHeight(activity); Bitmap bp = null; bp = Bitmap.createBitmap(bmp, 0, 0, width, height); view.destroyDrawingCache(); return bp; } /** * 获取当前屏幕截图,不包含状态栏 * * @param activity * @return */ public static Bitmap snapShotWithoutStatusBar(Activity activity) { View view = activity.getWindow().getDecorView(); view.setDrawingCacheEnabled(true); view.buildDrawingCache(); Bitmap bmp = view.getDrawingCache(); Rect frame = new Rect(); activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame); int statusBarHeight = frame.top; int width = getScreenWidth(activity); int height = getScreenHeight(activity); Bitmap bp = null; bp = Bitmap.createBitmap(bmp, 0, statusBarHeight, width, height - statusBarHeight); view.destroyDrawingCache(); return bp; } }
[ "knightneogarden@gmail.com" ]
knightneogarden@gmail.com
8b881c7724a48eb18c15155df5588d5f75fb85ef
270090f12da37e20cda1d18a837c4fb9d41047ec
/app/src/main/java/com/example/macres3/MainActivity.java
0daa1d1d29d5ee92d6d1b3fbff720f974b6891f9
[]
no_license
manohar52/facility_reservation
88c275ea92b60f66dcb95535b9d2c2412db156e9
397ed385aaadb14aeb6539b1e92d059c13dff9b9
refs/heads/master
2020-07-28T13:36:27.932409
2019-09-19T00:20:59
2019-09-19T00:20:59
209,426,992
0
0
null
null
null
null
UTF-8
Java
false
false
1,572
java
package com.example.macres3; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.Gravity; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; import com.doa.user_dao; import com.model.user; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final EditText username = (EditText) findViewById(R.id.etusername); final EditText password = (EditText) findViewById(R.id.password); final Button loginbtn = (Button) findViewById(R.id.loginbtn); loginbtn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { user_dao udao = new user_dao(getApplicationContext()); user currUser = udao.getUser(username.getText().toString()); if(currUser != null){ Toast toast = Toast.makeText(getApplicationContext(), currUser.getUsername(), Toast.LENGTH_SHORT); toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0); toast.show(); }else{ Toast toast = Toast.makeText(getApplicationContext(), "No user found", Toast.LENGTH_SHORT); toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0); toast.show(); } } }); } }
[ "46411996+manohar52@users.noreply.github.com" ]
46411996+manohar52@users.noreply.github.com
f1dfcfbe47ba0a65f82c7f3c56a42830ca965051
9d90cdf093c0673693aba7b56638f2d4fd24aff9
/src/Gestiones/IGestion.java
6020b71f4642d514850c5b5394104c5c3954bef3
[]
no_license
gisselacedeno/CRUDJava-
24bbc706dc60479df296ef2119c1e108473be265
a99b01261e90782f51d42d8c884fb47de3d0c768
refs/heads/master
2016-09-16T01:22:02.243947
2014-07-13T20:56:17
2014-07-13T20:56:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
538
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 Gestiones; import java.sql.SQLException; /** * * @author */ public interface IGestion { public void Nuevo(); public void Insertar()throws SQLException; public void Consultar()throws SQLException; public void Modificar()throws SQLException; public void Eliminar()throws SQLException; }
[ "gisselitaanabel@hotmail.com" ]
gisselitaanabel@hotmail.com
1d05f29d97b887aa57a0719560c423ac9701759b
948bbbe70b5f914d0f167690e90445d15fabb242
/CSE 111/LAB08/TestStudent9.java
11a46849a00aeefceb30a1da12ee920dd42ba6d8
[]
no_license
SowatRafi/BRACU-LABS-CSE110-221-
d7c5bd2ced2b27c31800010eb46c4d1bacea8965
dbd0315ab2b0317939c084c9d84fbdc0aeae1925
refs/heads/master
2022-11-13T02:12:29.630962
2020-06-25T17:46:05
2020-06-25T17:46:05
274,968,443
1
0
null
2020-06-25T17:23:50
2020-06-25T16:48:41
Java
UTF-8
Java
false
false
515
java
public class TestStudent9{ public static void printShout(Student9 s){ System.out.println("------------------"); System.out.println(s.msg); System.out.println(s.shout()); } public static void main(String [] args){ Student9 s = new Student9(); CSEStudent cs = new CSEStudent(); CSE111Student cs111 = new CSE111Student(); System.out.println(s.msg); System.out.println(cs.msg); System.out.println(cs111.msg); printShout(s); printShout(cs); printShout(cs111); } }
[ "sowat.hossain.rafi@g.bracu.ac.bd" ]
sowat.hossain.rafi@g.bracu.ac.bd
f45a0b292db684fa1c84adbe69f783dbb35c12ef
16cddc9059a075e6eb06846db7991d602b12b73e
/myimrcommon/src/main/java/com/zhl/dispatcher/MessageHandlerContainer.java
bbb5c85b1653d81d7f83be4df3faed8922b934ac
[]
no_license
zhanghailang123/myim
a92a8b03ea816d75459b7fbd4fa6f93fae0532ca
c3032b4b1f5b3f1ff64a8a8279079d8a9284deaf
refs/heads/master
2023-04-06T02:01:47.308570
2021-04-25T07:20:12
2021-04-25T07:20:12
350,256,346
1
0
null
null
null
null
UTF-8
Java
false
false
3,424
java
package com.zhl.dispatcher; import lombok.extern.slf4j.Slf4j; import org.springframework.aop.framework.AopProxyUtils; import org.springframework.beans.factory.InitializingBean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationContext; import org.springframework.stereotype.Component; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.util.HashMap; import java.util.Map; import java.util.Objects; /** * @description: * @author: zhanghailang * @date: 2021/4/11 0011 00:09 */ @Slf4j @Component public class MessageHandlerContainer implements InitializingBean { @Autowired private ApplicationContext applicationContext; /** * 消息类型和MessageHandler的映射 */ private final Map<String,MessageHandler> handlers = new HashMap<String, MessageHandler>(); @Override public void afterPropertiesSet() throws Exception { //通过ApplicationContext获得所有MessageHandler Bean applicationContext.getBeansOfType(MessageHandler.class).values() .forEach(messagehandler -> handlers.put(messagehandler.getType(),messagehandler)); } /** * 获得类型对应的MessageHandler * @param type * @return */ MessageHandler getMessageHandler(String type){ MessageHandler handler = handlers.get(type); if (handler == null){ throw new IllegalArgumentException("找不到匹配类型的MessageHandler处理器"); } return handler; } /** * 获取MessageHandler处理的消息类 * @param handler * @return */ static Class<? extends Message> getMessageClass(MessageHandler handler){ //获取bean对应的Class类名,因为有可能被AOP代理过 Class<?> targetClass = AopProxyUtils.ultimateTargetClass(handler); //获取接口的Type数组 Type[] interfaces = targetClass.getGenericInterfaces(); Class<?> superClass = targetClass.getSuperclass(); while ((Objects.isNull(interfaces) || 0 == interfaces.length) && Objects.nonNull(superClass)){ interfaces = superClass.getGenericInterfaces(); superClass = targetClass.getSuperclass(); } if (Objects.nonNull(interfaces)){ //遍历interfaces数组 for (Type type : interfaces){ //要求type是泛型参数 if (type instanceof ParameterizedType){ ParameterizedType parameterizedType = (ParameterizedType) type; //要求是MessageHandler接口 if (Objects.equals(parameterizedType.getRawType(),MessageHandler.class)){ Type[] actualTypeArguments = parameterizedType.getActualTypeArguments(); //取首个元素 if (Objects.nonNull(actualTypeArguments) && actualTypeArguments.length > 0){ return (Class<Message>) actualTypeArguments[0]; } else { throw new IllegalStateException(String.format("类型(%s)获取不到消息类型",handler)); } } } } } throw new IllegalStateException(String.format("类型(%s)获取不到消息类型",handler)); } }
[ "1187000351@qq.com" ]
1187000351@qq.com