blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
689M
โŒ€
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
131 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
32 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
313
25a885b4a72049828c4d16b44c24fe07cf097308
11fd35f73467f118d8467c54e13e9b7dab6fec98
/qikan/src/main/java/com/qikan/entitys/Log.java
57e8fa92ebc35956a1f6760d9364f559f92651be
[]
no_license
YsongSong/biyesheji
f3261721d25fe1815b9c52a5d979b828ba917795
37e33c6b6bb2dcf48a1a44bcfb86010ec1317df4
refs/heads/master
2020-03-18T17:55:50.228260
2018-05-27T16:00:08
2018-05-27T16:00:08
135,060,992
0
0
null
null
null
null
UTF-8
Java
false
false
1,069
java
package com.qikan.entitys; public class Log { private Integer id; private String content; private String logtype; private String logtime; private Integer userid; private Integer roleid; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getLogtype() { return logtype; } public void setLogtype(String logtype) { this.logtype = logtype; } public String getLogtime() { return logtime; } public void setLogtime(String logtime) { this.logtime = logtime; } public Integer getUserid() { return userid; } public void setUserid(Integer userid) { this.userid = userid; } public Integer getRoleid() { return roleid; } public void setRoleid(Integer roleid) { this.roleid = roleid; } }
[ "775575467@qq.com" ]
775575467@qq.com
56133367202f2c43a9406c34039b1360ffa00dbd
7f8b2a92164bb19359d15e63ff5ab3f4887c9af0
/com.egdbag.content.service.core/src/main/java/com/egdbag/content/service/core/model/survey/Answer.java
830fbb41f646851c62eec2a92a46c6ca99247811
[]
no_license
egdbag/content-service
a8948f3749fdd44b9388224fbdf727e6d6ef1c54
85ac78e18da3e349d88a378103dc08bd00d69b42
refs/heads/main
2023-03-08T18:24:52.900212
2021-02-28T09:32:49
2021-02-28T09:32:49
342,646,512
0
0
null
null
null
null
UTF-8
Java
false
false
463
java
package com.egdbag.content.service.core.model.survey; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import java.util.List; @NoArgsConstructor @AllArgsConstructor @Data @Builder @JsonIgnoreProperties(ignoreUnknown = true) public class Answer { private Integer id; private Integer userId; private List<Integer> optionIds; }
[ "jk3000@yandex.ru" ]
jk3000@yandex.ru
86d4d81588e44998f6d71783fc96dabd8e6f0c6e
756b35ad333a804dcc21f6c892fd72fec2f363a1
/Vote-Android/App/src/main/java/master/if26/vote/Model/Winner.java
b6c57fa7aa61cfea75e96536a61efd1ef75c1e0e
[]
no_license
NicolasDalayer/Application-Vote
1fa56307cbcb3f0a776841c645d1cc2b43d3ebc7
bcf7786873d974cdbc6555de3a8a481a60afb1cd
refs/heads/master
2020-12-24T15:49:30.471758
2014-01-13T23:17:49
2014-01-13T23:17:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
175
java
package master.if26.vote.Model; public class Winner { public int id; public String name; public String candidat; public Vote vote; public User user; }
[ "alexandre.ortiz.o@gmail.com" ]
alexandre.ortiz.o@gmail.com
3db5806cafb6f09dfac677e8a0acd48da871b422
b795095eb484a6850ae6ef57e1a5565185039c3e
/JavaSim/src/com/simulator/trace/CacheFIBTrace.java
6752465130327134703d18c3394945ec9d259ff6
[]
no_license
MaheshReddy/CSE523
99da98e60046b5492511a50c0345ff67e6666f7a
f593b0d8a7319bba206fcec32af3be22094b005c
refs/heads/master
2020-12-25T03:51:27.735007
2013-03-04T02:20:47
2013-03-04T02:20:47
2,524,132
0
2
null
null
null
null
UTF-8
Java
false
false
3,932
java
package com.simulator.trace; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.io.Writer; import java.util.Formatter; import com.simulator.packets.Packets; import com.simulator.controller.SimulationController; import com.simulator.distributions.PacketDistributions; import com.simulator.enums.SimulationTypes; import com.simulator.topology.Grid; import arjuna.JavaSim.Simulation.*;; /* The following class implements the logic of transmitting a packet. It is always called before sending a packet with a * delay, which represents the transmission delay. It is immediately terminated after implementing transmission which is * to simply add the packet into the queue of the destination node. The delay is implemented by calling this class with explicit * delay. * */ public class CacheFIBTrace extends SimulationProcess { //public static Writer fsCacheFIBTrace = null; public CacheFIBTrace () { } public void run() { for (;;) { try { StringBuilder str1 = new StringBuilder(); Formatter str = new Formatter(str1); if (SimulationController.getDistributionType() == SimulationTypes.SIMULATION_DISTRIBUTION_LEAFNODE || SimulationController.getDistributionType() == SimulationTypes.SIMULATION_DISTRIBUTION_GLOBETRAFF_LEAFNODE) { if (SimulationTypes.SIMULATION_CACHE == SimulationController.getCacheAvailability()) { str.format("%(,2.4f\tc\t",SimulationProcess.CurrentTime()); //Integer noNodes = PacketDistributions.leafNodes.size(); /* Tracing leaf nodes cache size */ for (int i = 0; i < PacketDistributions.leafNodes.size(); i++) { str.format("%d\t",Grid.getRouter(PacketDistributions.leafNodes.get(i)).getGlobalCache().usedEntries()); } /* Tracing core nodes cache size */ for (int i = 0; i < Grid.getGridSize(); i++) { if (!PacketDistributions.leafNodes.contains(i)) { str.format("%d\t",Grid.getRouter(i).getGlobalCache().usedEntries()); } } str.format("\n"); } if (SimulationTypes.SIMULATION_FIB == SimulationController.getFibAvailability()) { str.format("%(,2.4f\tf\t",SimulationProcess.CurrentTime()); /* Tracing leaf nodes FIB size */ for (int i = 0; i < PacketDistributions.leafNodes.size(); i++) { str.format("%d\t",Grid.getRouter(PacketDistributions.leafNodes.get(i)).getForwardingTable().size()); } /* Tracing core nodes FIB size */ for (int i = 0; i < Grid.getGridSize(); i++) { if (!PacketDistributions.leafNodes.contains(i)) { str.format("%d\t",Grid.getRouter(i).getForwardingTable().size()); } } str.format("\n"); } } else { if (SimulationTypes.SIMULATION_CACHE == SimulationController.getCacheAvailability()) { str.format("%(,2.4f\tc\t",SimulationProcess.CurrentTime()); /* Tracing Cache sizes of nodes */ for (int i = 0; i < Grid.getGridSize(); i++) { str.format("%d\t",Grid.getRouter(i).getGlobalCache().usedEntries()); } str.format("\n"); } if (SimulationTypes.SIMULATION_FIB == SimulationController.getFibAvailability()) { str.format("%(,2.4f\tf\t",SimulationProcess.CurrentTime()); /* Tracing FIB sizes of nodes */ for (int i = 0; i < Grid.getGridSize(); i++) { str.format("%d\t",Grid.getRouter(i).getForwardingTable().size()); } str.format("\n"); } } Writer f = new BufferedWriter(new FileWriter(Packets.getDataDumpFile() + "_cf",true)); f.write(str.toString()); f.close(); Hold(50); } catch (SimulationException e) {} catch (RestartException e) {} catch (IOException e) {} } } }
[ "ahmed.waliullah.kazi@gmail.com" ]
ahmed.waliullah.kazi@gmail.com
08195a67d4b3e4169bacc0f55b409fbe7831e1f5
1bd43bb144be17c77dec2f0949b728b9e3d6fd2a
/src/com/risesoft/lifeassite/db/service/ClassesService.java
aaa388c86122409ab26c46999e8213617dac2158
[]
no_license
doudou000000/lifeassite
8df4367dfd02c7080f7fd10787026522e4aef7e0
8cd84d79f5d109d680eba58c0be9504d755496e5
refs/heads/master
2021-01-10T12:20:03.735377
2016-01-25T07:17:39
2016-01-25T07:17:39
50,332,416
0
0
null
null
null
null
GB18030
Java
false
false
1,075
java
package com.risesoft.lifeassite.db.service; import java.util.List; import com.risesoft.lifeassite.db.dao.ClassesDao; import com.risesoft.lifeassite.entity.note.Classes; import android.content.Context; public class ClassesService { //็ฑปๅˆซdao ClassesDao dao; public ClassesService(Context context) { super(); dao = new ClassesDao(context); } //ไฟๅญ˜็ฑปๅˆซ public String insert(Classes classes) { if (dao.insertClasses(classes) == 1) { return "ไฟๅญ˜ๆˆๅŠŸ๏ผ"; } else { return null; } } //ๆ›ดๆ–ฐ็ฑปๅˆซ public void update(Classes classes) { dao.updateClasses(classes); } /** * ๆŸฅ่ฏขๆ‰€ๆœ‰็ฑปๅˆซ */ public List<Classes> findAllClasses() { return dao.findAllClassess(); } /** * ๆ นๆฎidๆŸฅ่ฏข็ฑปๅˆซ */ public Classes findById(String id) { try { return dao.findClasses(id); } catch (Exception e) { return null; } } /** * ๆ นๆฎidๅˆ ้™ค็ฑปๅˆซ */ public String deleteById(String id) { if(dao.deleteClasses(id)==1){ return "ๅˆ ้™คๆˆๅŠŸ"; }else{ return "ๅˆ ้™คๅคฑ่ดฅ"; } } }
[ "chengpengfei12@163.com" ]
chengpengfei12@163.com
369e830479e75cd0172b86b9ae62ab39bf4ba8de
e926afa5632d4a92d49e94ae1c7240b0039b67cb
/src/NovelLibraryTester.java
2100b7b7ed6294aae87618a83e8a327df4033cd4
[ "MIT" ]
permissive
PESER/LightNovelOrganiser
9139d5882262dcf72cd16fdbc93fe7110941bf2e
6520f69bb4d1a6a0430179529ef816a8f9a7b65e
refs/heads/master
2021-01-19T05:12:41.906207
2017-04-25T00:11:59
2017-04-25T00:11:59
87,419,523
0
0
null
2017-04-25T00:11:59
2017-04-06T11:01:06
Java
UTF-8
Java
false
false
88
java
public class NovelLibraryTester { public static void main(String[] args) { } }
[ "filip6filip56@gmail.com" ]
filip6filip56@gmail.com
e14ae39e531569e6823f5fb2776f682790d2b88d
0a31013da8745d22f995b421ea42a40b7f7c0b45
/src/main/java/mena/gov/bf/repository/NormeReferenceRepository.java
a22cc066109a0a057d66d2d231865c7644a5fc37
[]
no_license
romaricada/microserviceppm
d8f9d7797533c8043a7ee11c88f3f8849a831e14
f62f585d87b3a4f10c740f10bb32e98a64b8e743
refs/heads/main
2023-06-20T00:10:01.991926
2021-07-17T12:03:07
2021-07-17T12:03:07
385,257,835
0
0
null
null
null
null
UTF-8
Java
false
false
316
java
package mena.gov.bf.repository; import mena.gov.bf.domain.NormeReference; import org.springframework.data.jpa.repository.JpaRepository; import java.util.List; public interface NormeReferenceRepository extends JpaRepository<NormeReference, Long> { List<NormeReference> findNormeReferenceByDeletedIsFalse(); }
[ "adaromaric0123@gmail.com" ]
adaromaric0123@gmail.com
6af648533bf1fc2385eec800b9dfdb76794559e1
8f274ce00750f480fc70aaa751b89c46ee735745
/app/src/main/cpp/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/SynthVoice.java
316d3bc41c5f53c7b3c78414f2098da8c861bd80
[ "Apache-2.0" ]
permissive
stavris8894/Recording_Oboe
82850c6b85f4651c7c1057d1d775c2bd02fd4d84
310a12a571bfa8232750ba0a77c2467de25b44f3
refs/heads/master
2023-03-28T04:38:26.931345
2021-03-27T21:25:00
2021-03-27T21:25:00
352,180,471
0
0
null
null
null
null
UTF-8
Java
false
false
2,270
java
/* * Copyright (C) 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package oboe.apps.OboeTester.app.src.main.java.com.mobileer.miditools.synth; /** * Base class for a polyphonic synthesizer voice. */ public abstract class SynthVoice { private int mNoteIndex; private float mAmplitude; public static final int STATE_OFF = 0; public static final int STATE_ON = 1; private int mState = STATE_OFF; public SynthVoice() { mNoteIndex = -1; } public void noteOn(int noteIndex, int velocity) { mState = STATE_ON; this.mNoteIndex = noteIndex; setAmplitude(velocity / 128.0f); } public void noteOff() { mState = STATE_OFF; } /** * Add the output of this voice to an output buffer. * * @param outputBuffer * @param samplesPerFrame * @param level */ public void mix(float[] outputBuffer, int samplesPerFrame, float level) { int numFrames = outputBuffer.length / samplesPerFrame; for (int i = 0; i < numFrames; i++) { float output = render(); int offset = i * samplesPerFrame; for (int jf = 0; jf < samplesPerFrame; jf++) { outputBuffer[offset + jf] += output * level; } } } public abstract float render(); public boolean isDone() { return mState == STATE_OFF; } public int getNoteIndex() { return mNoteIndex; } public float getAmplitude() { return mAmplitude; } public void setAmplitude(float amplitude) { this.mAmplitude = amplitude; } /** * @param scaler */ public void setFrequencyScaler(float scaler) { } }
[ "stavris.8894@gmail.com" ]
stavris.8894@gmail.com
9bb7ce6a001d5c9cd88feb3b86b02ed379a7e0a8
b22d0ddfeff497333cd3eb24d426089a1a22f09a
/app/src/main/java/ru/geekbrains/android3_4/model/repo/UsersRepo.java
1f5e99c7e334344538b8cec96a1c92e88cbbf282
[]
no_license
vgonikhin/android3_4_hw
3f69d6063d78724eeeb067e164ee2a99a8f13dda
d1b4d67ba4bff411e03640c7e5fc464de70b5576
refs/heads/master
2020-03-19T06:05:28.979820
2018-06-04T17:21:58
2018-06-04T17:21:58
135,989,786
0
0
null
null
null
null
UTF-8
Java
false
false
533
java
package ru.geekbrains.android3_4.model.repo; import java.util.List; import io.reactivex.Observable; import ru.geekbrains.android3_4.model.api.ApiHolder; import ru.geekbrains.android3_4.model.entity.Repository; import ru.geekbrains.android3_4.model.entity.User; public class UsersRepo { public Observable<User> getUser(String username) { return ApiHolder.getApi().getUser(username); } public Observable<List<Repository>> getRepos(String url) { return ApiHolder.getApi().getRepos(url); } }
[ "vgonikhin@gmail.com" ]
vgonikhin@gmail.com
c9e551a0470829e7bd362d662316a7af0895a166
297aa14030ca7a285229d4096ef526c2d8c0cee9
/src/main/java/thread/test2/BLogin.java
f8dcee8f780ced09c8571622908dacc62e42358f
[]
no_license
1064447034/thinkjava
2311cd84f7b30d401daae7ca4ac6f6d63b73e1c5
c08e4c3635fa068f9bae485ea18209c7fd502b03
refs/heads/master
2020-04-06T13:22:26.096788
2019-01-02T05:48:48
2019-01-02T05:48:48
157,496,979
0
0
null
null
null
null
UTF-8
Java
false
false
131
java
package thread.test2; public class BLogin extends Thread { @Override public void run() { LoginServlet.doPost("b", "bb"); } }
[ "zbs39170@ly.com" ]
zbs39170@ly.com
ad776863acda530909911e2b4b57b06df5b6830a
32a7cd8753d6324a391760324480ca36acb43d77
/domain/pg/ParametrageMail.java
70246a0239929d5d10c8c6e33c9bab1031ecf67b
[]
no_license
aymenlaadhari/boardcontroller
4e0faedfa80ace637c013e384fde490d81df0df2
ab88c019974a034965cb09ac07d74d25369c5dd3
refs/heads/master
2021-01-10T14:03:56.368633
2016-01-24T19:38:23
2016-01-24T19:38:23
50,304,062
0
0
null
null
null
null
UTF-8
Java
false
false
1,979
java
package com.yesserp.domain.pg; import java.io.Serializable; import java.util.List; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.OneToMany; import javax.persistence.OneToOne; import javax.persistence.Table; import com.yesserp.domain.gtaparam.Libelle; @Entity @Table(name="pg_ParametrageMail") public class ParametrageMail implements Serializable{ private static final long serialVersionUID = 1L; public ParametrageMail () { } private int code; private List<Libelle> libelles; private ParametrageModuleGlobale parametrageModuleGlobale ; private String protocole ; private String port ; private Boolean securiser ; private Boolean staut ; @Id public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getProtocole() { return protocole; } public void setProtocole(String protocole) { this.protocole = protocole; } public String getPort() { return port; } public void setPort(String port) { this.port = port; } public Boolean getSecuriser() { return securiser; } public void setSecuriser(Boolean securiser) { this.securiser = securiser; } @OneToMany(mappedBy = "parametrageMail") public List<Libelle> getLibelles() { return libelles; } public void setLibelles(List<Libelle> libelles) { this.libelles = libelles; } @OneToOne(mappedBy = "parametrageMail") public ParametrageModuleGlobale getParametrageModuleGlobale() { return parametrageModuleGlobale; } public void setParametrageModuleGlobale( ParametrageModuleGlobale parametrageModuleGlobale) { this.parametrageModuleGlobale = parametrageModuleGlobale; } public Boolean getStaut() { return staut; } public void setStaut(Boolean staut) { this.staut = staut; } }
[ "aymenlaadhari@gmail.com" ]
aymenlaadhari@gmail.com
9e790885385dd20fc01d3a9b8b9d08e2108e57e3
48ca08d1fb62cfbeee23da2639675449826e3c17
/COMP4601-SDA/src/edu/carleton/comp4601/models/ImageDescriptor.java
07dbfb4158855dbea9b3ad2255368aa4c31f5025
[]
no_license
lfroms/COMP4601-SDA
1e12ea853941288356035b4434d8d82ef1b0ce02
a0c9f5393109188d81ce60f393039f64b3dc2528
refs/heads/master
2022-04-06T22:20:52.768553
2020-03-03T16:30:44
2020-03-03T16:30:44
239,851,399
0
0
null
null
null
null
UTF-8
Java
false
false
1,029
java
package edu.carleton.comp4601.models; import org.json.JSONObject; final class ImageDescriptor { private String url; private String altText; public ImageDescriptor(String url, String altText) { this.url = url; this.altText = altText; } // JSON SERIALIZATION =============================================================== public ImageDescriptor(JSONObject object) { this(object.optString(Fields.URL, ""), object.optString(Fields.ALT_TEXT, "")); } public JSONObject toJSON() { JSONObject object = new JSONObject(); object .put(Fields.URL, url) .put(Fields.ALT_TEXT, altText); return object; } // GETTERS ========================================================================== public String getUrl() { return url; } public String getAltText() { return altText; } // FIELD NAMES ====================================================================== private static class Fields { public static final String URL = "url"; public static final String ALT_TEXT = "alt"; } }
[ "lukas@romsicki.com" ]
lukas@romsicki.com
b58ecc476ea381cad381a452d305c50e516e205f
6bee2ddbae378c9a10955fff406910d293556784
/lc-modules/lc-upms-service/src/main/java/com/zhkj/lc/admin/service/SysLogService.java
775d70e5bfe9641a235103d390e73d8769012ed6
[]
no_license
WZCtqs/logistics
e157c7a55f1b64e057698ade190d011bc4089638
aa7d5f8d3b2a67a233ede7a62d3d36fa96437fd4
refs/heads/main
2023-03-12T22:31:11.812654
2021-02-27T00:58:10
2021-02-27T00:58:10
342,530,868
0
0
null
null
null
null
UTF-8
Java
false
false
1,248
java
/* * Copyright (c) 2018-2025, lengleng 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 the lc4cloud.com developer nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * Author: lengleng (wangiegie@gmail.com) */ package com.zhkj.lc.admin.service; import com.baomidou.mybatisplus.service.IService; import com.zhkj.lc.common.entity.SysLog; /** * <p> * ๆ—ฅๅฟ—่กจ ๆœๅŠก็ฑป * </p> * * @author lengleng * @since 2017-11-20 */ public interface SysLogService extends IService<SysLog> { /** * ้€š่ฟ‡IDๅˆ ้™คๆ—ฅๅฟ—๏ผˆ้€ป่พ‘ๅˆ ้™ค๏ผ‰ * * @param id ๆ—ฅๅฟ—ID * @return true/false */ Boolean updateByLogId(Long id); }
[ "1120159229@qq.com" ]
1120159229@qq.com
7672d748ade9a3fcc5b386c5de7fe7d56fa030a7
bc8bdf88cd2aed38a417acbbbba7257bfee46f59
/src/org/example/sudoku/Sudoku.java
f78dfc84c7b827de7a65557a7f10bc3deae96b19
[]
no_license
timothyandrew/android-sudoku
c208da6fa36a3b49029f882e944a787db169e1b1
d46246e0490b569d340f9b3425ee0fff773ffeef
refs/heads/master
2021-01-01T05:53:19.088211
2011-09-21T11:54:09
2011-09-21T11:54:09
2,429,374
1
1
null
null
null
null
UTF-8
Java
false
false
2,696
java
package org.example.sudoku; import android.app.Activity; import android.app.AlertDialog; import android.content.ActivityNotFoundException; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.view.View; import android.view.View.OnClickListener; public class Sudoku extends Activity implements OnClickListener { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); View continueButton = findViewById(R.id.continue_button); continueButton.setOnClickListener(this); View newButton = findViewById(R.id.new_button); newButton.setOnClickListener(this); View aboutButton = findViewById(R.id.about_button); aboutButton.setOnClickListener(this); View exitButton = findViewById(R.id.exit_button); exitButton.setOnClickListener(this); } @Override public void onResume(){ super.onResume(); Music.play(this, R.raw.main); } @Override public void onPause(){ super.onPause(); Music.stop(this); } public void onClick(View v){ switch(v.getId()){ case R.id.about_button: Intent i = new Intent(this, About.class); startActivity(i); break; case R.id.new_button: openNewGameDialog(); break; case R.id.exit_button: finish(); break; } } private void openNewGameDialog(){ new AlertDialog.Builder(this).setTitle(R.string.new_game_title).setItems(R.array.difficulty, new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { startGame(which); } }).show(); } private void startGame(int i){ Log.d("Sudoku", "clicked on " + i); Intent intent = new Intent(this, Game.class); intent.putExtra(Game.KEY_DIFFICULTY, i); try{ startActivity(intent); } catch(ActivityNotFoundException e){ e.printStackTrace(); } } @Override public boolean onCreateOptionsMenu(Menu menu){ super.onCreateOptionsMenu(menu); MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.menu, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item){ switch (item.getItemId()) { case R.id.settings: startActivity(new Intent(this, Prefs.class)); return true; } return false; } }
[ "mail@timothyandrew.net" ]
mail@timothyandrew.net
b9e2c1487facf2323771b6f0f6f3b8a4dd34bb01
7a6466125e10335bc09301d053edecfb7baefa97
/CareerUp/src/Single/package-info.java
200364bf56cd97f43adff4c0f3673ad09bcad891
[]
no_license
YKhung/java-program
15fa1a035ce170d4fa0c49f252b3ec3952ac1a50
6e5ee2ee9531280438ff6d492264752beffbcfe4
refs/heads/master
2021-01-16T02:47:25.482434
2015-05-11T18:24:06
2015-05-11T18:24:06
35,440,370
0
0
null
null
null
null
UTF-8
Java
false
false
57
java
/** * */ /** * @author xianqin * */ package Single;
[ "hongxianqin@hotmail.com" ]
hongxianqin@hotmail.com
9c658967a2789fcd73210090e9638d62d9c2e3e9
47f0071dfe6b01aeb23587efdcce5894a02024d3
/astaadg/obj/Debug/90/android/src/com/companyname/katherine_lopez_term_project_v1/R.java
e13040c0fa420f8e4ce0520dfab66dbaa0a8d39e
[]
no_license
Akashdeep6011/astaadg-project
401c2700246b2e61d52360c5bcbfad6e9ce3e3fa
564363dc1d26bce597d65d44582ef6e60d85b69c
refs/heads/main
2023-02-03T15:21:15.741917
2020-12-20T00:55:39
2020-12-20T00:55:39
322,939,178
0
0
null
null
null
null
UTF-8
Java
false
false
874,858
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.companyname.katherine_lopez_term_project_v1; public final class R { public static final class anim { public static final int abc_fade_in=0x7f010000; public static final int abc_fade_out=0x7f010001; public static final int abc_grow_fade_in_from_bottom=0x7f010002; public static final int abc_popup_enter=0x7f010003; public static final int abc_popup_exit=0x7f010004; public static final int abc_shrink_fade_out_from_bottom=0x7f010005; public static final int abc_slide_in_bottom=0x7f010006; public static final int abc_slide_in_top=0x7f010007; public static final int abc_slide_out_bottom=0x7f010008; public static final int abc_slide_out_top=0x7f010009; public static final int abc_tooltip_enter=0x7f01000a; public static final int abc_tooltip_exit=0x7f01000b; public static final int design_bottom_sheet_slide_in=0x7f01000c; public static final int design_bottom_sheet_slide_out=0x7f01000d; public static final int design_snackbar_in=0x7f01000e; public static final int design_snackbar_out=0x7f01000f; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f020000; public static final int design_fab_hide_motion_spec=0x7f020001; public static final int design_fab_show_motion_spec=0x7f020002; public static final int mtrl_btn_state_list_anim=0x7f020003; public static final int mtrl_btn_unelevated_state_list_anim=0x7f020004; public static final int mtrl_chip_state_list_anim=0x7f020005; public static final int mtrl_fab_hide_motion_spec=0x7f020006; public static final int mtrl_fab_show_motion_spec=0x7f020007; public static final int mtrl_fab_transformation_sheet_collapse_spec=0x7f020008; public static final int mtrl_fab_transformation_sheet_expand_spec=0x7f020009; } public static final class attr { /** * Custom divider drawable to use for elements in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarDivider=0x7f030000; /** * Custom item state list drawable background for action bar items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f030001; /** * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f030002; /** * Size of the Action Bar, including the contextual * bar used to present Action Modes. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap_content</td><td>0</td><td></td></tr> * </table> */ public static final int actionBarSize=0x7f030003; /** * Reference to a style for the split Action Bar. This style * controls the split component that holds the menu/action * buttons. actionBarStyle is still used for the primary * bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f030004; /** * Reference to a style for the Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarStyle=0x7f030005; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f030006; /** * Default style for tabs within an action bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f030007; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f030008; /** * Reference to a theme that should be used to inflate the * action bar. This will be inherited by any widget inflated * into the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTheme=0x7f030009; /** * Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar. Most of the time * this will be a reference to the current theme, but when * the action bar has a significantly different contrast * profile than the rest of the activity the difference * can become important. If this is set to @null the current * theme will be used. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f03000a; /** * Default action button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionButtonStyle=0x7f03000b; /** * Default ActionBar dropdown style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f03000c; /** * An optional layout to be used as an action view. * See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionLayout=0x7f03000d; /** * TextAppearance style that will be applied to text that * appears within action menu items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f03000e; /** * Color for text that appears within action menu items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f03000f; /** * Background drawable to use for action mode UI * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeBackground=0x7f030010; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f030011; /** * Drawable to use for the close action mode button * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f030012; /** * Drawable to use for the Copy action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f030013; /** * Drawable to use for the Cut action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f030014; /** * Drawable to use for the Find action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f030015; /** * Drawable to use for the Paste action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f030016; /** * PopupWindow style to use for action modes when showing as a window overlay. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f030017; /** * Drawable to use for the Select all action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f030018; /** * Drawable to use for the Share action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f030019; /** * Background drawable to use for action mode UI in the lower split bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f03001a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeStyle=0x7f03001b; /** * Drawable to use for the Web Search action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f03001c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f03001d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f03001e; /** * The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item. * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} * for more info. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionProviderClass=0x7f03001f; /** * The name of an optional View class to instantiate and use as an * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionViewClass=0x7f030020; /** * Default ActivityChooserView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f030021; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f030022; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int alertDialogCenterButtons=0x7f030023; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogStyle=0x7f030024; /** * Theme to use for alert dialogs spawned from this theme. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogTheme=0x7f030025; /** * Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int allowStacking=0x7f030026; /** * Alpha multiplier applied to the base color. * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int alpha=0x7f030027; /** * The alphabetic modifier key. This is the modifier when using a keyboard * with alphabetic keys. The values should be kept in sync with KeyEvent * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int alphabeticModifiers=0x7f030028; /** * The length of the arrow head when formed to make an arrow * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int arrowHeadLength=0x7f030029; /** * The length of the shaft when formed to make an arrow * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int arrowShaftLength=0x7f03002a; /** * Default AutoCompleteTextView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f03002b; /** * The maximum text size constraint to be used when auto-sizing text. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeMaxTextSize=0x7f03002c; /** * The minimum text size constraint to be used when auto-sizing text. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeMinTextSize=0x7f03002d; /** * Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides * <code>autoSizeStepGranularity</code> if set. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoSizePresetSizes=0x7f03002e; /** * Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>. The default is 1px. Overwrites * <code>autoSizePresetSizes</code> if set. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeStepGranularity=0x7f03002f; /** * Specify the type of auto-size. Note that this feature is not supported by EditText, * works only for TextView. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td>No auto-sizing (default).</td></tr> * <tr><td>uniform</td><td>1</td><td>Uniform horizontal and vertical text size scaling to fit within the * container.</td></tr> * </table> */ public static final int autoSizeTextType=0x7f030030; /** * Specifies a background drawable for the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int background=0x7f030031; /** * Specifies a background drawable for the bottom component of a split action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f030032; /** * Specifies a background drawable for a second stacked row of the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f030033; /** * Tint to apply to the background. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundTint=0x7f030034; /** * Blending mode used to apply the background tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int backgroundTintMode=0x7f030035; /** * The length of the bars when they are parallel to each other * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int barLength=0x7f030036; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_autoHide=0x7f030037; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_fitToContents=0x7f030038; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_hideable=0x7f030039; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int behavior_overlapTop=0x7f03003a; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * </table> */ public static final int behavior_peekHeight=0x7f03003b; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_skipCollapsed=0x7f03003c; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int borderWidth=0x7f03003d; /** * Style for buttons without an explicit border, often used in groups. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f03003e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomAppBarStyle=0x7f03003f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomNavigationStyle=0x7f030040; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomSheetDialogTheme=0x7f030041; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomSheetStyle=0x7f030042; /** * <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 boxBackgroundColor=0x7f030043; /** * <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>filled</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>outline</td><td>2</td><td></td></tr> * </table> */ public static final int boxBackgroundMode=0x7f030044; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxCollapsedPaddingTop=0x7f030045; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxCornerRadiusBottomEnd=0x7f030046; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxCornerRadiusBottomStart=0x7f030047; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxCornerRadiusTopEnd=0x7f030048; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxCornerRadiusTopStart=0x7f030049; /** * <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 boxStrokeColor=0x7f03004a; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxStrokeWidth=0x7f03004b; /** * Style for buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f03004c; /** * Style for the "negative" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f03004d; /** * Style for the "neutral" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f03004e; /** * Style for the "positive" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f03004f; /** * Style for button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarStyle=0x7f030050; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> */ public static final int buttonGravity=0x7f030051; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int buttonIconDimen=0x7f030052; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f030053; /** * Normal Button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyle=0x7f030054; /** * Small Button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f030055; /** * Tint to apply to the button drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int buttonTint=0x7f030056; /** * Blending mode used to apply the button tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int buttonTintMode=0x7f030057; /** * Background color for CardView. * <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 cardBackgroundColor=0x7f030058; /** * Corner radius for CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int cardCornerRadius=0x7f030059; /** * Elevation for CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int cardElevation=0x7f03005a; /** * Maximum Elevation for CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int cardMaxElevation=0x7f03005b; /** * Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int cardPreventCornerOverlap=0x7f03005c; /** * Add padding in API v21+ as well to have the same measurements with previous versions. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int cardUseCompatPadding=0x7f03005d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int cardViewStyle=0x7f03005e; /** * Default Checkbox style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkboxStyle=0x7f03005f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedChip=0x7f030060; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedIcon=0x7f030061; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int checkedIconEnabled=0x7f030062; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int checkedIconVisible=0x7f030063; /** * Default CheckedTextView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f030064; /** * <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 chipBackgroundColor=0x7f030065; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipCornerRadius=0x7f030066; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipEndPadding=0x7f030067; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipGroupStyle=0x7f030068; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipIcon=0x7f030069; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int chipIconEnabled=0x7f03006a; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipIconSize=0x7f03006b; /** * <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 chipIconTint=0x7f03006c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int chipIconVisible=0x7f03006d; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipMinHeight=0x7f03006e; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipSpacing=0x7f03006f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipSpacingHorizontal=0x7f030070; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipSpacingVertical=0x7f030071; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipStandaloneStyle=0x7f030072; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipStartPadding=0x7f030073; /** * <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 chipStrokeColor=0x7f030074; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipStrokeWidth=0x7f030075; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipStyle=0x7f030076; /** * Close button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeIcon=0x7f030077; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int closeIconEnabled=0x7f030078; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int closeIconEndPadding=0x7f030079; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int closeIconSize=0x7f03007a; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int closeIconStartPadding=0x7f03007b; /** * <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 closeIconTint=0x7f03007c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int closeIconVisible=0x7f03007d; /** * Specifies a layout to use for the "close" item at the starting edge. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeItemLayout=0x7f03007e; /** * Text to set as the content description for the collapse button. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int collapseContentDescription=0x7f03007f; /** * Icon drawable to use for the collapse button. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int collapseIcon=0x7f030080; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int collapsedTitleGravity=0x7f030081; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int collapsedTitleTextAppearance=0x7f030082; /** * The drawing color for the bars * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int color=0x7f030083; /** * Bright complement to the primary branding color. By default, this is the color applied * to framework controls (via colorControlActivated). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorAccent=0x7f030084; /** * Default color of background imagery for floating components, ex. dialogs, popups, and cards. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorBackgroundFloating=0x7f030085; /** * The color applied to framework buttons in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorButtonNormal=0x7f030086; /** * The color applied to framework controls in their activated (ex. checked) state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlActivated=0x7f030087; /** * The color applied to framework control highlights (ex. ripples, list selectors). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlHighlight=0x7f030088; /** * The color applied to framework controls in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlNormal=0x7f030089; /** * Color used for error states and things that need to be drawn to * the user's attention. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorError=0x7f03008a; /** * The primary branding color for the app. By default, this is the color applied to the * action bar background. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorPrimary=0x7f03008b; /** * Dark variant of the primary branding color. By default, this is the color applied to * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorPrimaryDark=0x7f03008c; /** * <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 colorSecondary=0x7f03008d; /** * The color applied to framework switch thumbs in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorSwitchThumbNormal=0x7f03008e; /** * Commit icon shown in the query suggestion row * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int commitIcon=0x7f03008f; /** * The content description associated with the item. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int contentDescription=0x7f030090; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetEnd=0x7f030091; /** * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetEndWithActions=0x7f030092; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetLeft=0x7f030093; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetRight=0x7f030094; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetStart=0x7f030095; /** * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetStartWithNavigation=0x7f030096; /** * Inner padding between the edges of the Card and children of the CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentPadding=0x7f030097; /** * Inner padding between the bottom edge of the Card and children of the CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentPaddingBottom=0x7f030098; /** * Inner padding between the left edge of the Card and children of the CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentPaddingLeft=0x7f030099; /** * Inner padding between the right edge of the Card and children of the CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentPaddingRight=0x7f03009a; /** * Inner padding between the top edge of the Card and children of the CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentPaddingTop=0x7f03009b; /** * <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 contentScrim=0x7f03009c; /** * The background used by framework controls. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int controlBackground=0x7f03009d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int coordinatorLayoutStyle=0x7f03009e; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int cornerRadius=0x7f03009f; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int counterEnabled=0x7f0300a0; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int counterMaxLength=0x7f0300a1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int counterOverflowTextAppearance=0x7f0300a2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int counterTextAppearance=0x7f0300a3; /** * Specifies a layout for custom navigation. Overrides navigationMode. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int customNavigationLayout=0x7f0300a4; /** * Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int defaultQueryHint=0x7f0300a5; /** * Preferred corner radius of dialogs. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dialogCornerRadius=0x7f0300a6; /** * Preferred padding for dialog content. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dialogPreferredPadding=0x7f0300a7; /** * Theme to use for dialogs spawned from this theme. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dialogTheme=0x7f0300a8; /** * Options affecting how the action bar is displayed. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> */ public static final int displayOptions=0x7f0300a9; /** * Specifies the drawable used for item dividers. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int divider=0x7f0300aa; /** * A drawable that may be used as a horizontal divider between visual elements. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerHorizontal=0x7f0300ab; /** * Size of padding on either end of a divider. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dividerPadding=0x7f0300ac; /** * A drawable that may be used as a vertical divider between visual elements. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerVertical=0x7f0300ad; /** * The total size of the drawable * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int drawableSize=0x7f0300ae; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f0300af; /** * ListPopupWindow compatibility * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f0300b0; /** * The preferred item height for dropdown lists. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dropdownListPreferredItemHeight=0x7f0300b1; /** * EditText background drawable. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextBackground=0x7f0300b2; /** * EditText text foreground color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f0300b3; /** * Default EditText style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextStyle=0x7f0300b4; /** * Elevation for the action bar itself * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int elevation=0x7f0300b5; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int enforceMaterialTheme=0x7f0300b6; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int enforceTextAppearance=0x7f0300b7; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int errorEnabled=0x7f0300b8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int errorTextAppearance=0x7f0300b9; /** * The drawable to show in the button for expanding the activities overflow popup. * <strong>Note:</strong> Clients would like to set this drawable * as a clue about the action the chosen activity will perform. For * example, if share activity is to be chosen the drawable should * give a clue that sharing is to be performed. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f0300ba; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int expanded=0x7f0300bb; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int expandedTitleGravity=0x7f0300bc; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int expandedTitleMargin=0x7f0300bd; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int expandedTitleMarginBottom=0x7f0300be; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int expandedTitleMarginEnd=0x7f0300bf; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int expandedTitleMarginStart=0x7f0300c0; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int expandedTitleMarginTop=0x7f0300c1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int expandedTitleTextAppearance=0x7f0300c2; /** * <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>center</td><td>0</td><td></td></tr> * <tr><td>end</td><td>1</td><td></td></tr> * </table> */ public static final int fabAlignmentMode=0x7f0300c3; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int fabCradleMargin=0x7f0300c4; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int fabCradleRoundedCornerRadius=0x7f0300c5; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int fabCradleVerticalOffset=0x7f0300c6; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int fabCustomSize=0x7f0300c7; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>mini</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> */ public static final int fabSize=0x7f0300c8; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int fastScrollEnabled=0x7f0300c9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollHorizontalThumbDrawable=0x7f0300ca; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollHorizontalTrackDrawable=0x7f0300cb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollVerticalThumbDrawable=0x7f0300cc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollVerticalTrackDrawable=0x7f0300cd; /** * Distance from the top of the TextView to the first text baseline. If set, this * overrides the value set for paddingTop. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int firstBaselineToTopHeight=0x7f0300ce; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * <p>May be an integer value, such as "<code>100</code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int floatingActionButtonStyle=0x7f0300cf; /** * The reference to the font file to be used. This should be a file in the res/font folder * and should therefore have an R reference value. E.g. @font/myfont * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int font=0x7f0300d0; /** * The attribute for the font family. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontFamily=0x7f0300d1; /** * The authority of the Font Provider to be used for the request. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderAuthority=0x7f0300d2; /** * The sets of hashes for the certificates the provider should be signed with. This is * used to verify the identity of the provider, and is only required if the provider is not * part of the system image. This value may point to one list or a list of lists, where each * individual list represents one collection of signature hashes. Refer to your font provider's * documentation for these values. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fontProviderCerts=0x7f0300d3; /** * The strategy to be used when fetching font data from a font provider in XML layouts. * This attribute is ignored when the resource is loaded from code, as it is equivalent to the * choice of API between {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and * {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} * (async). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>async</td><td>1</td><td>The async font fetch works as follows. * First, check the local cache, then if the requeted font is not cached, trigger a * request the font and continue with layout inflation. Once the font fetch succeeds, the * target text view will be refreshed with the downloaded font data. The * fontProviderFetchTimeout will be ignored if async loading is specified.</td></tr> * <tr><td>blocking</td><td>0</td><td>The blocking font fetch works as follows. * First, check the local cache, then if the requested font is not cached, request the * font from the provider and wait until it is finished. You can change the length of * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the * default typeface will be used instead.</td></tr> * </table> */ public static final int fontProviderFetchStrategy=0x7f0300d4; /** * The length of the timeout during fetching. * <p>May be an integer value, such as "<code>100</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>forever</td><td>ffffffff</td><td>A special value for the timeout. In this case, the blocking font fetching will not * timeout and wait until a reply is received from the font provider.</td></tr> * </table> */ public static final int fontProviderFetchTimeout=0x7f0300d5; /** * The package for the Font Provider to be used for the request. This is used to verify * the identity of the provider. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderPackage=0x7f0300d6; /** * The query to be sent over to the provider. Refer to your font provider's documentation * on the format of this string. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderQuery=0x7f0300d7; /** * The style of the given font file. This will be used when the font is being loaded into * the font stack and will override any style information in the font's header tables. If * unspecified, the value in the font's header tables will be used. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> */ public static final int fontStyle=0x7f0300d8; /** * The variation settings to be applied to the font. The string should be in the following * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be * used, or the font used does not support variation settings, this attribute needs not be * specified. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontVariationSettings=0x7f0300d9; /** * The weight of the given font file. This will be used when the font is being loaded into * the font stack and will override any weight information in the font's header tables. Must * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value * in the font's header tables will be used. * <p>May be an integer value, such as "<code>100</code>". */ public static final int fontWeight=0x7f0300da; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int foregroundInsidePadding=0x7f0300db; /** * The max gap between the bars when they are parallel to each other * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int gapBetweenBars=0x7f0300dc; /** * Go button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int goIcon=0x7f0300dd; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int headerLayout=0x7f0300de; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int height=0x7f0300df; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int helperText=0x7f0300e0; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int helperTextEnabled=0x7f0300e1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int helperTextTextAppearance=0x7f0300e2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int hideMotionSpec=0x7f0300e3; /** * Set true to hide the action bar on a vertical nested scroll of content. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnContentScroll=0x7f0300e4; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnScroll=0x7f0300e5; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hintAnimationEnabled=0x7f0300e6; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hintEnabled=0x7f0300e7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int hintTextAppearance=0x7f0300e8; /** * Specifies a drawable to use for the 'home as up' indicator. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f0300e9; /** * Specifies a layout to use for the "home" section of the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeLayout=0x7f0300ea; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int hoveredFocusedTranslationZ=0x7f0300eb; /** * Specifies the drawable used for the application icon. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int icon=0x7f0300ec; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int iconEndPadding=0x7f0300ed; /** * <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>start</td><td>1</td><td></td></tr> * <tr><td>textStart</td><td>2</td><td></td></tr> * </table> */ public static final int iconGravity=0x7f0300ee; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int iconPadding=0x7f0300ef; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int iconSize=0x7f0300f0; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int iconStartPadding=0x7f0300f1; /** * Tint to apply to the icon. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int iconTint=0x7f0300f2; /** * Blending mode used to apply the icon tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the iconโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The iconโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int iconTintMode=0x7f0300f3; /** * The default state of the SearchView. If true, it will be iconified when not in * use and expanded when clicked. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int iconifiedByDefault=0x7f0300f4; /** * ImageButton background drawable. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int imageButtonStyle=0x7f0300f5; /** * Specifies a style resource to use for an indeterminate progress spinner. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f0300f6; /** * The maximal number of items initially shown in the activity list. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int initialActivityCount=0x7f0300f7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int insetForeground=0x7f0300f8; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int isLightTheme=0x7f0300f9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemBackground=0x7f0300fa; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemHorizontalPadding=0x7f0300fb; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int itemHorizontalTranslationEnabled=0x7f0300fc; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemIconPadding=0x7f0300fd; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemIconSize=0x7f0300fe; /** * <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 itemIconTint=0x7f0300ff; /** * Specifies padding that should be applied to the left and right sides of * system-provided items in the bar. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemPadding=0x7f030100; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemSpacing=0x7f030101; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemTextAppearance=0x7f030102; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemTextAppearanceActive=0x7f030103; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemTextAppearanceInactive=0x7f030104; /** * <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 itemTextColor=0x7f030105; /** * A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge. * Child views can refer to these keylines for alignment using * layout_keyline="index" where index is a 0-based index into * this array. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int keylines=0x7f030106; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>labeled</td><td>1</td><td></td></tr> * <tr><td>selected</td><td>0</td><td></td></tr> * <tr><td>unlabeled</td><td>2</td><td></td></tr> * </table> */ public static final int labelVisibilityMode=0x7f030107; /** * Distance from the bottom of the TextView to the last text baseline. If set, this * overrides the value set for paddingBottom. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int lastBaselineToBottomHeight=0x7f030108; /** * The layout to use for the search view. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout=0x7f030109; /** * Class name of the Layout Manager to be used. * <p/> * The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager * and have either a default constructor or constructor with the signature * (android.content.Context, android.util.AttributeSet, int, int). * <p/> * If the name starts with a '.', application package is prefixed. * Else, if the name contains a '.', the classname is assumed to be a full class name. * Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layoutManager=0x7f03010a; /** * The id of an anchor view that this view should position relative to. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_anchor=0x7f03010b; /** * Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>center</td><td>11</td><td>Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.</td></tr> * <tr><td>center_horizontal</td><td>1</td><td>Place object in the horizontal center of its container, not changing its size.</td></tr> * <tr><td>center_vertical</td><td>10</td><td>Place object in the vertical center of its container, not changing its size.</td></tr> * <tr><td>clip_horizontal</td><td>8</td><td>Additional option that can be set to have the left and/or right edges of * the child clipped to its container's bounds. * The clip will be based on the horizontal gravity: a left gravity will clip the right * edge, a right gravity will clip the left edge, and neither will clip both edges.</td></tr> * <tr><td>clip_vertical</td><td>80</td><td>Additional option that can be set to have the top and/or bottom edges of * the child clipped to its container's bounds. * The clip will be based on the vertical gravity: a top gravity will clip the bottom * edge, a bottom gravity will clip the top edge, and neither will clip both edges.</td></tr> * <tr><td>end</td><td>800005</td><td>Push object to the end of its container, not changing its size.</td></tr> * <tr><td>fill</td><td>77</td><td>Grow the horizontal and vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_horizontal</td><td>7</td><td>Grow the horizontal size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_vertical</td><td>70</td><td>Grow the vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>left</td><td>3</td><td>Push object to the left of its container, not changing its size.</td></tr> * <tr><td>right</td><td>5</td><td>Push object to the right of its container, not changing its size.</td></tr> * <tr><td>start</td><td>800003</td><td>Push object to the beginning of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> */ public static final int layout_anchorGravity=0x7f03010c; /** * The class name of a Behavior class defining special runtime behavior * for this child view. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layout_behavior=0x7f03010d; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>parallax</td><td>2</td><td></td></tr> * <tr><td>pin</td><td>1</td><td></td></tr> * </table> */ public static final int layout_collapseMode=0x7f03010e; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_collapseParallaxMultiplier=0x7f03010f; /** * Specifies how this view dodges the inset edges of the CoordinatorLayout. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>77</td><td>Dodge all the inset edges.</td></tr> * <tr><td>bottom</td><td>50</td><td>Dodge the bottom inset edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Dodge the end inset edge.</td></tr> * <tr><td>left</td><td>3</td><td>Dodge the left inset edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't dodge any edges</td></tr> * <tr><td>right</td><td>5</td><td>Dodge the right inset edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Dodge the start inset edge.</td></tr> * <tr><td>top</td><td>30</td><td>Dodge the top inset edge.</td></tr> * </table> */ public static final int layout_dodgeInsetEdges=0x7f030110; /** * Specifies how this view insets the CoordinatorLayout and make some other views * dodge it. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Inset the bottom edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Inset the end edge.</td></tr> * <tr><td>left</td><td>3</td><td>Inset the left edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't inset.</td></tr> * <tr><td>right</td><td>5</td><td>Inset the right edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Inset the start edge.</td></tr> * <tr><td>top</td><td>30</td><td>Inset the top edge.</td></tr> * </table> */ public static final int layout_insetEdge=0x7f030111; /** * The index of a keyline this view should position relative to. * android:layout_gravity will affect how the view aligns to the * specified keyline. * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_keyline=0x7f030112; /** * <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>enterAlways</td><td>4</td><td></td></tr> * <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr> * <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr> * <tr><td>scroll</td><td>1</td><td></td></tr> * <tr><td>snap</td><td>10</td><td></td></tr> * <tr><td>snapMargins</td><td>20</td><td></td></tr> * </table> */ public static final int layout_scrollFlags=0x7f030113; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_scrollInterpolator=0x7f030114; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int liftOnScroll=0x7f030115; /** * Explicit height between lines of text. If set, this will override the values set * for lineSpacingExtra and lineSpacingMultiplier. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int lineHeight=0x7f030116; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int lineSpacing=0x7f030117; /** * Drawable used as a background for selected list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f030118; /** * The list divider used in alert dialogs. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f030119; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listItemLayout=0x7f03011a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listLayout=0x7f03011b; /** * Default menu-style ListView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f03011c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f03011d; /** * The preferred list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeight=0x7f03011e; /** * A larger, more robust list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeightLarge=0x7f03011f; /** * A smaller, sleeker list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeightSmall=0x7f030120; /** * The preferred padding along the left edge of list items. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemPaddingLeft=0x7f030121; /** * The preferred padding along the right edge of list items. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemPaddingRight=0x7f030122; /** * Specifies the drawable used for the application logo. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int logo=0x7f030123; /** * A content description string to describe the appearance of the * associated logo image. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int logoDescription=0x7f030124; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int materialButtonStyle=0x7f030125; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int materialCardViewStyle=0x7f030126; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int maxActionInlineWidth=0x7f030127; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int maxButtonHeight=0x7f030128; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int maxImageSize=0x7f030129; /** * When set to true, all children with a weight will be considered having * the minimum size of the largest child. If false, all children are * measured normally. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int measureWithLargestChild=0x7f03012a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int menu=0x7f03012b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f03012c; /** * Text to set as the content description for the navigation button * located at the start of the toolbar. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int navigationContentDescription=0x7f03012d; /** * Icon drawable to use for the navigation button located at * the start of the toolbar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int navigationIcon=0x7f03012e; /** * The type of navigation to use. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>listMode</td><td>1</td><td>The action bar will use a selection list for navigation.</td></tr> * <tr><td>normal</td><td>0</td><td>Normal static title text</td></tr> * <tr><td>tabMode</td><td>2</td><td>The action bar will use a series of horizontal tabs for navigation.</td></tr> * </table> */ public static final int navigationMode=0x7f03012f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int navigationViewStyle=0x7f030130; /** * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) * keyboard. The values should be kept in sync with KeyEvent * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int numericModifiers=0x7f030131; /** * Whether the popup window should overlap its anchor view. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int overlapAnchor=0x7f030132; /** * Bottom padding to use when no buttons are present. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingBottomNoButtons=0x7f030133; /** * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingEnd=0x7f030134; /** * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingStart=0x7f030135; /** * Top padding to use when no title is present. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingTopNoTitle=0x7f030136; /** * The background of a panel when it is inset from the left and right edges of the screen. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelBackground=0x7f030137; /** * Default Panel Menu style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f030138; /** * Default Panel Menu width. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int panelMenuListWidth=0x7f030139; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int passwordToggleContentDescription=0x7f03013a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int passwordToggleDrawable=0x7f03013b; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int passwordToggleEnabled=0x7f03013c; /** * <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 passwordToggleTint=0x7f03013d; /** * <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>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int passwordToggleTintMode=0x7f03013e; /** * Default PopupMenu style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupMenuStyle=0x7f03013f; /** * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupTheme=0x7f030140; /** * Default PopupWindow style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupWindowStyle=0x7f030141; /** * Whether space should be reserved in layout when an icon is missing. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int preserveIconSpacing=0x7f030142; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int pressedTranslationZ=0x7f030143; /** * Specifies the horizontal padding on either end for an embedded progress bar. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int progressBarPadding=0x7f030144; /** * Specifies a style resource to use for an embedded progress bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int progressBarStyle=0x7f030145; /** * Background for the section containing the search query * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int queryBackground=0x7f030146; /** * An optional user-defined query hint string to be displayed in the empty query field. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int queryHint=0x7f030147; /** * Default RadioButton style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int radioButtonStyle=0x7f030148; /** * Default RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyle=0x7f030149; /** * Indicator RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f03014a; /** * Small indicator RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f03014b; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int reverseLayout=0x7f03014c; /** * <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 rippleColor=0x7f03014d; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int scrimAnimationDuration=0x7f03014e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int scrimBackground=0x7f03014f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int scrimVisibleHeightTrigger=0x7f030150; /** * Search icon displayed as a text field hint * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchHintIcon=0x7f030151; /** * Search icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchIcon=0x7f030152; /** * Style for the search query widget. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchViewStyle=0x7f030153; /** * Default SeekBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int seekBarStyle=0x7f030154; /** * A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackground=0x7f030155; /** * Background drawable for borderless standalone items that need focus/pressed states. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f030156; /** * How this item should display in the Action Bar, if present. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>always</td><td>2</td><td>Always show this item in an actionbar, even if it would override * the system's limits of how much stuff to put there. This may make * your action bar look bad on some screens. In most cases you should * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".</td></tr> * <tr><td>collapseActionView</td><td>8</td><td>This item's action view collapses to a normal menu * item. When expanded, the action view takes over a * larger segment of its container.</td></tr> * <tr><td>ifRoom</td><td>1</td><td>Show this item in an action bar if there is room for it as determined * by the system. Favor this option over "always" where possible. * Mutually exclusive with "never" and "always".</td></tr> * <tr><td>never</td><td>0</td><td>Never show this item in an action bar, show it in the overflow menu instead. * Mutually exclusive with "ifRoom" and "always".</td></tr> * <tr><td>withText</td><td>4</td><td>When this item is shown as an action in the action bar, show a text * label with it even if it has an icon representation.</td></tr> * </table> */ public static final int showAsAction=0x7f030157; /** * Setting for which dividers to show. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> */ public static final int showDividers=0x7f030158; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int showMotionSpec=0x7f030159; /** * Whether to draw on/off text. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showText=0x7f03015a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showTitle=0x7f03015b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f03015c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int singleLine=0x7f03015d; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int singleSelection=0x7f03015e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int snackbarButtonStyle=0x7f03015f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int snackbarStyle=0x7f030160; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int spanCount=0x7f030161; /** * Whether bars should rotate or not during transition * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int spinBars=0x7f030162; /** * Default Spinner style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f030163; /** * Default Spinner style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerStyle=0x7f030164; /** * Whether to split the track and leave a gap for the thumb drawable. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int splitTrack=0x7f030165; /** * Sets a drawable as the content of this ImageView. Allows the use of vector drawable * when running on older versions of the platform. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int srcCompat=0x7f030166; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int stackFromEnd=0x7f030167; /** * State identifier indicating the popup will be above the anchor. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_above_anchor=0x7f030168; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_collapsed=0x7f030169; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_collapsible=0x7f03016a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_liftable=0x7f03016b; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_lifted=0x7f03016c; /** * Drawable to display behind the status bar when the view is set to draw behind it. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int statusBarBackground=0x7f03016d; /** * <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 statusBarScrim=0x7f03016e; /** * <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 strokeColor=0x7f03016f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int strokeWidth=0x7f030170; /** * Drawable for the arrow icon indicating a particular item is a submenu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subMenuArrow=0x7f030171; /** * Background for the section containing the action (e.g. voice search) * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int submitBackground=0x7f030172; /** * Specifies subtitle text used for navigationMode="normal" * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int subtitle=0x7f030173; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f030174; /** * A color to apply to the subtitle string. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int subtitleTextColor=0x7f030175; /** * Specifies a style to use for subtitle text. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f030176; /** * Layout for query suggestion rows * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f030177; /** * Minimum width for the switch component * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int switchMinWidth=0x7f030178; /** * Minimum space between the switch and caption text * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int switchPadding=0x7f030179; /** * Default style for the Switch widget. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchStyle=0x7f03017a; /** * TextAppearance style for text displayed on the switch thumb. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchTextAppearance=0x7f03017b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabBackground=0x7f03017c; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabContentStart=0x7f03017d; /** * <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>center</td><td>1</td><td></td></tr> * <tr><td>fill</td><td>0</td><td></td></tr> * </table> */ public static final int tabGravity=0x7f03017e; /** * <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 tabIconTint=0x7f03017f; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int tabIconTintMode=0x7f030180; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabIndicator=0x7f030181; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int tabIndicatorAnimationDuration=0x7f030182; /** * <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 tabIndicatorColor=0x7f030183; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int tabIndicatorFullWidth=0x7f030184; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>0</td><td></td></tr> * <tr><td>center</td><td>1</td><td></td></tr> * <tr><td>stretch</td><td>3</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> */ public static final int tabIndicatorGravity=0x7f030185; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabIndicatorHeight=0x7f030186; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int tabInlineLabel=0x7f030187; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabMaxWidth=0x7f030188; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabMinWidth=0x7f030189; /** * <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>fixed</td><td>1</td><td></td></tr> * <tr><td>scrollable</td><td>0</td><td></td></tr> * </table> */ public static final int tabMode=0x7f03018a; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabPadding=0x7f03018b; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabPaddingBottom=0x7f03018c; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabPaddingEnd=0x7f03018d; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabPaddingStart=0x7f03018e; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabPaddingTop=0x7f03018f; /** * <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 tabRippleColor=0x7f030190; /** * <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 tabSelectedTextColor=0x7f030191; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabStyle=0x7f030192; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabTextAppearance=0x7f030193; /** * <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 tabTextColor=0x7f030194; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int tabUnboundedRipple=0x7f030195; /** * Present the text in ALL CAPS. This may use a small-caps form when available. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int textAllCaps=0x7f030196; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceBody1=0x7f030197; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceBody2=0x7f030198; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceButton=0x7f030199; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceCaption=0x7f03019a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline1=0x7f03019b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline2=0x7f03019c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline3=0x7f03019d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline4=0x7f03019e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline5=0x7f03019f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline6=0x7f0301a0; /** * Text color, typeface, size, and style for the text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f0301a1; /** * The preferred TextAppearance for the primary text of list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f0301a2; /** * The preferred TextAppearance for the secondary text of list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSecondary=0x7f0301a3; /** * The preferred TextAppearance for the primary text of small list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0301a4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceOverline=0x7f0301a5; /** * Text color, typeface, size, and style for header text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=0x7f0301a6; /** * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f0301a7; /** * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f0301a8; /** * Text color, typeface, size, and style for small text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f0301a9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSubtitle1=0x7f0301aa; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSubtitle2=0x7f0301ab; /** * Color of list item text in alert dialogs. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f0301ac; /** * Text color for urls in search suggestions, used by things like global search * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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=0x7f0301ad; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int textEndPadding=0x7f0301ae; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textInputStyle=0x7f0301af; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int textStartPadding=0x7f0301b0; /** * Deprecated. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int theme=0x7f0301b1; /** * The thickness (stroke size) for the bar paint * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int thickness=0x7f0301b2; /** * Amount of padding on either side of text within the switch thumb. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int thumbTextPadding=0x7f0301b3; /** * Tint to apply to the thumb drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int thumbTint=0x7f0301b4; /** * Blending mode used to apply the thumb tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int thumbTintMode=0x7f0301b5; /** * Drawable displayed at each progress position on a seekbar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tickMark=0x7f0301b6; /** * Tint to apply to the tick mark drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tickMarkTint=0x7f0301b7; /** * Blending mode used to apply the tick mark tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int tickMarkTintMode=0x7f0301b8; /** * Tint to apply to the image source. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tint=0x7f0301b9; /** * Blending mode used to apply the image source tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int tintMode=0x7f0301ba; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int title=0x7f0301bb; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int titleEnabled=0x7f0301bc; /** * Specifies extra space on the left, start, right and end sides * of the toolbar's title. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMargin=0x7f0301bd; /** * Specifies extra space on the bottom side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginBottom=0x7f0301be; /** * Specifies extra space on the end side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginEnd=0x7f0301bf; /** * Specifies extra space on the start side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginStart=0x7f0301c0; /** * Specifies extra space on the top side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginTop=0x7f0301c1; /** * {@deprecated Use titleMargin} * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ @Deprecated public static final int titleMargins=0x7f0301c2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextAppearance=0x7f0301c3; /** * A color to apply to the title string. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int titleTextColor=0x7f0301c4; /** * Specifies a style to use for title text. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextStyle=0x7f0301c5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarId=0x7f0301c6; /** * Default Toolar NavigationButtonStyle * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f0301c7; /** * Default Toolbar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarStyle=0x7f0301c8; /** * Foreground color to use for tooltips * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tooltipForegroundColor=0x7f0301c9; /** * Background to use for tooltips * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tooltipFrameBackground=0x7f0301ca; /** * The tooltip text associated with the item. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int tooltipText=0x7f0301cb; /** * Drawable to use as the "track" that the switch thumb slides within. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int track=0x7f0301cc; /** * Tint to apply to the track. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int trackTint=0x7f0301cd; /** * Blending mode used to apply the track tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int trackTintMode=0x7f0301ce; /** * The index of the font in the tcc font file. If the font file referenced is not in the * tcc format, this attribute needs not be specified. * <p>May be an integer value, such as "<code>100</code>". */ public static final int ttcIndex=0x7f0301cf; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int useCompatPadding=0x7f0301d0; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int viewInflaterClass=0x7f0301d1; /** * Voice button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int voiceIcon=0x7f0301d2; /** * Flag indicating whether this window should have an Action Bar * in place of the usual title bar. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBar=0x7f0301d3; /** * Flag indicating whether this window's Action Bar should overlay * application content. Does nothing if the window would not * have an Action Bar. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBarOverlay=0x7f0301d4; /** * Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar). * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionModeOverlay=0x7f0301d5; /** * A fixed height for the window along the major axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedHeightMajor=0x7f0301d6; /** * A fixed height for the window along the minor axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedHeightMinor=0x7f0301d7; /** * A fixed width for the window along the major axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedWidthMajor=0x7f0301d8; /** * A fixed width for the window along the minor axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedWidthMinor=0x7f0301d9; /** * The minimum width the window is allowed to be, along the major * axis of the screen. That is, when in landscape. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowMinWidthMajor=0x7f0301da; /** * The minimum width the window is allowed to be, along the minor * axis of the screen. That is, when in portrait. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowMinWidthMinor=0x7f0301db; /** * Flag indicating whether there should be no title on this window. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowNoTitle=0x7f0301dc; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f040000; public static final int abc_allow_stacked_button_bar=0x7f040001; public static final int abc_config_actionMenuItemAllCaps=0x7f040002; public static final int mtrl_btn_textappearance_all_caps=0x7f040003; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f050000; public static final int abc_background_cache_hint_selector_material_light=0x7f050001; public static final int abc_btn_colored_borderless_text_material=0x7f050002; public static final int abc_btn_colored_text_material=0x7f050003; public static final int abc_color_highlight_material=0x7f050004; public static final int abc_hint_foreground_material_dark=0x7f050005; public static final int abc_hint_foreground_material_light=0x7f050006; public static final int abc_input_method_navigation_guard=0x7f050007; public static final int abc_primary_text_disable_only_material_dark=0x7f050008; public static final int abc_primary_text_disable_only_material_light=0x7f050009; public static final int abc_primary_text_material_dark=0x7f05000a; public static final int abc_primary_text_material_light=0x7f05000b; public static final int abc_search_url_text=0x7f05000c; public static final int abc_search_url_text_normal=0x7f05000d; public static final int abc_search_url_text_pressed=0x7f05000e; public static final int abc_search_url_text_selected=0x7f05000f; public static final int abc_secondary_text_material_dark=0x7f050010; public static final int abc_secondary_text_material_light=0x7f050011; public static final int abc_tint_btn_checkable=0x7f050012; public static final int abc_tint_default=0x7f050013; public static final int abc_tint_edittext=0x7f050014; public static final int abc_tint_seek_thumb=0x7f050015; public static final int abc_tint_spinner=0x7f050016; public static final int abc_tint_switch_track=0x7f050017; public static final int accent_material_dark=0x7f050018; public static final int accent_material_light=0x7f050019; public static final int background_floating_material_dark=0x7f05001a; public static final int background_floating_material_light=0x7f05001b; public static final int background_material_dark=0x7f05001c; public static final int background_material_light=0x7f05001d; public static final int bright_foreground_disabled_material_dark=0x7f05001e; public static final int bright_foreground_disabled_material_light=0x7f05001f; public static final int bright_foreground_inverse_material_dark=0x7f050020; public static final int bright_foreground_inverse_material_light=0x7f050021; public static final int bright_foreground_material_dark=0x7f050022; public static final int bright_foreground_material_light=0x7f050023; public static final int browser_actions_bg_grey=0x7f050024; public static final int browser_actions_divider_color=0x7f050025; public static final int browser_actions_text_color=0x7f050026; public static final int browser_actions_title_color=0x7f050027; public static final int button_material_dark=0x7f050028; public static final int button_material_light=0x7f050029; public static final int cardview_dark_background=0x7f05002a; public static final int cardview_light_background=0x7f05002b; public static final int cardview_shadow_end_color=0x7f05002c; public static final int cardview_shadow_start_color=0x7f05002d; public static final int colorAccent=0x7f05002e; public static final int colorPrimary=0x7f05002f; public static final int colorPrimaryDark=0x7f050030; public static final int design_bottom_navigation_shadow_color=0x7f050031; public static final int design_default_color_primary=0x7f050032; public static final int design_default_color_primary_dark=0x7f050033; public static final int design_error=0x7f050034; public static final int design_fab_shadow_end_color=0x7f050035; public static final int design_fab_shadow_mid_color=0x7f050036; public static final int design_fab_shadow_start_color=0x7f050037; public static final int design_fab_stroke_end_inner_color=0x7f050038; public static final int design_fab_stroke_end_outer_color=0x7f050039; public static final int design_fab_stroke_top_inner_color=0x7f05003a; public static final int design_fab_stroke_top_outer_color=0x7f05003b; public static final int design_snackbar_background_color=0x7f05003c; public static final int design_tint_password_toggle=0x7f05003d; public static final int dim_foreground_disabled_material_dark=0x7f05003e; public static final int dim_foreground_disabled_material_light=0x7f05003f; public static final int dim_foreground_material_dark=0x7f050040; public static final int dim_foreground_material_light=0x7f050041; public static final int error_color_material_dark=0x7f050042; public static final int error_color_material_light=0x7f050043; public static final int foreground_material_dark=0x7f050044; public static final int foreground_material_light=0x7f050045; public static final int highlighted_text_material_dark=0x7f050046; public static final int highlighted_text_material_light=0x7f050047; public static final int ic_launcher_background=0x7f050048; public static final int material_blue_grey_800=0x7f050049; public static final int material_blue_grey_900=0x7f05004a; public static final int material_blue_grey_950=0x7f05004b; public static final int material_deep_teal_200=0x7f05004c; public static final int material_deep_teal_500=0x7f05004d; public static final int material_grey_100=0x7f05004e; public static final int material_grey_300=0x7f05004f; public static final int material_grey_50=0x7f050050; public static final int material_grey_600=0x7f050051; public static final int material_grey_800=0x7f050052; public static final int material_grey_850=0x7f050053; public static final int material_grey_900=0x7f050054; public static final int mtrl_bottom_nav_colored_item_tint=0x7f050055; public static final int mtrl_bottom_nav_item_tint=0x7f050056; public static final int mtrl_btn_bg_color_disabled=0x7f050057; public static final int mtrl_btn_bg_color_selector=0x7f050058; public static final int mtrl_btn_ripple_color=0x7f050059; public static final int mtrl_btn_stroke_color_selector=0x7f05005a; public static final int mtrl_btn_text_btn_ripple_color=0x7f05005b; public static final int mtrl_btn_text_color_disabled=0x7f05005c; public static final int mtrl_btn_text_color_selector=0x7f05005d; public static final int mtrl_btn_transparent_bg_color=0x7f05005e; public static final int mtrl_chip_background_color=0x7f05005f; public static final int mtrl_chip_close_icon_tint=0x7f050060; public static final int mtrl_chip_ripple_color=0x7f050061; public static final int mtrl_chip_text_color=0x7f050062; public static final int mtrl_fab_ripple_color=0x7f050063; public static final int mtrl_scrim_color=0x7f050064; public static final int mtrl_tabs_colored_ripple_color=0x7f050065; public static final int mtrl_tabs_icon_color_selector=0x7f050066; public static final int mtrl_tabs_icon_color_selector_colored=0x7f050067; public static final int mtrl_tabs_legacy_text_color_selector=0x7f050068; public static final int mtrl_tabs_ripple_color=0x7f050069; public static final int mtrl_text_btn_text_color_selector=0x7f05006a; public static final int mtrl_textinput_default_box_stroke_color=0x7f05006b; public static final int mtrl_textinput_disabled_color=0x7f05006c; public static final int mtrl_textinput_filled_box_default_background_color=0x7f05006d; public static final int mtrl_textinput_hovered_box_stroke_color=0x7f05006e; public static final int notification_action_color_filter=0x7f05006f; public static final int notification_icon_bg_color=0x7f050070; public static final int primary_dark_material_dark=0x7f050071; public static final int primary_dark_material_light=0x7f050072; public static final int primary_material_dark=0x7f050073; public static final int primary_material_light=0x7f050074; public static final int primary_text_default_material_dark=0x7f050075; public static final int primary_text_default_material_light=0x7f050076; public static final int primary_text_disabled_material_dark=0x7f050077; public static final int primary_text_disabled_material_light=0x7f050078; public static final int ripple_material_dark=0x7f050079; public static final int ripple_material_light=0x7f05007a; public static final int secondary_text_default_material_dark=0x7f05007b; public static final int secondary_text_default_material_light=0x7f05007c; public static final int secondary_text_disabled_material_dark=0x7f05007d; public static final int secondary_text_disabled_material_light=0x7f05007e; public static final int switch_thumb_disabled_material_dark=0x7f05007f; public static final int switch_thumb_disabled_material_light=0x7f050080; public static final int switch_thumb_material_dark=0x7f050081; public static final int switch_thumb_material_light=0x7f050082; public static final int switch_thumb_normal_material_dark=0x7f050083; public static final int switch_thumb_normal_material_light=0x7f050084; public static final int tooltip_background_dark=0x7f050085; public static final int tooltip_background_light=0x7f050086; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f060000; public static final int abc_action_bar_content_inset_with_nav=0x7f060001; public static final int abc_action_bar_default_height_material=0x7f060002; public static final int abc_action_bar_default_padding_end_material=0x7f060003; public static final int abc_action_bar_default_padding_start_material=0x7f060004; public static final int abc_action_bar_elevation_material=0x7f060005; public static final int abc_action_bar_icon_vertical_padding_material=0x7f060006; public static final int abc_action_bar_overflow_padding_end_material=0x7f060007; public static final int abc_action_bar_overflow_padding_start_material=0x7f060008; public static final int abc_action_bar_stacked_max_height=0x7f060009; public static final int abc_action_bar_stacked_tab_max_width=0x7f06000a; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06000b; public static final int abc_action_bar_subtitle_top_margin_material=0x7f06000c; public static final int abc_action_button_min_height_material=0x7f06000d; public static final int abc_action_button_min_width_material=0x7f06000e; public static final int abc_action_button_min_width_overflow_material=0x7f06000f; public static final int abc_alert_dialog_button_bar_height=0x7f060010; public static final int abc_alert_dialog_button_dimen=0x7f060011; public static final int abc_button_inset_horizontal_material=0x7f060012; public static final int abc_button_inset_vertical_material=0x7f060013; public static final int abc_button_padding_horizontal_material=0x7f060014; public static final int abc_button_padding_vertical_material=0x7f060015; public static final int abc_cascading_menus_min_smallest_width=0x7f060016; public static final int abc_config_prefDialogWidth=0x7f060017; public static final int abc_control_corner_material=0x7f060018; public static final int abc_control_inset_material=0x7f060019; public static final int abc_control_padding_material=0x7f06001a; public static final int abc_dialog_corner_radius_material=0x7f06001b; public static final int abc_dialog_fixed_height_major=0x7f06001c; public static final int abc_dialog_fixed_height_minor=0x7f06001d; public static final int abc_dialog_fixed_width_major=0x7f06001e; public static final int abc_dialog_fixed_width_minor=0x7f06001f; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f060020; public static final int abc_dialog_list_padding_top_no_title=0x7f060021; public static final int abc_dialog_min_width_major=0x7f060022; public static final int abc_dialog_min_width_minor=0x7f060023; public static final int abc_dialog_padding_material=0x7f060024; public static final int abc_dialog_padding_top_material=0x7f060025; public static final int abc_dialog_title_divider_material=0x7f060026; public static final int abc_disabled_alpha_material_dark=0x7f060027; public static final int abc_disabled_alpha_material_light=0x7f060028; public static final int abc_dropdownitem_icon_width=0x7f060029; public static final int abc_dropdownitem_text_padding_left=0x7f06002a; public static final int abc_dropdownitem_text_padding_right=0x7f06002b; public static final int abc_edit_text_inset_bottom_material=0x7f06002c; public static final int abc_edit_text_inset_horizontal_material=0x7f06002d; public static final int abc_edit_text_inset_top_material=0x7f06002e; public static final int abc_floating_window_z=0x7f06002f; public static final int abc_list_item_padding_horizontal_material=0x7f060030; public static final int abc_panel_menu_list_width=0x7f060031; public static final int abc_progress_bar_height_material=0x7f060032; public static final int abc_search_view_preferred_height=0x7f060033; public static final int abc_search_view_preferred_width=0x7f060034; public static final int abc_seekbar_track_background_height_material=0x7f060035; public static final int abc_seekbar_track_progress_height_material=0x7f060036; public static final int abc_select_dialog_padding_start_material=0x7f060037; public static final int abc_switch_padding=0x7f060038; public static final int abc_text_size_body_1_material=0x7f060039; public static final int abc_text_size_body_2_material=0x7f06003a; public static final int abc_text_size_button_material=0x7f06003b; public static final int abc_text_size_caption_material=0x7f06003c; public static final int abc_text_size_display_1_material=0x7f06003d; public static final int abc_text_size_display_2_material=0x7f06003e; public static final int abc_text_size_display_3_material=0x7f06003f; public static final int abc_text_size_display_4_material=0x7f060040; public static final int abc_text_size_headline_material=0x7f060041; public static final int abc_text_size_large_material=0x7f060042; public static final int abc_text_size_medium_material=0x7f060043; public static final int abc_text_size_menu_header_material=0x7f060044; public static final int abc_text_size_menu_material=0x7f060045; public static final int abc_text_size_small_material=0x7f060046; public static final int abc_text_size_subhead_material=0x7f060047; public static final int abc_text_size_subtitle_material_toolbar=0x7f060048; public static final int abc_text_size_title_material=0x7f060049; public static final int abc_text_size_title_material_toolbar=0x7f06004a; public static final int browser_actions_context_menu_max_width=0x7f06004b; public static final int browser_actions_context_menu_min_padding=0x7f06004c; public static final int cardview_compat_inset_shadow=0x7f06004d; public static final int cardview_default_elevation=0x7f06004e; public static final int cardview_default_radius=0x7f06004f; public static final int compat_button_inset_horizontal_material=0x7f060050; public static final int compat_button_inset_vertical_material=0x7f060051; public static final int compat_button_padding_horizontal_material=0x7f060052; public static final int compat_button_padding_vertical_material=0x7f060053; public static final int compat_control_corner_material=0x7f060054; public static final int compat_notification_large_icon_max_height=0x7f060055; public static final int compat_notification_large_icon_max_width=0x7f060056; public static final int design_appbar_elevation=0x7f060057; public static final int design_bottom_navigation_active_item_max_width=0x7f060058; public static final int design_bottom_navigation_active_item_min_width=0x7f060059; public static final int design_bottom_navigation_active_text_size=0x7f06005a; public static final int design_bottom_navigation_elevation=0x7f06005b; public static final int design_bottom_navigation_height=0x7f06005c; public static final int design_bottom_navigation_icon_size=0x7f06005d; public static final int design_bottom_navigation_item_max_width=0x7f06005e; public static final int design_bottom_navigation_item_min_width=0x7f06005f; public static final int design_bottom_navigation_margin=0x7f060060; public static final int design_bottom_navigation_shadow_height=0x7f060061; public static final int design_bottom_navigation_text_size=0x7f060062; public static final int design_bottom_sheet_modal_elevation=0x7f060063; public static final int design_bottom_sheet_peek_height_min=0x7f060064; public static final int design_fab_border_width=0x7f060065; public static final int design_fab_elevation=0x7f060066; public static final int design_fab_image_size=0x7f060067; public static final int design_fab_size_mini=0x7f060068; public static final int design_fab_size_normal=0x7f060069; public static final int design_fab_translation_z_hovered_focused=0x7f06006a; public static final int design_fab_translation_z_pressed=0x7f06006b; public static final int design_navigation_elevation=0x7f06006c; public static final int design_navigation_icon_padding=0x7f06006d; public static final int design_navigation_icon_size=0x7f06006e; public static final int design_navigation_item_horizontal_padding=0x7f06006f; public static final int design_navigation_item_icon_padding=0x7f060070; public static final int design_navigation_max_width=0x7f060071; public static final int design_navigation_padding_bottom=0x7f060072; public static final int design_navigation_separator_vertical_padding=0x7f060073; public static final int design_snackbar_action_inline_max_width=0x7f060074; public static final int design_snackbar_background_corner_radius=0x7f060075; public static final int design_snackbar_elevation=0x7f060076; public static final int design_snackbar_extra_spacing_horizontal=0x7f060077; public static final int design_snackbar_max_width=0x7f060078; public static final int design_snackbar_min_width=0x7f060079; public static final int design_snackbar_padding_horizontal=0x7f06007a; public static final int design_snackbar_padding_vertical=0x7f06007b; public static final int design_snackbar_padding_vertical_2lines=0x7f06007c; public static final int design_snackbar_text_size=0x7f06007d; public static final int design_tab_max_width=0x7f06007e; public static final int design_tab_scrollable_min_width=0x7f06007f; public static final int design_tab_text_size=0x7f060080; public static final int design_tab_text_size_2line=0x7f060081; public static final int design_textinput_caption_translate_y=0x7f060082; public static final int disabled_alpha_material_dark=0x7f060083; public static final int disabled_alpha_material_light=0x7f060084; public static final int fastscroll_default_thickness=0x7f060085; public static final int fastscroll_margin=0x7f060086; public static final int fastscroll_minimum_range=0x7f060087; public static final int highlight_alpha_material_colored=0x7f060088; public static final int highlight_alpha_material_dark=0x7f060089; public static final int highlight_alpha_material_light=0x7f06008a; public static final int hint_alpha_material_dark=0x7f06008b; public static final int hint_alpha_material_light=0x7f06008c; public static final int hint_pressed_alpha_material_dark=0x7f06008d; public static final int hint_pressed_alpha_material_light=0x7f06008e; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f06008f; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f060090; public static final int item_touch_helper_swipe_escape_velocity=0x7f060091; public static final int mtrl_bottomappbar_fabOffsetEndMode=0x7f060092; public static final int mtrl_bottomappbar_fab_cradle_margin=0x7f060093; public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius=0x7f060094; public static final int mtrl_bottomappbar_fab_cradle_vertical_offset=0x7f060095; public static final int mtrl_bottomappbar_height=0x7f060096; public static final int mtrl_btn_corner_radius=0x7f060097; public static final int mtrl_btn_dialog_btn_min_width=0x7f060098; public static final int mtrl_btn_disabled_elevation=0x7f060099; public static final int mtrl_btn_disabled_z=0x7f06009a; public static final int mtrl_btn_elevation=0x7f06009b; public static final int mtrl_btn_focused_z=0x7f06009c; public static final int mtrl_btn_hovered_z=0x7f06009d; public static final int mtrl_btn_icon_btn_padding_left=0x7f06009e; public static final int mtrl_btn_icon_padding=0x7f06009f; public static final int mtrl_btn_inset=0x7f0600a0; public static final int mtrl_btn_letter_spacing=0x7f0600a1; public static final int mtrl_btn_padding_bottom=0x7f0600a2; public static final int mtrl_btn_padding_left=0x7f0600a3; public static final int mtrl_btn_padding_right=0x7f0600a4; public static final int mtrl_btn_padding_top=0x7f0600a5; public static final int mtrl_btn_pressed_z=0x7f0600a6; public static final int mtrl_btn_stroke_size=0x7f0600a7; public static final int mtrl_btn_text_btn_icon_padding=0x7f0600a8; public static final int mtrl_btn_text_btn_padding_left=0x7f0600a9; public static final int mtrl_btn_text_btn_padding_right=0x7f0600aa; public static final int mtrl_btn_text_size=0x7f0600ab; public static final int mtrl_btn_z=0x7f0600ac; public static final int mtrl_card_elevation=0x7f0600ad; public static final int mtrl_card_spacing=0x7f0600ae; public static final int mtrl_chip_pressed_translation_z=0x7f0600af; public static final int mtrl_chip_text_size=0x7f0600b0; public static final int mtrl_fab_elevation=0x7f0600b1; public static final int mtrl_fab_translation_z_hovered_focused=0x7f0600b2; public static final int mtrl_fab_translation_z_pressed=0x7f0600b3; public static final int mtrl_navigation_elevation=0x7f0600b4; public static final int mtrl_navigation_item_horizontal_padding=0x7f0600b5; public static final int mtrl_navigation_item_icon_padding=0x7f0600b6; public static final int mtrl_snackbar_background_corner_radius=0x7f0600b7; public static final int mtrl_snackbar_margin=0x7f0600b8; public static final int mtrl_textinput_box_bottom_offset=0x7f0600b9; public static final int mtrl_textinput_box_corner_radius_medium=0x7f0600ba; public static final int mtrl_textinput_box_corner_radius_small=0x7f0600bb; public static final int mtrl_textinput_box_label_cutout_padding=0x7f0600bc; public static final int mtrl_textinput_box_padding_end=0x7f0600bd; public static final int mtrl_textinput_box_stroke_width_default=0x7f0600be; public static final int mtrl_textinput_box_stroke_width_focused=0x7f0600bf; public static final int mtrl_textinput_outline_box_expanded_padding=0x7f0600c0; public static final int mtrl_toolbar_default_height=0x7f0600c1; public static final int notification_action_icon_size=0x7f0600c2; public static final int notification_action_text_size=0x7f0600c3; public static final int notification_big_circle_margin=0x7f0600c4; public static final int notification_content_margin_start=0x7f0600c5; public static final int notification_large_icon_height=0x7f0600c6; public static final int notification_large_icon_width=0x7f0600c7; public static final int notification_main_column_padding_top=0x7f0600c8; public static final int notification_media_narrow_margin=0x7f0600c9; public static final int notification_right_icon_size=0x7f0600ca; public static final int notification_right_side_padding_top=0x7f0600cb; public static final int notification_small_icon_background_padding=0x7f0600cc; public static final int notification_small_icon_size_as_large=0x7f0600cd; public static final int notification_subtext_size=0x7f0600ce; public static final int notification_top_pad=0x7f0600cf; public static final int notification_top_pad_large_text=0x7f0600d0; public static final int tooltip_corner_radius=0x7f0600d1; public static final int tooltip_horizontal_padding=0x7f0600d2; public static final int tooltip_margin=0x7f0600d3; public static final int tooltip_precise_anchor_extra_offset=0x7f0600d4; public static final int tooltip_precise_anchor_threshold=0x7f0600d5; public static final int tooltip_vertical_padding=0x7f0600d6; public static final int tooltip_y_offset_non_touch=0x7f0600d7; public static final int tooltip_y_offset_touch=0x7f0600d8; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f070006; public static final int abc_action_bar_item_background_material=0x7f070007; public static final int abc_btn_borderless_material=0x7f070008; public static final int abc_btn_check_material=0x7f070009; public static final int abc_btn_check_to_on_mtrl_000=0x7f07000a; public static final int abc_btn_check_to_on_mtrl_015=0x7f07000b; public static final int abc_btn_colored_material=0x7f07000c; public static final int abc_btn_default_mtrl_shape=0x7f07000d; public static final int abc_btn_radio_material=0x7f07000e; public static final int abc_btn_radio_to_on_mtrl_000=0x7f07000f; public static final int abc_btn_radio_to_on_mtrl_015=0x7f070010; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f070011; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f070012; public static final int abc_cab_background_internal_bg=0x7f070013; public static final int abc_cab_background_top_material=0x7f070014; public static final int abc_cab_background_top_mtrl_alpha=0x7f070015; public static final int abc_control_background_material=0x7f070016; public static final int abc_dialog_material_background=0x7f070017; public static final int abc_edit_text_material=0x7f070018; public static final int abc_ic_ab_back_material=0x7f070019; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f07001a; public static final int abc_ic_clear_material=0x7f07001b; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f07001c; public static final int abc_ic_go_search_api_material=0x7f07001d; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f07001e; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f07001f; public static final int abc_ic_menu_overflow_material=0x7f070020; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f070021; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f070022; public static final int abc_ic_menu_share_mtrl_alpha=0x7f070023; public static final int abc_ic_search_api_material=0x7f070024; public static final int abc_ic_star_black_16dp=0x7f070025; public static final int abc_ic_star_black_36dp=0x7f070026; public static final int abc_ic_star_black_48dp=0x7f070027; public static final int abc_ic_star_half_black_16dp=0x7f070028; public static final int abc_ic_star_half_black_36dp=0x7f070029; public static final int abc_ic_star_half_black_48dp=0x7f07002a; public static final int abc_ic_voice_search_api_material=0x7f07002b; public static final int abc_item_background_holo_dark=0x7f07002c; public static final int abc_item_background_holo_light=0x7f07002d; public static final int abc_list_divider_material=0x7f07002e; public static final int abc_list_divider_mtrl_alpha=0x7f07002f; public static final int abc_list_focused_holo=0x7f070030; public static final int abc_list_longpressed_holo=0x7f070031; public static final int abc_list_pressed_holo_dark=0x7f070032; public static final int abc_list_pressed_holo_light=0x7f070033; public static final int abc_list_selector_background_transition_holo_dark=0x7f070034; public static final int abc_list_selector_background_transition_holo_light=0x7f070035; public static final int abc_list_selector_disabled_holo_dark=0x7f070036; public static final int abc_list_selector_disabled_holo_light=0x7f070037; public static final int abc_list_selector_holo_dark=0x7f070038; public static final int abc_list_selector_holo_light=0x7f070039; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f07003a; public static final int abc_popup_background_mtrl_mult=0x7f07003b; public static final int abc_ratingbar_indicator_material=0x7f07003c; public static final int abc_ratingbar_material=0x7f07003d; public static final int abc_ratingbar_small_material=0x7f07003e; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f07003f; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f070040; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f070041; public static final int abc_scrubber_primary_mtrl_alpha=0x7f070042; public static final int abc_scrubber_track_mtrl_alpha=0x7f070043; public static final int abc_seekbar_thumb_material=0x7f070044; public static final int abc_seekbar_tick_mark_material=0x7f070045; public static final int abc_seekbar_track_material=0x7f070046; public static final int abc_spinner_mtrl_am_alpha=0x7f070047; public static final int abc_spinner_textfield_background_material=0x7f070048; public static final int abc_switch_thumb_material=0x7f070049; public static final int abc_switch_track_mtrl_alpha=0x7f07004a; public static final int abc_tab_indicator_material=0x7f07004b; public static final int abc_tab_indicator_mtrl_alpha=0x7f07004c; public static final int abc_text_cursor_material=0x7f07004d; public static final int abc_text_select_handle_left_mtrl_dark=0x7f07004e; public static final int abc_text_select_handle_left_mtrl_light=0x7f07004f; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f070050; public static final int abc_text_select_handle_middle_mtrl_light=0x7f070051; public static final int abc_text_select_handle_right_mtrl_dark=0x7f070052; public static final int abc_text_select_handle_right_mtrl_light=0x7f070053; public static final int abc_textfield_activated_mtrl_alpha=0x7f070054; public static final int abc_textfield_default_mtrl_alpha=0x7f070055; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f070056; public static final int abc_textfield_search_default_mtrl_alpha=0x7f070057; public static final int abc_textfield_search_material=0x7f070058; public static final int abc_vector_test=0x7f070059; public static final int apple1=0x7f07005a; public static final int avd_hide_password=0x7f07005b; public static final int avd_show_password=0x7f07005c; public static final int banana1=0x7f07005d; public static final int cakeslice=0x7f07005e; public static final int cheese=0x7f07005f; public static final int design_bottom_navigation_item_background=0x7f070060; public static final int design_fab_background=0x7f070061; public static final int design_ic_visibility=0x7f070062; public static final int design_ic_visibility_off=0x7f070063; public static final int design_password_eye=0x7f070064; public static final int design_snackbar_background=0x7f070065; public static final int egg=0x7f070066; public static final int fish=0x7f070067; public static final int fried=0x7f070068; public static final int ic_mtrl_chip_checked_black=0x7f070069; public static final int ic_mtrl_chip_checked_circle=0x7f07006a; public static final int ic_mtrl_chip_close_circle=0x7f07006b; public static final int icec=0x7f07006c; public static final int meat=0x7f07006d; public static final int milk=0x7f07006e; public static final int mtrl_snackbar_background=0x7f07006f; public static final int mtrl_tabs_default_indicator=0x7f070070; public static final int navigation_empty_icon=0x7f070071; public static final int notification_action_background=0x7f070072; public static final int notification_bg=0x7f070073; public static final int notification_bg_low=0x7f070074; public static final int notification_bg_low_normal=0x7f070075; public static final int notification_bg_low_pressed=0x7f070076; public static final int notification_bg_normal=0x7f070077; public static final int notification_bg_normal_pressed=0x7f070078; public static final int notification_icon_background=0x7f070079; public static final int notification_template_icon_bg=0x7f07007a; public static final int notification_template_icon_low_bg=0x7f07007b; public static final int notification_tile_bg=0x7f07007c; public static final int notify_panel_notification_icon_bg=0x7f07007d; public static final int pizza=0x7f07007e; public static final int tooltip_frame_dark=0x7f07007f; public static final int tooltip_frame_light=0x7f070080; } public static final class id { public static final int ALT=0x7f080000; public static final int CTRL=0x7f080001; public static final int FUNCTION=0x7f080002; public static final int META=0x7f080003; public static final int SHIFT=0x7f080004; public static final int SYM=0x7f080005; public static final int action_bar=0x7f080006; public static final int action_bar_activity_content=0x7f080007; public static final int action_bar_container=0x7f080008; public static final int action_bar_root=0x7f080009; public static final int action_bar_spinner=0x7f08000a; public static final int action_bar_subtitle=0x7f08000b; public static final int action_bar_title=0x7f08000c; public static final int action_container=0x7f08000d; public static final int action_context_bar=0x7f08000e; public static final int action_divider=0x7f08000f; public static final int action_image=0x7f080010; public static final int action_menu_divider=0x7f080011; public static final int action_menu_presenter=0x7f080012; public static final int action_mode_bar=0x7f080013; public static final int action_mode_bar_stub=0x7f080014; public static final int action_mode_close_button=0x7f080015; public static final int action_text=0x7f080016; public static final int actions=0x7f080017; public static final int activity_chooser_view_content=0x7f080018; public static final int add=0x7f080019; public static final int ageID=0x7f08001a; public static final int alertTitle=0x7f08001b; public static final int all=0x7f08001c; public static final int always=0x7f08001d; public static final int async=0x7f08001e; public static final int auto=0x7f08001f; public static final int beginning=0x7f080020; public static final int blocking=0x7f080021; public static final int bottom=0x7f080022; public static final int browser_actions_header_text=0x7f080023; public static final int browser_actions_menu_item_icon=0x7f080024; public static final int browser_actions_menu_item_text=0x7f080025; public static final int browser_actions_menu_items=0x7f080026; public static final int browser_actions_menu_view=0x7f080027; public static final int button1=0x7f080028; public static final int buttonPanel=0x7f080029; public static final int center=0x7f08002a; public static final int center_horizontal=0x7f08002b; public static final int center_vertical=0x7f08002c; public static final int checkbox=0x7f08002d; public static final int chronometer=0x7f08002e; public static final int clip_horizontal=0x7f08002f; public static final int clip_vertical=0x7f080030; public static final int collapseActionView=0x7f080031; public static final int container=0x7f080032; public static final int content=0x7f080033; public static final int contentPanel=0x7f080034; public static final int coordinator=0x7f080035; public static final int custom=0x7f080036; public static final int customPanel=0x7f080037; public static final int decor_content_parent=0x7f080038; public static final int default_activity_button=0x7f080039; public static final int design_bottom_sheet=0x7f08003a; public static final int design_menu_item_action_area=0x7f08003b; public static final int design_menu_item_action_area_stub=0x7f08003c; public static final int design_menu_item_text=0x7f08003d; public static final int design_navigation_view=0x7f08003e; public static final int disableHome=0x7f08003f; public static final int edit_query=0x7f080040; public static final int emailID=0x7f080041; public static final int end=0x7f080042; public static final int enterAlways=0x7f080043; public static final int enterAlwaysCollapsed=0x7f080044; public static final int exitUntilCollapsed=0x7f080045; public static final int expand_activities_button=0x7f080046; public static final int expanded_menu=0x7f080047; public static final int fill=0x7f080048; public static final int fill_horizontal=0x7f080049; public static final int fill_vertical=0x7f08004a; public static final int filled=0x7f08004b; public static final int fixed=0x7f08004c; public static final int forever=0x7f08004d; public static final int frameLayout1=0x7f08004e; public static final int ghost_view=0x7f08004f; public static final int groceryImageID=0x7f080050; public static final int group_divider=0x7f080051; public static final int home=0x7f080052; public static final int homeAsUp=0x7f080053; public static final int icon=0x7f080054; public static final int icon_group=0x7f080055; public static final int ifRoom=0x7f080056; public static final int image=0x7f080057; public static final int info=0x7f080058; public static final int italic=0x7f080059; public static final int item_touch_helper_previous_elevation=0x7f08005a; public static final int labeled=0x7f08005b; public static final int largeLabel=0x7f08005c; public static final int left=0x7f08005d; public static final int line1=0x7f08005e; public static final int line3=0x7f08005f; public static final int listMode=0x7f080060; public static final int listView1=0x7f080061; public static final int listViewID=0x7f080062; public static final int list_item=0x7f080063; public static final int masked=0x7f080064; public static final int message=0x7f080065; public static final int middle=0x7f080066; public static final int mini=0x7f080067; public static final int mtrl_child_content_container=0x7f080068; public static final int mtrl_internal_children_alpha_tag=0x7f080069; public static final int multiply=0x7f08006a; public static final int myImageID=0x7f08006b; public static final int myQuantityID=0x7f08006c; public static final int nameofuserID=0x7f08006d; public static final int navigation_header_container=0x7f08006e; public static final int never=0x7f08006f; public static final int none=0x7f080070; public static final int normal=0x7f080071; public static final int notification_background=0x7f080072; public static final int notification_main_column=0x7f080073; public static final int notification_main_column_container=0x7f080074; public static final int orText=0x7f080075; public static final int outline=0x7f080076; public static final int parallax=0x7f080077; public static final int parentPanel=0x7f080078; public static final int parent_matrix=0x7f080079; public static final int passwordID=0x7f08007a; public static final int phonenumberID=0x7f08007b; public static final int pin=0x7f08007c; public static final int progress_circular=0x7f08007d; public static final int progress_horizontal=0x7f08007e; public static final int radio=0x7f08007f; public static final int registerBtnID=0x7f080080; public static final int returnBtnID=0x7f080081; public static final int right=0x7f080082; public static final int right_icon=0x7f080083; public static final int right_side=0x7f080084; public static final int saveBtnID=0x7f080085; public static final int save_image_matrix=0x7f080086; public static final int save_non_transition_alpha=0x7f080087; public static final int save_scale_type=0x7f080088; public static final int screen=0x7f080089; public static final int scroll=0x7f08008a; public static final int scrollIndicatorDown=0x7f08008b; public static final int scrollIndicatorUp=0x7f08008c; public static final int scrollView=0x7f08008d; public static final int scrollable=0x7f08008e; public static final int search_badge=0x7f08008f; public static final int search_bar=0x7f080090; public static final int search_button=0x7f080091; public static final int search_close_btn=0x7f080092; public static final int search_edit_frame=0x7f080093; public static final int search_go_btn=0x7f080094; public static final int search_mag_icon=0x7f080095; public static final int search_plate=0x7f080096; public static final int search_src_text=0x7f080097; public static final int search_voice_btn=0x7f080098; public static final int select_dialog_listview=0x7f080099; public static final int selected=0x7f08009a; public static final int shortcut=0x7f08009b; public static final int showCustom=0x7f08009c; public static final int showHome=0x7f08009d; public static final int showTitle=0x7f08009e; public static final int smallLabel=0x7f08009f; public static final int snackbar_action=0x7f0800a0; public static final int snackbar_text=0x7f0800a1; public static final int snap=0x7f0800a2; public static final int snapMargins=0x7f0800a3; public static final int spacer=0x7f0800a4; public static final int spinnerViewID=0x7f0800a5; public static final int split_action_bar=0x7f0800a6; public static final int src_atop=0x7f0800a7; public static final int src_in=0x7f0800a8; public static final int src_over=0x7f0800a9; public static final int start=0x7f0800aa; public static final int stretch=0x7f0800ab; public static final int submenuarrow=0x7f0800ac; public static final int submit_area=0x7f0800ad; public static final int tabMode=0x7f0800ae; public static final int tag_transition_group=0x7f0800af; public static final int tag_unhandled_key_event_manager=0x7f0800b0; public static final int tag_unhandled_key_listeners=0x7f0800b1; public static final int text=0x7f0800b2; public static final int text2=0x7f0800b3; public static final int textSpacerNoButtons=0x7f0800b4; public static final int textSpacerNoTitle=0x7f0800b5; public static final int textStart=0x7f0800b6; public static final int textView1=0x7f0800b7; public static final int text_input_password_toggle=0x7f0800b8; public static final int textinput_counter=0x7f0800b9; public static final int textinput_error=0x7f0800ba; public static final int textinput_helper_text=0x7f0800bb; public static final int time=0x7f0800bc; public static final int title=0x7f0800bd; public static final int titleDividerNoCustom=0x7f0800be; public static final int title_template=0x7f0800bf; public static final int top=0x7f0800c0; public static final int topPanel=0x7f0800c1; public static final int touch_outside=0x7f0800c2; public static final int transition_current_scene=0x7f0800c3; public static final int transition_layout_save=0x7f0800c4; public static final int transition_position=0x7f0800c5; public static final int transition_scene_layoutid_cache=0x7f0800c6; public static final int transition_transform=0x7f0800c7; public static final int uniform=0x7f0800c8; public static final int unlabeled=0x7f0800c9; public static final int up=0x7f0800ca; public static final int useLogo=0x7f0800cb; public static final int view_offset_helper=0x7f0800cc; public static final int visible=0x7f0800cd; public static final int withText=0x7f0800ce; public static final int wrap_content=0x7f0800cf; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f090000; public static final int abc_config_activityShortDur=0x7f090001; public static final int app_bar_elevation_anim_duration=0x7f090002; public static final int bottom_sheet_slide_duration=0x7f090003; public static final int cancel_button_image_alpha=0x7f090004; public static final int config_tooltipAnimTime=0x7f090005; public static final int design_snackbar_text_max_lines=0x7f090006; public static final int design_tab_indicator_anim_duration_ms=0x7f090007; public static final int hide_password_duration=0x7f090008; public static final int mtrl_btn_anim_delay_ms=0x7f090009; public static final int mtrl_btn_anim_duration_ms=0x7f09000a; public static final int mtrl_chip_anim_duration=0x7f09000b; public static final int mtrl_tab_indicator_anim_duration_ms=0x7f09000c; public static final int show_password_duration=0x7f09000d; public static final int status_bar_notification_info_maxnum=0x7f09000e; } public static final class interpolator { public static final int mtrl_fast_out_linear_in=0x7f0a0000; public static final int mtrl_fast_out_slow_in=0x7f0a0001; public static final int mtrl_linear=0x7f0a0002; public static final int mtrl_linear_out_slow_in=0x7f0a0003; } public static final class layout { public static final int abc_action_bar_title_item=0x7f0b0000; public static final int abc_action_bar_up_container=0x7f0b0001; public static final int abc_action_menu_item_layout=0x7f0b0002; public static final int abc_action_menu_layout=0x7f0b0003; public static final int abc_action_mode_bar=0x7f0b0004; public static final int abc_action_mode_close_item_material=0x7f0b0005; public static final int abc_activity_chooser_view=0x7f0b0006; public static final int abc_activity_chooser_view_list_item=0x7f0b0007; public static final int abc_alert_dialog_button_bar_material=0x7f0b0008; public static final int abc_alert_dialog_material=0x7f0b0009; public static final int abc_alert_dialog_title_material=0x7f0b000a; public static final int abc_cascading_menu_item_layout=0x7f0b000b; public static final int abc_dialog_title_material=0x7f0b000c; public static final int abc_expanded_menu_layout=0x7f0b000d; public static final int abc_list_menu_item_checkbox=0x7f0b000e; public static final int abc_list_menu_item_icon=0x7f0b000f; public static final int abc_list_menu_item_layout=0x7f0b0010; public static final int abc_list_menu_item_radio=0x7f0b0011; public static final int abc_popup_menu_header_item_layout=0x7f0b0012; public static final int abc_popup_menu_item_layout=0x7f0b0013; public static final int abc_screen_content_include=0x7f0b0014; public static final int abc_screen_simple=0x7f0b0015; public static final int abc_screen_simple_overlay_action_mode=0x7f0b0016; public static final int abc_screen_toolbar=0x7f0b0017; public static final int abc_search_dropdown_item_icons_2line=0x7f0b0018; public static final int abc_search_view=0x7f0b0019; public static final int abc_select_dialog_material=0x7f0b001a; public static final int abc_tooltip=0x7f0b001b; public static final int activity_main=0x7f0b001c; public static final int browser_actions_context_menu_page=0x7f0b001d; public static final int browser_actions_context_menu_row=0x7f0b001e; public static final int design_bottom_navigation_item=0x7f0b001f; public static final int design_bottom_sheet_dialog=0x7f0b0020; public static final int design_layout_snackbar=0x7f0b0021; public static final int design_layout_snackbar_include=0x7f0b0022; public static final int design_layout_tab_icon=0x7f0b0023; public static final int design_layout_tab_text=0x7f0b0024; public static final int design_menu_item_action_area=0x7f0b0025; public static final int design_navigation_item=0x7f0b0026; public static final int design_navigation_item_header=0x7f0b0027; public static final int design_navigation_item_separator=0x7f0b0028; public static final int design_navigation_item_subheader=0x7f0b0029; public static final int design_navigation_menu=0x7f0b002a; public static final int design_navigation_menu_item=0x7f0b002b; public static final int design_text_input_password_icon=0x7f0b002c; public static final int firsttab=0x7f0b002d; public static final int framelayout=0x7f0b002e; public static final int mtrl_layout_snackbar=0x7f0b002f; public static final int mtrl_layout_snackbar_include=0x7f0b0030; public static final int myview=0x7f0b0031; public static final int myviewintothelist=0x7f0b0032; public static final int notification_action=0x7f0b0033; public static final int notification_action_tombstone=0x7f0b0034; public static final int notification_template_custom_big=0x7f0b0035; public static final int notification_template_icon_group=0x7f0b0036; public static final int notification_template_part_chronometer=0x7f0b0037; public static final int notification_template_part_time=0x7f0b0038; public static final int register=0x7f0b0039; public static final int secondtab=0x7f0b003a; public static final int select_dialog_item_material=0x7f0b003b; public static final int select_dialog_multichoice_material=0x7f0b003c; public static final int select_dialog_singlechoice_material=0x7f0b003d; public static final int support_simple_spinner_dropdown_item=0x7f0b003e; public static final int thirdtab=0x7f0b003f; public static final int welcome_firsttab=0x7f0b0040; } public static final class mipmap { public static final int ic_launcher=0x7f0c0000; public static final int ic_launcher_foreground=0x7f0c0001; public static final int ic_launcher_round=0x7f0c0002; } public static final class string { public static final int abc_action_bar_home_description=0x7f0d0000; public static final int abc_action_bar_up_description=0x7f0d0001; public static final int abc_action_menu_overflow_description=0x7f0d0002; public static final int abc_action_mode_done=0x7f0d0003; public static final int abc_activity_chooser_view_see_all=0x7f0d0004; public static final int abc_activitychooserview_choose_application=0x7f0d0005; public static final int abc_capital_off=0x7f0d0006; public static final int abc_capital_on=0x7f0d0007; public static final int abc_font_family_body_1_material=0x7f0d0008; public static final int abc_font_family_body_2_material=0x7f0d0009; public static final int abc_font_family_button_material=0x7f0d000a; public static final int abc_font_family_caption_material=0x7f0d000b; public static final int abc_font_family_display_1_material=0x7f0d000c; public static final int abc_font_family_display_2_material=0x7f0d000d; public static final int abc_font_family_display_3_material=0x7f0d000e; public static final int abc_font_family_display_4_material=0x7f0d000f; public static final int abc_font_family_headline_material=0x7f0d0010; public static final int abc_font_family_menu_material=0x7f0d0011; public static final int abc_font_family_subhead_material=0x7f0d0012; public static final int abc_font_family_title_material=0x7f0d0013; public static final int abc_menu_alt_shortcut_label=0x7f0d0014; public static final int abc_menu_ctrl_shortcut_label=0x7f0d0015; public static final int abc_menu_delete_shortcut_label=0x7f0d0016; public static final int abc_menu_enter_shortcut_label=0x7f0d0017; public static final int abc_menu_function_shortcut_label=0x7f0d0018; public static final int abc_menu_meta_shortcut_label=0x7f0d0019; public static final int abc_menu_shift_shortcut_label=0x7f0d001a; public static final int abc_menu_space_shortcut_label=0x7f0d001b; public static final int abc_menu_sym_shortcut_label=0x7f0d001c; public static final int abc_prepend_shortcut_label=0x7f0d001d; public static final int abc_search_hint=0x7f0d001e; public static final int abc_searchview_description_clear=0x7f0d001f; public static final int abc_searchview_description_query=0x7f0d0020; public static final int abc_searchview_description_search=0x7f0d0021; public static final int abc_searchview_description_submit=0x7f0d0022; public static final int abc_searchview_description_voice=0x7f0d0023; public static final int abc_shareactionprovider_share_with=0x7f0d0024; public static final int abc_shareactionprovider_share_with_application=0x7f0d0025; public static final int abc_toolbar_collapse_description=0x7f0d0026; public static final int action_settings=0x7f0d0027; public static final int app_name=0x7f0d0028; public static final int appbar_scrolling_view_behavior=0x7f0d0029; public static final int bottom_sheet_behavior=0x7f0d002a; public static final int character_counter_content_description=0x7f0d002b; public static final int character_counter_pattern=0x7f0d002c; public static final int fab_transformation_scrim_behavior=0x7f0d002d; public static final int fab_transformation_sheet_behavior=0x7f0d002e; public static final int hide_bottom_view_on_scroll_behavior=0x7f0d002f; public static final int mtrl_chip_close_icon_content_description=0x7f0d0030; public static final int password_toggle_content_description=0x7f0d0031; public static final int path_password_eye=0x7f0d0032; public static final int path_password_eye_mask_strike_through=0x7f0d0033; public static final int path_password_eye_mask_visible=0x7f0d0034; public static final int path_password_strike_through=0x7f0d0035; public static final int search_menu_title=0x7f0d0036; public static final int status_bar_notification_info_overflow=0x7f0d0037; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0e0000; public static final int AlertDialog_AppCompat_Light=0x7f0e0001; public static final int Animation_AppCompat_Dialog=0x7f0e0002; public static final int Animation_AppCompat_DropDownUp=0x7f0e0003; public static final int Animation_AppCompat_Tooltip=0x7f0e0004; public static final int Animation_Design_BottomSheetDialog=0x7f0e0005; /** * Base application theme. */ public static final int AppTheme=0x7f0e0006; public static final int Base_AlertDialog_AppCompat=0x7f0e0007; public static final int Base_AlertDialog_AppCompat_Light=0x7f0e0008; public static final int Base_Animation_AppCompat_Dialog=0x7f0e0009; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0e000a; public static final int Base_Animation_AppCompat_Tooltip=0x7f0e000b; public static final int Base_CardView=0x7f0e000c; public static final int Base_DialogWindowTitle_AppCompat=0x7f0e000d; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0e000e; public static final int Base_TextAppearance_AppCompat=0x7f0e000f; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0e0010; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0e0011; public static final int Base_TextAppearance_AppCompat_Button=0x7f0e0012; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0e0013; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0e0014; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0e0015; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0e0016; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0e0017; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0e0018; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0e0019; public static final int Base_TextAppearance_AppCompat_Large=0x7f0e001a; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0e001b; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e001c; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e001d; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0e001e; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0e001f; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0e0020; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0e0021; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e0022; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0e0023; public static final int Base_TextAppearance_AppCompat_Small=0x7f0e0024; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0e0025; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0e0026; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0e0027; public static final int Base_TextAppearance_AppCompat_Title=0x7f0e0028; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0e0029; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0e002a; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e002b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e002c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e002d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e002e; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e002f; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0030; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e0031; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0e0032; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e0033; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e0034; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e0035; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e0036; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0037; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e0038; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e0039; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0e003a; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e003b; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e003c; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e003d; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e003e; public static final int Base_Theme_AppCompat=0x7f0e003f; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0e0040; public static final int Base_Theme_AppCompat_Dialog=0x7f0e0041; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0e0042; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0e0043; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0e0044; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0e0045; public static final int Base_Theme_AppCompat_Light=0x7f0e0046; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0e0047; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0e0048; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0e0049; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0e004a; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e004b; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0e004c; public static final int Base_Theme_MaterialComponents=0x7f0e004d; public static final int Base_Theme_MaterialComponents_Bridge=0x7f0e004e; public static final int Base_Theme_MaterialComponents_CompactMenu=0x7f0e004f; public static final int Base_Theme_MaterialComponents_Dialog=0x7f0e0050; public static final int Base_Theme_MaterialComponents_Dialog_Alert=0x7f0e0051; public static final int Base_Theme_MaterialComponents_Dialog_FixedSize=0x7f0e0052; public static final int Base_Theme_MaterialComponents_Dialog_MinWidth=0x7f0e0053; public static final int Base_Theme_MaterialComponents_DialogWhenLarge=0x7f0e0054; public static final int Base_Theme_MaterialComponents_Light=0x7f0e0055; public static final int Base_Theme_MaterialComponents_Light_Bridge=0x7f0e0056; public static final int Base_Theme_MaterialComponents_Light_DarkActionBar=0x7f0e0057; public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e0058; public static final int Base_Theme_MaterialComponents_Light_Dialog=0x7f0e0059; public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert=0x7f0e005a; public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize=0x7f0e005b; public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0e005c; public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0e005d; public static final int Base_ThemeOverlay_AppCompat=0x7f0e005e; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0e005f; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0e0060; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e0061; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0e0062; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0063; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0e0064; public static final int Base_ThemeOverlay_MaterialComponents_Dialog=0x7f0e0065; public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e0066; public static final int Base_V14_Theme_MaterialComponents=0x7f0e0067; public static final int Base_V14_Theme_MaterialComponents_Bridge=0x7f0e0068; public static final int Base_V14_Theme_MaterialComponents_Dialog=0x7f0e0069; public static final int Base_V14_Theme_MaterialComponents_Light=0x7f0e006a; public static final int Base_V14_Theme_MaterialComponents_Light_Bridge=0x7f0e006b; public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e006c; public static final int Base_V14_Theme_MaterialComponents_Light_Dialog=0x7f0e006d; public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog=0x7f0e006e; public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e006f; public static final int Base_V21_Theme_AppCompat=0x7f0e0070; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0e0071; public static final int Base_V21_Theme_AppCompat_Light=0x7f0e0072; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0e0073; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0e0074; public static final int Base_V22_Theme_AppCompat=0x7f0e0075; public static final int Base_V22_Theme_AppCompat_Light=0x7f0e0076; public static final int Base_V23_Theme_AppCompat=0x7f0e0077; public static final int Base_V23_Theme_AppCompat_Light=0x7f0e0078; public static final int Base_V26_Theme_AppCompat=0x7f0e0079; public static final int Base_V26_Theme_AppCompat_Light=0x7f0e007a; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0e007b; public static final int Base_V28_Theme_AppCompat=0x7f0e007c; public static final int Base_V28_Theme_AppCompat_Light=0x7f0e007d; public static final int Base_V7_Theme_AppCompat=0x7f0e007e; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0e007f; public static final int Base_V7_Theme_AppCompat_Light=0x7f0e0080; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0e0081; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0e0082; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0e0083; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0e0084; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0e0085; public static final int Base_Widget_AppCompat_ActionBar=0x7f0e0086; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0e0087; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0e0088; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0e0089; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0e008a; public static final int Base_Widget_AppCompat_ActionButton=0x7f0e008b; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0e008c; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0e008d; public static final int Base_Widget_AppCompat_ActionMode=0x7f0e008e; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0e008f; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0e0090; public static final int Base_Widget_AppCompat_Button=0x7f0e0091; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0e0092; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0e0093; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e0094; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0e0095; public static final int Base_Widget_AppCompat_Button_Small=0x7f0e0096; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0e0097; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e0098; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0e0099; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0e009a; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0e009b; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0e009c; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0e009d; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0e009e; public static final int Base_Widget_AppCompat_EditText=0x7f0e009f; public static final int Base_Widget_AppCompat_ImageButton=0x7f0e00a0; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0e00a1; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0e00a2; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e00a3; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0e00a4; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e00a5; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0e00a6; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0e00a7; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e00a8; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0e00a9; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0e00aa; public static final int Base_Widget_AppCompat_ListView=0x7f0e00ab; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0e00ac; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0e00ad; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0e00ae; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0e00af; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0e00b0; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0e00b1; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0e00b2; public static final int Base_Widget_AppCompat_RatingBar=0x7f0e00b3; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0e00b4; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0e00b5; public static final int Base_Widget_AppCompat_SearchView=0x7f0e00b6; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0e00b7; public static final int Base_Widget_AppCompat_SeekBar=0x7f0e00b8; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0e00b9; public static final int Base_Widget_AppCompat_Spinner=0x7f0e00ba; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0e00bb; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0e00bc; public static final int Base_Widget_AppCompat_Toolbar=0x7f0e00bd; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e00be; public static final int Base_Widget_Design_TabLayout=0x7f0e00bf; public static final int Base_Widget_MaterialComponents_Chip=0x7f0e00c0; public static final int Base_Widget_MaterialComponents_TextInputEditText=0x7f0e00c1; public static final int Base_Widget_MaterialComponents_TextInputLayout=0x7f0e00c2; public static final int CardView=0x7f0e00c3; public static final int CardView_Dark=0x7f0e00c4; public static final int CardView_Light=0x7f0e00c5; public static final int Platform_AppCompat=0x7f0e00c6; public static final int Platform_AppCompat_Light=0x7f0e00c7; public static final int Platform_MaterialComponents=0x7f0e00c8; public static final int Platform_MaterialComponents_Dialog=0x7f0e00c9; public static final int Platform_MaterialComponents_Light=0x7f0e00ca; public static final int Platform_MaterialComponents_Light_Dialog=0x7f0e00cb; public static final int Platform_ThemeOverlay_AppCompat=0x7f0e00cc; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0e00cd; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0e00ce; public static final int Platform_V21_AppCompat=0x7f0e00cf; public static final int Platform_V21_AppCompat_Light=0x7f0e00d0; public static final int Platform_V25_AppCompat=0x7f0e00d1; public static final int Platform_V25_AppCompat_Light=0x7f0e00d2; public static final int Platform_Widget_AppCompat_Spinner=0x7f0e00d3; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0e00d4; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0e00d5; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0e00d6; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0e00d7; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0e00d8; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f0e00d9; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f0e00da; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0e00db; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f0e00dc; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0e00dd; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0e00de; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0e00df; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0e00e0; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0e00e1; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0e00e2; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0e00e3; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0e00e4; public static final int TextAppearance_AppCompat=0x7f0e00e5; public static final int TextAppearance_AppCompat_Body1=0x7f0e00e6; public static final int TextAppearance_AppCompat_Body2=0x7f0e00e7; public static final int TextAppearance_AppCompat_Button=0x7f0e00e8; public static final int TextAppearance_AppCompat_Caption=0x7f0e00e9; public static final int TextAppearance_AppCompat_Display1=0x7f0e00ea; public static final int TextAppearance_AppCompat_Display2=0x7f0e00eb; public static final int TextAppearance_AppCompat_Display3=0x7f0e00ec; public static final int TextAppearance_AppCompat_Display4=0x7f0e00ed; public static final int TextAppearance_AppCompat_Headline=0x7f0e00ee; public static final int TextAppearance_AppCompat_Inverse=0x7f0e00ef; public static final int TextAppearance_AppCompat_Large=0x7f0e00f0; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0e00f1; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0e00f2; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0e00f3; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e00f4; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e00f5; public static final int TextAppearance_AppCompat_Medium=0x7f0e00f6; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0e00f7; public static final int TextAppearance_AppCompat_Menu=0x7f0e00f8; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e00f9; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0e00fa; public static final int TextAppearance_AppCompat_Small=0x7f0e00fb; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0e00fc; public static final int TextAppearance_AppCompat_Subhead=0x7f0e00fd; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0e00fe; public static final int TextAppearance_AppCompat_Title=0x7f0e00ff; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0e0100; public static final int TextAppearance_AppCompat_Tooltip=0x7f0e0101; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e0102; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e0103; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e0104; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e0105; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e0106; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0107; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0e0108; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e0109; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0e010a; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0e010b; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e010c; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e010d; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e010e; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e010f; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0110; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e0111; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e0112; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0e0113; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e0114; public static final int TextAppearance_Compat_Notification=0x7f0e0115; public static final int TextAppearance_Compat_Notification_Info=0x7f0e0116; public static final int TextAppearance_Compat_Notification_Line2=0x7f0e0117; public static final int TextAppearance_Compat_Notification_Time=0x7f0e0118; public static final int TextAppearance_Compat_Notification_Title=0x7f0e0119; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0e011a; public static final int TextAppearance_Design_Counter=0x7f0e011b; public static final int TextAppearance_Design_Counter_Overflow=0x7f0e011c; public static final int TextAppearance_Design_Error=0x7f0e011d; public static final int TextAppearance_Design_HelperText=0x7f0e011e; public static final int TextAppearance_Design_Hint=0x7f0e011f; public static final int TextAppearance_Design_Snackbar_Message=0x7f0e0120; public static final int TextAppearance_Design_Tab=0x7f0e0121; public static final int TextAppearance_MaterialComponents_Body1=0x7f0e0122; public static final int TextAppearance_MaterialComponents_Body2=0x7f0e0123; public static final int TextAppearance_MaterialComponents_Button=0x7f0e0124; public static final int TextAppearance_MaterialComponents_Caption=0x7f0e0125; public static final int TextAppearance_MaterialComponents_Chip=0x7f0e0126; public static final int TextAppearance_MaterialComponents_Headline1=0x7f0e0127; public static final int TextAppearance_MaterialComponents_Headline2=0x7f0e0128; public static final int TextAppearance_MaterialComponents_Headline3=0x7f0e0129; public static final int TextAppearance_MaterialComponents_Headline4=0x7f0e012a; public static final int TextAppearance_MaterialComponents_Headline5=0x7f0e012b; public static final int TextAppearance_MaterialComponents_Headline6=0x7f0e012c; public static final int TextAppearance_MaterialComponents_Overline=0x7f0e012d; public static final int TextAppearance_MaterialComponents_Subtitle1=0x7f0e012e; public static final int TextAppearance_MaterialComponents_Subtitle2=0x7f0e012f; public static final int TextAppearance_MaterialComponents_Tab=0x7f0e0130; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e0131; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e0132; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e0133; public static final int Theme_AppCompat=0x7f0e0134; public static final int Theme_AppCompat_CompactMenu=0x7f0e0135; public static final int Theme_AppCompat_DayNight=0x7f0e0136; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0e0137; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0e0138; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0e0139; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0e013a; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0e013b; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0e013c; public static final int Theme_AppCompat_Dialog=0x7f0e013d; public static final int Theme_AppCompat_Dialog_Alert=0x7f0e013e; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0e013f; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0e0140; public static final int Theme_AppCompat_Light=0x7f0e0141; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0e0142; public static final int Theme_AppCompat_Light_Dialog=0x7f0e0143; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0e0144; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e0145; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0e0146; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0e0147; public static final int Theme_AppCompat_NoActionBar=0x7f0e0148; public static final int Theme_Design=0x7f0e0149; public static final int Theme_Design_BottomSheetDialog=0x7f0e014a; public static final int Theme_Design_Light=0x7f0e014b; public static final int Theme_Design_Light_BottomSheetDialog=0x7f0e014c; public static final int Theme_Design_Light_NoActionBar=0x7f0e014d; public static final int Theme_Design_NoActionBar=0x7f0e014e; public static final int Theme_MaterialComponents=0x7f0e014f; public static final int Theme_MaterialComponents_BottomSheetDialog=0x7f0e0150; public static final int Theme_MaterialComponents_Bridge=0x7f0e0151; public static final int Theme_MaterialComponents_CompactMenu=0x7f0e0152; public static final int Theme_MaterialComponents_Dialog=0x7f0e0153; public static final int Theme_MaterialComponents_Dialog_Alert=0x7f0e0154; public static final int Theme_MaterialComponents_Dialog_MinWidth=0x7f0e0155; public static final int Theme_MaterialComponents_DialogWhenLarge=0x7f0e0156; public static final int Theme_MaterialComponents_Light=0x7f0e0157; public static final int Theme_MaterialComponents_Light_BottomSheetDialog=0x7f0e0158; public static final int Theme_MaterialComponents_Light_Bridge=0x7f0e0159; public static final int Theme_MaterialComponents_Light_DarkActionBar=0x7f0e015a; public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e015b; public static final int Theme_MaterialComponents_Light_Dialog=0x7f0e015c; public static final int Theme_MaterialComponents_Light_Dialog_Alert=0x7f0e015d; public static final int Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0e015e; public static final int Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0e015f; public static final int Theme_MaterialComponents_Light_NoActionBar=0x7f0e0160; public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge=0x7f0e0161; public static final int Theme_MaterialComponents_NoActionBar=0x7f0e0162; public static final int Theme_MaterialComponents_NoActionBar_Bridge=0x7f0e0163; public static final int ThemeOverlay_AppCompat=0x7f0e0164; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0e0165; public static final int ThemeOverlay_AppCompat_Dark=0x7f0e0166; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e0167; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0e0168; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0169; public static final int ThemeOverlay_AppCompat_Light=0x7f0e016a; public static final int ThemeOverlay_MaterialComponents=0x7f0e016b; public static final int ThemeOverlay_MaterialComponents_ActionBar=0x7f0e016c; public static final int ThemeOverlay_MaterialComponents_Dark=0x7f0e016d; public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar=0x7f0e016e; public static final int ThemeOverlay_MaterialComponents_Dialog=0x7f0e016f; public static final int ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e0170; public static final int ThemeOverlay_MaterialComponents_Light=0x7f0e0171; public static final int ThemeOverlay_MaterialComponents_TextInputEditText=0x7f0e0172; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox=0x7f0e0173; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0e0174; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0e0175; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0e0176; public static final int Widget_AppCompat_ActionBar=0x7f0e0177; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0e0178; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0e0179; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0e017a; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0e017b; public static final int Widget_AppCompat_ActionButton=0x7f0e017c; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0e017d; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0e017e; public static final int Widget_AppCompat_ActionMode=0x7f0e017f; public static final int Widget_AppCompat_ActivityChooserView=0x7f0e0180; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0e0181; public static final int Widget_AppCompat_Button=0x7f0e0182; public static final int Widget_AppCompat_Button_Borderless=0x7f0e0183; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0e0184; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e0185; public static final int Widget_AppCompat_Button_Colored=0x7f0e0186; public static final int Widget_AppCompat_Button_Small=0x7f0e0187; public static final int Widget_AppCompat_ButtonBar=0x7f0e0188; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e0189; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0e018a; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0e018b; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0e018c; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0e018d; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0e018e; public static final int Widget_AppCompat_EditText=0x7f0e018f; public static final int Widget_AppCompat_ImageButton=0x7f0e0190; public static final int Widget_AppCompat_Light_ActionBar=0x7f0e0191; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0e0192; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0e0193; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e0194; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0e0195; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0e0196; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e0197; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0e0198; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0e0199; public static final int Widget_AppCompat_Light_ActionButton=0x7f0e019a; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0e019b; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0e019c; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0e019d; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0e019e; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0e019f; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0e01a0; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0e01a1; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0e01a2; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0e01a3; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e01a4; public static final int Widget_AppCompat_Light_SearchView=0x7f0e01a5; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0e01a6; public static final int Widget_AppCompat_ListMenuView=0x7f0e01a7; public static final int Widget_AppCompat_ListPopupWindow=0x7f0e01a8; public static final int Widget_AppCompat_ListView=0x7f0e01a9; public static final int Widget_AppCompat_ListView_DropDown=0x7f0e01aa; public static final int Widget_AppCompat_ListView_Menu=0x7f0e01ab; public static final int Widget_AppCompat_PopupMenu=0x7f0e01ac; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0e01ad; public static final int Widget_AppCompat_PopupWindow=0x7f0e01ae; public static final int Widget_AppCompat_ProgressBar=0x7f0e01af; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0e01b0; public static final int Widget_AppCompat_RatingBar=0x7f0e01b1; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0e01b2; public static final int Widget_AppCompat_RatingBar_Small=0x7f0e01b3; public static final int Widget_AppCompat_SearchView=0x7f0e01b4; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0e01b5; public static final int Widget_AppCompat_SeekBar=0x7f0e01b6; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0e01b7; public static final int Widget_AppCompat_Spinner=0x7f0e01b8; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0e01b9; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0e01ba; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0e01bb; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0e01bc; public static final int Widget_AppCompat_Toolbar=0x7f0e01bd; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e01be; public static final int Widget_Compat_NotificationActionContainer=0x7f0e01bf; public static final int Widget_Compat_NotificationActionText=0x7f0e01c0; public static final int Widget_Design_AppBarLayout=0x7f0e01c1; public static final int Widget_Design_BottomNavigationView=0x7f0e01c2; public static final int Widget_Design_BottomSheet_Modal=0x7f0e01c3; public static final int Widget_Design_CollapsingToolbar=0x7f0e01c4; public static final int Widget_Design_FloatingActionButton=0x7f0e01c5; public static final int Widget_Design_NavigationView=0x7f0e01c6; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0e01c7; public static final int Widget_Design_Snackbar=0x7f0e01c8; public static final int Widget_Design_TabLayout=0x7f0e01c9; public static final int Widget_Design_TextInputLayout=0x7f0e01ca; public static final int Widget_MaterialComponents_BottomAppBar=0x7f0e01cb; public static final int Widget_MaterialComponents_BottomAppBar_Colored=0x7f0e01cc; public static final int Widget_MaterialComponents_BottomNavigationView=0x7f0e01cd; public static final int Widget_MaterialComponents_BottomNavigationView_Colored=0x7f0e01ce; public static final int Widget_MaterialComponents_BottomSheet_Modal=0x7f0e01cf; public static final int Widget_MaterialComponents_Button=0x7f0e01d0; public static final int Widget_MaterialComponents_Button_Icon=0x7f0e01d1; public static final int Widget_MaterialComponents_Button_OutlinedButton=0x7f0e01d2; public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon=0x7f0e01d3; public static final int Widget_MaterialComponents_Button_TextButton=0x7f0e01d4; public static final int Widget_MaterialComponents_Button_TextButton_Dialog=0x7f0e01d5; public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon=0x7f0e01d6; public static final int Widget_MaterialComponents_Button_TextButton_Icon=0x7f0e01d7; public static final int Widget_MaterialComponents_Button_UnelevatedButton=0x7f0e01d8; public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon=0x7f0e01d9; public static final int Widget_MaterialComponents_CardView=0x7f0e01da; public static final int Widget_MaterialComponents_Chip_Action=0x7f0e01db; public static final int Widget_MaterialComponents_Chip_Choice=0x7f0e01dc; public static final int Widget_MaterialComponents_Chip_Entry=0x7f0e01dd; public static final int Widget_MaterialComponents_Chip_Filter=0x7f0e01de; public static final int Widget_MaterialComponents_ChipGroup=0x7f0e01df; public static final int Widget_MaterialComponents_FloatingActionButton=0x7f0e01e0; public static final int Widget_MaterialComponents_NavigationView=0x7f0e01e1; public static final int Widget_MaterialComponents_Snackbar=0x7f0e01e2; public static final int Widget_MaterialComponents_Snackbar_FullWidth=0x7f0e01e3; public static final int Widget_MaterialComponents_TabLayout=0x7f0e01e4; public static final int Widget_MaterialComponents_TabLayout_Colored=0x7f0e01e5; public static final int Widget_MaterialComponents_TextInputEditText_FilledBox=0x7f0e01e6; public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0e01e7; public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0e01e8; public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0e01e9; public static final int Widget_MaterialComponents_TextInputLayout_FilledBox=0x7f0e01ea; public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense=0x7f0e01eb; public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox=0x7f0e01ec; public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense=0x7f0e01ed; public static final int Widget_MaterialComponents_Toolbar=0x7f0e01ee; public static final int Widget_Support_CoordinatorLayout=0x7f0e01ef; } public static final class styleable { /** * Attributes that can be used with a ActionBar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionBar_background com.companyname.katherine_lopez_term_project_v1:background}</code></td><td>Specifies a background drawable for the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_backgroundSplit com.companyname.katherine_lopez_term_project_v1:backgroundSplit}</code></td><td>Specifies a background drawable for the bottom component of a split action bar.</td></tr> * <tr><td><code>{@link #ActionBar_backgroundStacked com.companyname.katherine_lopez_term_project_v1:backgroundStacked}</code></td><td>Specifies a background drawable for a second stacked row of the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEnd com.companyname.katherine_lopez_term_project_v1:contentInsetEnd}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.companyname.katherine_lopez_term_project_v1:contentInsetEndWithActions}</code></td><td>Minimum inset for content views within a bar when actions from a menu * are present.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetLeft com.companyname.katherine_lopez_term_project_v1:contentInsetLeft}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetRight com.companyname.katherine_lopez_term_project_v1:contentInsetRight}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStart com.companyname.katherine_lopez_term_project_v1:contentInsetStart}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.companyname.katherine_lopez_term_project_v1:contentInsetStartWithNavigation}</code></td><td>Minimum inset for content views within a bar when a navigation button * is present, such as the Up button.</td></tr> * <tr><td><code>{@link #ActionBar_customNavigationLayout com.companyname.katherine_lopez_term_project_v1:customNavigationLayout}</code></td><td>Specifies a layout for custom navigation.</td></tr> * <tr><td><code>{@link #ActionBar_displayOptions com.companyname.katherine_lopez_term_project_v1:displayOptions}</code></td><td>Options affecting how the action bar is displayed.</td></tr> * <tr><td><code>{@link #ActionBar_divider com.companyname.katherine_lopez_term_project_v1:divider}</code></td><td>Specifies the drawable used for item dividers.</td></tr> * <tr><td><code>{@link #ActionBar_elevation com.companyname.katherine_lopez_term_project_v1:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #ActionBar_height com.companyname.katherine_lopez_term_project_v1:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_hideOnContentScroll com.companyname.katherine_lopez_term_project_v1:hideOnContentScroll}</code></td><td>Set true to hide the action bar on a vertical nested scroll of content.</td></tr> * <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.companyname.katherine_lopez_term_project_v1:homeAsUpIndicator}</code></td><td>Specifies a drawable to use for the 'home as up' indicator.</td></tr> * <tr><td><code>{@link #ActionBar_homeLayout com.companyname.katherine_lopez_term_project_v1:homeLayout}</code></td><td>Specifies a layout to use for the "home" section of the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_icon com.companyname.katherine_lopez_term_project_v1:icon}</code></td><td>Specifies the drawable used for the application icon.</td></tr> * <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.companyname.katherine_lopez_term_project_v1:indeterminateProgressStyle}</code></td><td>Specifies a style resource to use for an indeterminate progress spinner.</td></tr> * <tr><td><code>{@link #ActionBar_itemPadding com.companyname.katherine_lopez_term_project_v1:itemPadding}</code></td><td>Specifies padding that should be applied to the left and right sides of * system-provided items in the bar.</td></tr> * <tr><td><code>{@link #ActionBar_logo com.companyname.katherine_lopez_term_project_v1:logo}</code></td><td>Specifies the drawable used for the application logo.</td></tr> * <tr><td><code>{@link #ActionBar_navigationMode com.companyname.katherine_lopez_term_project_v1:navigationMode}</code></td><td>The type of navigation to use.</td></tr> * <tr><td><code>{@link #ActionBar_popupTheme com.companyname.katherine_lopez_term_project_v1:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_progressBarPadding com.companyname.katherine_lopez_term_project_v1:progressBarPadding}</code></td><td>Specifies the horizontal padding on either end for an embedded progress bar.</td></tr> * <tr><td><code>{@link #ActionBar_progressBarStyle com.companyname.katherine_lopez_term_project_v1:progressBarStyle}</code></td><td>Specifies a style resource to use for an embedded progress bar.</td></tr> * <tr><td><code>{@link #ActionBar_subtitle com.companyname.katherine_lopez_term_project_v1:subtitle}</code></td><td>Specifies subtitle text used for navigationMode="normal"</td></tr> * <tr><td><code>{@link #ActionBar_subtitleTextStyle com.companyname.katherine_lopez_term_project_v1:subtitleTextStyle}</code></td><td>Specifies a style to use for subtitle text.</td></tr> * <tr><td><code>{@link #ActionBar_title com.companyname.katherine_lopez_term_project_v1:title}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_titleTextStyle com.companyname.katherine_lopez_term_project_v1:titleTextStyle}</code></td><td>Specifies a style to use for title text.</td></tr> * </table> * @see #ActionBar_background * @see #ActionBar_backgroundSplit * @see #ActionBar_backgroundStacked * @see #ActionBar_contentInsetEnd * @see #ActionBar_contentInsetEndWithActions * @see #ActionBar_contentInsetLeft * @see #ActionBar_contentInsetRight * @see #ActionBar_contentInsetStart * @see #ActionBar_contentInsetStartWithNavigation * @see #ActionBar_customNavigationLayout * @see #ActionBar_displayOptions * @see #ActionBar_divider * @see #ActionBar_elevation * @see #ActionBar_height * @see #ActionBar_hideOnContentScroll * @see #ActionBar_homeAsUpIndicator * @see #ActionBar_homeLayout * @see #ActionBar_icon * @see #ActionBar_indeterminateProgressStyle * @see #ActionBar_itemPadding * @see #ActionBar_logo * @see #ActionBar_navigationMode * @see #ActionBar_popupTheme * @see #ActionBar_progressBarPadding * @see #ActionBar_progressBarStyle * @see #ActionBar_subtitle * @see #ActionBar_subtitleTextStyle * @see #ActionBar_title * @see #ActionBar_titleTextStyle */ public static final int[] ActionBar={ 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f0300a4, 0x7f0300a9, 0x7f0300aa, 0x7f0300b5, 0x7f0300df, 0x7f0300e4, 0x7f0300e9, 0x7f0300ea, 0x7f0300ec, 0x7f0300f6, 0x7f030100, 0x7f030123, 0x7f03012f, 0x7f030140, 0x7f030144, 0x7f030145, 0x7f030173, 0x7f030176, 0x7f0301bb, 0x7f0301c5 }; /** * <p> * @attr description * Specifies a background drawable for the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:background */ public static final int ActionBar_background=0; /** * <p> * @attr description * Specifies a background drawable for the bottom component of a split action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:backgroundSplit */ public static final int ActionBar_backgroundSplit=1; /** * <p> * @attr description * Specifies a background drawable for a second stacked row of the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:backgroundStacked */ public static final int ActionBar_backgroundStacked=2; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetEnd */ public static final int ActionBar_contentInsetEnd=3; /** * <p> * @attr description * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions=4; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetLeft */ public static final int ActionBar_contentInsetLeft=5; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetRight */ public static final int ActionBar_contentInsetRight=6; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetStart */ public static final int ActionBar_contentInsetStart=7; /** * <p> * @attr description * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation=8; /** * <p> * @attr description * Specifies a layout for custom navigation. Overrides navigationMode. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:customNavigationLayout */ public static final int ActionBar_customNavigationLayout=9; /** * <p> * @attr description * Options affecting how the action bar is displayed. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:displayOptions */ public static final int ActionBar_displayOptions=10; /** * <p> * @attr description * Specifies the drawable used for item dividers. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:divider */ public static final int ActionBar_divider=11; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:elevation */ public static final int ActionBar_elevation=12; /** * <p> * @attr description * Specifies a fixed height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:height */ public static final int ActionBar_height=13; /** * <p> * @attr description * Set true to hide the action bar on a vertical nested scroll of content. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll=14; /** * <p> * @attr description * Up navigation glyph * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator=15; /** * <p> * @attr description * Specifies a layout to use for the "home" section of the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:homeLayout */ public static final int ActionBar_homeLayout=16; /** * <p> * @attr description * Specifies the drawable used for the application icon. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:icon */ public static final int ActionBar_icon=17; /** * <p> * @attr description * Specifies a style resource to use for an indeterminate progress spinner. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle=18; /** * <p> * @attr description * Specifies padding that should be applied to the left and right sides of * system-provided items in the bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:itemPadding */ public static final int ActionBar_itemPadding=19; /** * <p> * @attr description * Specifies the drawable used for the application logo. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:logo */ public static final int ActionBar_logo=20; /** * <p> * @attr description * The type of navigation to use. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>listMode</td><td>1</td><td>The action bar will use a selection list for navigation.</td></tr> * <tr><td>normal</td><td>0</td><td>Normal static title text</td></tr> * <tr><td>tabMode</td><td>2</td><td>The action bar will use a series of horizontal tabs for navigation.</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:navigationMode */ public static final int ActionBar_navigationMode=21; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:popupTheme */ public static final int ActionBar_popupTheme=22; /** * <p> * @attr description * Specifies the horizontal padding on either end for an embedded progress bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:progressBarPadding */ public static final int ActionBar_progressBarPadding=23; /** * <p> * @attr description * Specifies a style resource to use for an embedded progress bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:progressBarStyle */ public static final int ActionBar_progressBarStyle=24; /** * <p> * @attr description * Specifies subtitle text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:subtitle */ public static final int ActionBar_subtitle=25; /** * <p> * @attr description * Specifies a style to use for subtitle text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle=26; /** * <p> * @attr description * Specifies title text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:title */ public static final int ActionBar_title=27; /** * <p> * @attr description * Specifies a style to use for title text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:titleTextStyle */ public static final int ActionBar_titleTextStyle=28; /** * Attributes that can be used with a ActionBarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * </table> * @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout={ 0x010100b3 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #ActionBarLayout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity=0; /** * Attributes that can be used with a ActionMenuItemView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> * </table> * @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView={ 0x0101013f }; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #ActionMenuItemView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth=0; public static final int[] ActionMenuView={ }; /** * Attributes that can be used with a ActionMode. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionMode_background com.companyname.katherine_lopez_term_project_v1:background}</code></td><td>Specifies a background drawable for the action bar.</td></tr> * <tr><td><code>{@link #ActionMode_backgroundSplit com.companyname.katherine_lopez_term_project_v1:backgroundSplit}</code></td><td>Specifies a background drawable for the bottom component of a split action bar.</td></tr> * <tr><td><code>{@link #ActionMode_closeItemLayout com.companyname.katherine_lopez_term_project_v1:closeItemLayout}</code></td><td>Specifies a layout to use for the "close" item at the starting edge.</td></tr> * <tr><td><code>{@link #ActionMode_height com.companyname.katherine_lopez_term_project_v1:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_subtitleTextStyle com.companyname.katherine_lopez_term_project_v1:subtitleTextStyle}</code></td><td>Specifies a style to use for subtitle text.</td></tr> * <tr><td><code>{@link #ActionMode_titleTextStyle com.companyname.katherine_lopez_term_project_v1:titleTextStyle}</code></td><td>Specifies a style to use for title text.</td></tr> * </table> * @see #ActionMode_background * @see #ActionMode_backgroundSplit * @see #ActionMode_closeItemLayout * @see #ActionMode_height * @see #ActionMode_subtitleTextStyle * @see #ActionMode_titleTextStyle */ public static final int[] ActionMode={ 0x7f030031, 0x7f030032, 0x7f03007e, 0x7f0300df, 0x7f030176, 0x7f0301c5 }; /** * <p> * @attr description * Specifies a background for the action mode bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:background */ public static final int ActionMode_background=0; /** * <p> * @attr description * Specifies a background for the split action mode bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:backgroundSplit */ public static final int ActionMode_backgroundSplit=1; /** * <p> * @attr description * Specifies a layout to use for the "close" item at the starting edge. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:closeItemLayout */ public static final int ActionMode_closeItemLayout=2; /** * <p> * @attr description * Specifies a fixed height for the action mode bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:height */ public static final int ActionMode_height=3; /** * <p> * @attr description * Specifies a style to use for subtitle text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle=4; /** * <p> * @attr description * Specifies a style to use for title text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:titleTextStyle */ public static final int ActionMode_titleTextStyle=5; /** * Attributes that can be used with a ActivityChooserView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.companyname.katherine_lopez_term_project_v1:expandActivityOverflowButtonDrawable}</code></td><td>The drawable to show in the button for expanding the activities overflow popup.</td></tr> * <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.companyname.katherine_lopez_term_project_v1:initialActivityCount}</code></td><td>The maximal number of items initially shown in the activity list.</td></tr> * </table> * @see #ActivityChooserView_expandActivityOverflowButtonDrawable * @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView={ 0x7f0300ba, 0x7f0300f7 }; /** * <p> * @attr description * The drawable to show in the button for expanding the activities overflow popup. * <strong>Note:</strong> Clients would like to set this drawable * as a clue about the action the chosen activity will perform. For * example, if share activity is to be chosen the drawable should * give a clue that sharing is to be performed. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; /** * <p> * @attr description * The maximal number of items initially shown in the activity list. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount=1; /** * Attributes that can be used with a AlertDialog. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_buttonIconDimen com.companyname.katherine_lopez_term_project_v1:buttonIconDimen}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.companyname.katherine_lopez_term_project_v1:buttonPanelSideLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listItemLayout com.companyname.katherine_lopez_term_project_v1:listItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listLayout com.companyname.katherine_lopez_term_project_v1:listLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.companyname.katherine_lopez_term_project_v1:multiChoiceItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_showTitle com.companyname.katherine_lopez_term_project_v1:showTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.companyname.katherine_lopez_term_project_v1:singleChoiceItemLayout}</code></td><td></td></tr> * </table> * @see #AlertDialog_android_layout * @see #AlertDialog_buttonIconDimen * @see #AlertDialog_buttonPanelSideLayout * @see #AlertDialog_listItemLayout * @see #AlertDialog_listLayout * @see #AlertDialog_multiChoiceItemLayout * @see #AlertDialog_showTitle * @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog={ 0x010100f2, 0x7f030052, 0x7f030053, 0x7f03011a, 0x7f03011b, 0x7f03012c, 0x7f03015b, 0x7f03015c }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int AlertDialog_android_layout=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#buttonIconDimen} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonIconDimen */ public static final int AlertDialog_buttonIconDimen=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#buttonPanelSideLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#listItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:listItemLayout */ public static final int AlertDialog_listItemLayout=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#listLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:listLayout */ public static final int AlertDialog_listLayout=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#multiChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout=5; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#showTitle} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:showTitle */ public static final int AlertDialog_showTitle=6; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#singleChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout=7; /** * Attributes that can be used with a AnimatedStateListDrawableCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_dither android:dither}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableCompat_android_dither * @see #AnimatedStateListDrawableCompat_android_visible * @see #AnimatedStateListDrawableCompat_android_variablePadding * @see #AnimatedStateListDrawableCompat_android_constantSize * @see #AnimatedStateListDrawableCompat_android_enterFadeDuration * @see #AnimatedStateListDrawableCompat_android_exitFadeDuration */ public static final int[] AnimatedStateListDrawableCompat={ 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** * <p> * @attr description * Enables or disables dithering of the bitmap if the bitmap does not have the * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with * an RGB 565 screen). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:dither */ public static final int AnimatedStateListDrawableCompat_android_dither=0; /** * <p> * @attr description * Indicates whether the drawable should be initially visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int AnimatedStateListDrawableCompat_android_visible=1; /** * <p> * @attr description * If true, allows the drawable's padding to change based on the * current state that is selected. If false, the padding will * stay the same (based on the maximum padding of all the states). * Enabling this feature requires that the owner of the drawable * deal with performing layout when the state changes, which is * often not supported. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:variablePadding */ public static final int AnimatedStateListDrawableCompat_android_variablePadding=2; /** * <p> * @attr description * If true, the drawable's reported internal size will remain * constant as the state changes; the size is the maximum of all * of the states. If false, the size will vary based on the * current state. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:constantSize */ public static final int AnimatedStateListDrawableCompat_android_constantSize=3; /** * <p> * @attr description * Amount of time (in milliseconds) to fade in a new state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:enterFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration=4; /** * <p> * @attr description * Amount of time (in milliseconds) to fade out an old state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:exitFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration=5; /** * Attributes that can be used with a AnimatedStateListDrawableItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableItem_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableItem_android_id * @see #AnimatedStateListDrawableItem_android_drawable */ public static final int[] AnimatedStateListDrawableItem={ 0x010100d0, 0x01010199 }; /** * <p> * @attr description * Keyframe identifier for use in specifying transitions. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int AnimatedStateListDrawableItem_android_id=0; /** * <p> * @attr description * Reference to a drawable resource to use for the frame. If not * given, the drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int AnimatedStateListDrawableItem_android_drawable=1; /** * Attributes that can be used with a AnimatedStateListDrawableTransition. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_drawable android:drawable}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_toId android:toId}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableTransition_android_drawable * @see #AnimatedStateListDrawableTransition_android_toId * @see #AnimatedStateListDrawableTransition_android_fromId * @see #AnimatedStateListDrawableTransition_android_reversible */ public static final int[] AnimatedStateListDrawableTransition={ 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }; /** * <p> * @attr description * Reference to a animation drawable resource to use for the frame. If not * given, the animation drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int AnimatedStateListDrawableTransition_android_drawable=0; /** * <p> * @attr description * Keyframe identifier for the ending state. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:toId */ public static final int AnimatedStateListDrawableTransition_android_toId=1; /** * <p> * @attr description * Keyframe identifier for the starting state. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:fromId */ public static final int AnimatedStateListDrawableTransition_android_fromId=2; /** * <p> * @attr description * Whether this transition is reversible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:reversible */ public static final int AnimatedStateListDrawableTransition_android_reversible=3; /** * Attributes that can be used with a AppBarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_elevation com.companyname.katherine_lopez_term_project_v1:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #AppBarLayout_expanded com.companyname.katherine_lopez_term_project_v1:expanded}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_liftOnScroll com.companyname.katherine_lopez_term_project_v1:liftOnScroll}</code></td><td></td></tr> * </table> * @see #AppBarLayout_android_background * @see #AppBarLayout_android_touchscreenBlocksFocus * @see #AppBarLayout_android_keyboardNavigationCluster * @see #AppBarLayout_elevation * @see #AppBarLayout_expanded * @see #AppBarLayout_liftOnScroll */ public static final int[] AppBarLayout={ 0x010100d4, 0x0101048f, 0x01010540, 0x7f0300b5, 0x7f0300bb, 0x7f030115 }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:background */ public static final int AppBarLayout_android_background=0; /** * <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:touchscreenBlocksFocus */ public static final int AppBarLayout_android_touchscreenBlocksFocus=1; /** * <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:keyboardNavigationCluster */ public static final int AppBarLayout_android_keyboardNavigationCluster=2; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:elevation */ public static final int AppBarLayout_elevation=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#expanded} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:expanded */ public static final int AppBarLayout_expanded=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#liftOnScroll} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:liftOnScroll */ public static final int AppBarLayout_liftOnScroll=5; /** * Attributes that can be used with a AppBarLayoutStates. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.companyname.katherine_lopez_term_project_v1:state_collapsed}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.companyname.katherine_lopez_term_project_v1:state_collapsible}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_liftable com.companyname.katherine_lopez_term_project_v1:state_liftable}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_lifted com.companyname.katherine_lopez_term_project_v1:state_lifted}</code></td><td></td></tr> * </table> * @see #AppBarLayoutStates_state_collapsed * @see #AppBarLayoutStates_state_collapsible * @see #AppBarLayoutStates_state_liftable * @see #AppBarLayoutStates_state_lifted */ public static final int[] AppBarLayoutStates={ 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016c }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#state_collapsed} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#state_collapsible} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:state_collapsible */ public static final int AppBarLayoutStates_state_collapsible=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#state_liftable} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:state_liftable */ public static final int AppBarLayoutStates_state_liftable=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#state_lifted} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:state_lifted */ public static final int AppBarLayoutStates_state_lifted=3; /** * Attributes that can be used with a AppBarLayout_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.companyname.katherine_lopez_term_project_v1:layout_scrollFlags}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.companyname.katherine_lopez_term_project_v1:layout_scrollInterpolator}</code></td><td></td></tr> * </table> * @see #AppBarLayout_Layout_layout_scrollFlags * @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout={ 0x7f030113, 0x7f030114 }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#layout_scrollFlags} * attribute's value can be found in the {@link #AppBarLayout_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>enterAlways</td><td>4</td><td></td></tr> * <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr> * <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr> * <tr><td>scroll</td><td>1</td><td></td></tr> * <tr><td>snap</td><td>10</td><td></td></tr> * <tr><td>snapMargins</td><td>20</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#layout_scrollInterpolator} * attribute's value can be found in the {@link #AppBarLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:layout_scrollInterpolator */ public static final int AppBarLayout_Layout_layout_scrollInterpolator=1; /** * Attributes that can be used with a AppCompatImageView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_srcCompat com.companyname.katherine_lopez_term_project_v1:srcCompat}</code></td><td>Sets a drawable as the content of this ImageView.</td></tr> * <tr><td><code>{@link #AppCompatImageView_tint com.companyname.katherine_lopez_term_project_v1:tint}</code></td><td>Tint to apply to the image source.</td></tr> * <tr><td><code>{@link #AppCompatImageView_tintMode com.companyname.katherine_lopez_term_project_v1:tintMode}</code></td><td>Blending mode used to apply the image source tint.</td></tr> * </table> * @see #AppCompatImageView_android_src * @see #AppCompatImageView_srcCompat * @see #AppCompatImageView_tint * @see #AppCompatImageView_tintMode */ public static final int[] AppCompatImageView={ 0x01010119, 0x7f030166, 0x7f0301b9, 0x7f0301ba }; /** * <p>This symbol is the offset where the {@link android.R.attr#src} * attribute's value can be found in the {@link #AppCompatImageView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:src */ public static final int AppCompatImageView_android_src=0; /** * <p> * @attr description * Sets a drawable as the content of this ImageView. Allows the use of vector drawable * when running on older versions of the platform. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:srcCompat */ public static final int AppCompatImageView_srcCompat=1; /** * <p> * @attr description * Tint to apply to the image source. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tint */ public static final int AppCompatImageView_tint=2; /** * <p> * @attr description * Blending mode used to apply the image source tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:tintMode */ public static final int AppCompatImageView_tintMode=3; /** * Attributes that can be used with a AppCompatSeekBar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMark com.companyname.katherine_lopez_term_project_v1:tickMark}</code></td><td>Drawable displayed at each progress position on a seekbar.</td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.companyname.katherine_lopez_term_project_v1:tickMarkTint}</code></td><td>Tint to apply to the tick mark drawable.</td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.companyname.katherine_lopez_term_project_v1:tickMarkTintMode}</code></td><td>Blending mode used to apply the tick mark tint.</td></tr> * </table> * @see #AppCompatSeekBar_android_thumb * @see #AppCompatSeekBar_tickMark * @see #AppCompatSeekBar_tickMarkTint * @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar={ 0x01010142, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8 }; /** * <p>This symbol is the offset where the {@link android.R.attr#thumb} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb=0; /** * <p> * @attr description * Drawable displayed at each progress position on a seekbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tickMark */ public static final int AppCompatSeekBar_tickMark=1; /** * <p> * @attr description * Tint to apply to the tick mark drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint=2; /** * <p> * @attr description * Blending mode used to apply the tick mark tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode=3; /** * Attributes that can be used with a AppCompatTextHelper. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> * </table> * @see #AppCompatTextHelper_android_textAppearance * @see #AppCompatTextHelper_android_drawableTop * @see #AppCompatTextHelper_android_drawableBottom * @see #AppCompatTextHelper_android_drawableLeft * @see #AppCompatTextHelper_android_drawableRight * @see #AppCompatTextHelper_android_drawableStart * @see #AppCompatTextHelper_android_drawableEnd */ public static final int[] AppCompatTextHelper={ 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableTop} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop=1; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom=2; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft=3; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableRight} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight=4; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableStart} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart=5; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd=6; /** * Attributes that can be used with a AppCompatTextView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize com.companyname.katherine_lopez_term_project_v1:autoSizeMaxTextSize}</code></td><td>The maximum text size constraint to be used when auto-sizing text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.companyname.katherine_lopez_term_project_v1:autoSizeMinTextSize}</code></td><td>The minimum text size constraint to be used when auto-sizing text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.companyname.katherine_lopez_term_project_v1:autoSizePresetSizes}</code></td><td>Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.companyname.katherine_lopez_term_project_v1:autoSizeStepGranularity}</code></td><td>Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.companyname.katherine_lopez_term_project_v1:autoSizeTextType}</code></td><td>Specify the type of auto-size.</td></tr> * <tr><td><code>{@link #AppCompatTextView_firstBaselineToTopHeight com.companyname.katherine_lopez_term_project_v1:firstBaselineToTopHeight}</code></td><td>Distance from the top of the TextView to the first text baseline.</td></tr> * <tr><td><code>{@link #AppCompatTextView_fontFamily com.companyname.katherine_lopez_term_project_v1:fontFamily}</code></td><td>The attribute for the font family.</td></tr> * <tr><td><code>{@link #AppCompatTextView_lastBaselineToBottomHeight com.companyname.katherine_lopez_term_project_v1:lastBaselineToBottomHeight}</code></td><td>Distance from the bottom of the TextView to the last text baseline.</td></tr> * <tr><td><code>{@link #AppCompatTextView_lineHeight com.companyname.katherine_lopez_term_project_v1:lineHeight}</code></td><td>Explicit height between lines of text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_textAllCaps com.companyname.katherine_lopez_term_project_v1:textAllCaps}</code></td><td>Present the text in ALL CAPS.</td></tr> * </table> * @see #AppCompatTextView_android_textAppearance * @see #AppCompatTextView_autoSizeMaxTextSize * @see #AppCompatTextView_autoSizeMinTextSize * @see #AppCompatTextView_autoSizePresetSizes * @see #AppCompatTextView_autoSizeStepGranularity * @see #AppCompatTextView_autoSizeTextType * @see #AppCompatTextView_firstBaselineToTopHeight * @see #AppCompatTextView_fontFamily * @see #AppCompatTextView_lastBaselineToBottomHeight * @see #AppCompatTextView_lineHeight * @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView={ 0x01010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f0300ce, 0x7f0300d1, 0x7f030108, 0x7f030116, 0x7f030196 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance=0; /** * <p> * @attr description * The maximum text size constraint to be used when auto-sizing text. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize=1; /** * <p> * @attr description * The minimum text size constraint to be used when auto-sizing text. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize=2; /** * <p> * @attr description * Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides * <code>autoSizeStepGranularity</code> if set. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes=3; /** * <p> * @attr description * Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>. The default is 1px. Overwrites * <code>autoSizePresetSizes</code> if set. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity=4; /** * <p> * @attr description * Specify the type of auto-size. Note that this feature is not supported by EditText, * works only for TextView. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td>No auto-sizing (default).</td></tr> * <tr><td>uniform</td><td>1</td><td>Uniform horizontal and vertical text size scaling to fit within the * container.</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType=5; /** * <p> * @attr description * Distance from the top of the TextView to the first text baseline. If set, this * overrides the value set for paddingTop. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:firstBaselineToTopHeight */ public static final int AppCompatTextView_firstBaselineToTopHeight=6; /** * <p> * @attr description * The attribute for the font family. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:fontFamily */ public static final int AppCompatTextView_fontFamily=7; /** * <p> * @attr description * Distance from the bottom of the TextView to the last text baseline. If set, this * overrides the value set for paddingBottom. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:lastBaselineToBottomHeight */ public static final int AppCompatTextView_lastBaselineToBottomHeight=8; /** * <p> * @attr description * Explicit height between lines of text. If set, this will override the values set * for lineSpacingExtra and lineSpacingMultiplier. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:lineHeight */ public static final int AppCompatTextView_lineHeight=9; /** * <p> * @attr description * Present the text in ALL CAPS. This may use a small-caps form when available. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAllCaps */ public static final int AppCompatTextView_textAllCaps=10; /** * Attributes that can be used with a AppCompatTheme. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.companyname.katherine_lopez_term_project_v1:actionBarDivider}</code></td><td>Custom divider drawable to use for elements in the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.companyname.katherine_lopez_term_project_v1:actionBarItemBackground}</code></td><td>Custom item state list drawable background for action bar items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.companyname.katherine_lopez_term_project_v1:actionBarPopupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSize com.companyname.katherine_lopez_term_project_v1:actionBarSize}</code></td><td>Size of the Action Bar, including the contextual * bar used to present Action Modes.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.companyname.katherine_lopez_term_project_v1:actionBarSplitStyle}</code></td><td>Reference to a style for the split Action Bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.companyname.katherine_lopez_term_project_v1:actionBarStyle}</code></td><td>Reference to a style for the Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.katherine_lopez_term_project_v1:actionBarTabBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.companyname.katherine_lopez_term_project_v1:actionBarTabStyle}</code></td><td>Default style for tabs within an action bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.katherine_lopez_term_project_v1:actionBarTabTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.companyname.katherine_lopez_term_project_v1:actionBarTheme}</code></td><td>Reference to a theme that should be used to inflate the * action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.katherine_lopez_term_project_v1:actionBarWidgetTheme}</code></td><td>Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.companyname.katherine_lopez_term_project_v1:actionButtonStyle}</code></td><td>Default action button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.companyname.katherine_lopez_term_project_v1:actionDropDownStyle}</code></td><td>Default ActionBar dropdown style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.katherine_lopez_term_project_v1:actionMenuTextAppearance}</code></td><td>TextAppearance style that will be applied to text that * appears within action menu items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.companyname.katherine_lopez_term_project_v1:actionMenuTextColor}</code></td><td>Color for text that appears within action menu items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.companyname.katherine_lopez_term_project_v1:actionModeBackground}</code></td><td>Background drawable to use for action mode UI</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.katherine_lopez_term_project_v1:actionModeCloseButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.katherine_lopez_term_project_v1:actionModeCloseDrawable}</code></td><td>Drawable to use for the close action mode button</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.katherine_lopez_term_project_v1:actionModeCopyDrawable}</code></td><td>Drawable to use for the Copy action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.companyname.katherine_lopez_term_project_v1:actionModeCutDrawable}</code></td><td>Drawable to use for the Cut action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.companyname.katherine_lopez_term_project_v1:actionModeFindDrawable}</code></td><td>Drawable to use for the Find action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.companyname.katherine_lopez_term_project_v1:actionModePasteDrawable}</code></td><td>Drawable to use for the Paste action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.katherine_lopez_term_project_v1:actionModePopupWindowStyle}</code></td><td>PopupWindow style to use for action modes when showing as a window overlay.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.katherine_lopez_term_project_v1:actionModeSelectAllDrawable}</code></td><td>Drawable to use for the Select all action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.companyname.katherine_lopez_term_project_v1:actionModeShareDrawable}</code></td><td>Drawable to use for the Share action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.companyname.katherine_lopez_term_project_v1:actionModeSplitBackground}</code></td><td>Background drawable to use for action mode UI in the lower split bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.companyname.katherine_lopez_term_project_v1:actionModeStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.katherine_lopez_term_project_v1:actionModeWebSearchDrawable}</code></td><td>Drawable to use for the Web Search action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.katherine_lopez_term_project_v1:actionOverflowButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.katherine_lopez_term_project_v1:actionOverflowMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.companyname.katherine_lopez_term_project_v1:activityChooserViewStyle}</code></td><td>Default ActivityChooserView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.katherine_lopez_term_project_v1:alertDialogButtonGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.katherine_lopez_term_project_v1:alertDialogCenterButtons}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.companyname.katherine_lopez_term_project_v1:alertDialogStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.companyname.katherine_lopez_term_project_v1:alertDialogTheme}</code></td><td>Theme to use for alert dialogs spawned from this theme.</td></tr> * <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.companyname.katherine_lopez_term_project_v1:autoCompleteTextViewStyle}</code></td><td>Default AutoCompleteTextView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.companyname.katherine_lopez_term_project_v1:borderlessButtonStyle}</code></td><td>Style for buttons without an explicit border, often used in groups.</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.katherine_lopez_term_project_v1:buttonBarButtonStyle}</code></td><td>Style for buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.katherine_lopez_term_project_v1:buttonBarNegativeButtonStyle}</code></td><td>Style for the "negative" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.katherine_lopez_term_project_v1:buttonBarNeutralButtonStyle}</code></td><td>Style for the "neutral" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.katherine_lopez_term_project_v1:buttonBarPositiveButtonStyle}</code></td><td>Style for the "positive" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.companyname.katherine_lopez_term_project_v1:buttonBarStyle}</code></td><td>Style for button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyle com.companyname.katherine_lopez_term_project_v1:buttonStyle}</code></td><td>Normal Button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.companyname.katherine_lopez_term_project_v1:buttonStyleSmall}</code></td><td>Small Button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.companyname.katherine_lopez_term_project_v1:checkboxStyle}</code></td><td>Default Checkbox style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.companyname.katherine_lopez_term_project_v1:checkedTextViewStyle}</code></td><td>Default CheckedTextView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorAccent com.companyname.katherine_lopez_term_project_v1:colorAccent}</code></td><td>Bright complement to the primary branding color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.companyname.katherine_lopez_term_project_v1:colorBackgroundFloating}</code></td><td>Default color of background imagery for floating components, ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.companyname.katherine_lopez_term_project_v1:colorButtonNormal}</code></td><td>The color applied to framework buttons in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.companyname.katherine_lopez_term_project_v1:colorControlActivated}</code></td><td>The color applied to framework controls in their activated (ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.companyname.katherine_lopez_term_project_v1:colorControlHighlight}</code></td><td>The color applied to framework control highlights (ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.companyname.katherine_lopez_term_project_v1:colorControlNormal}</code></td><td>The color applied to framework controls in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorError com.companyname.katherine_lopez_term_project_v1:colorError}</code></td><td>Color used for error states and things that need to be drawn to * the user's attention.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimary com.companyname.katherine_lopez_term_project_v1:colorPrimary}</code></td><td>The primary branding color for the app.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.companyname.katherine_lopez_term_project_v1:colorPrimaryDark}</code></td><td>Dark variant of the primary branding color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.katherine_lopez_term_project_v1:colorSwitchThumbNormal}</code></td><td>The color applied to framework switch thumbs in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_controlBackground com.companyname.katherine_lopez_term_project_v1:controlBackground}</code></td><td>The background used by framework controls.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogCornerRadius com.companyname.katherine_lopez_term_project_v1:dialogCornerRadius}</code></td><td>Preferred corner radius of dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.companyname.katherine_lopez_term_project_v1:dialogPreferredPadding}</code></td><td>Preferred padding for dialog content.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogTheme com.companyname.katherine_lopez_term_project_v1:dialogTheme}</code></td><td>Theme to use for dialogs spawned from this theme.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.companyname.katherine_lopez_term_project_v1:dividerHorizontal}</code></td><td>A drawable that may be used as a horizontal divider between visual elements.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerVertical com.companyname.katherine_lopez_term_project_v1:dividerVertical}</code></td><td>A drawable that may be used as a vertical divider between visual elements.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.companyname.katherine_lopez_term_project_v1:dropDownListViewStyle}</code></td><td>ListPopupWindow compatibility</td></tr> * <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.katherine_lopez_term_project_v1:dropdownListPreferredItemHeight}</code></td><td>The preferred item height for dropdown lists.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextBackground com.companyname.katherine_lopez_term_project_v1:editTextBackground}</code></td><td>EditText background drawable.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextColor com.companyname.katherine_lopez_term_project_v1:editTextColor}</code></td><td>EditText text foreground color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextStyle com.companyname.katherine_lopez_term_project_v1:editTextStyle}</code></td><td>Default EditText style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.companyname.katherine_lopez_term_project_v1:homeAsUpIndicator}</code></td><td>Specifies a drawable to use for the 'home as up' indicator.</td></tr> * <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.companyname.katherine_lopez_term_project_v1:imageButtonStyle}</code></td><td>ImageButton background drawable.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.katherine_lopez_term_project_v1:listChoiceBackgroundIndicator}</code></td><td>Drawable used as a background for selected list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.companyname.katherine_lopez_term_project_v1:listDividerAlertDialog}</code></td><td>The list divider used in alert dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.companyname.katherine_lopez_term_project_v1:listMenuViewStyle}</code></td><td>Default menu-style ListView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.companyname.katherine_lopez_term_project_v1:listPopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.companyname.katherine_lopez_term_project_v1:listPreferredItemHeight}</code></td><td>The preferred list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.katherine_lopez_term_project_v1:listPreferredItemHeightLarge}</code></td><td>A larger, more robust list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.katherine_lopez_term_project_v1:listPreferredItemHeightSmall}</code></td><td>A smaller, sleeker list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.katherine_lopez_term_project_v1:listPreferredItemPaddingLeft}</code></td><td>The preferred padding along the left edge of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.katherine_lopez_term_project_v1:listPreferredItemPaddingRight}</code></td><td>The preferred padding along the right edge of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelBackground com.companyname.katherine_lopez_term_project_v1:panelBackground}</code></td><td>The background of a panel when it is inset from the left and right edges of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.companyname.katherine_lopez_term_project_v1:panelMenuListTheme}</code></td><td>Default Panel Menu style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.companyname.katherine_lopez_term_project_v1:panelMenuListWidth}</code></td><td>Default Panel Menu width.</td></tr> * <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.companyname.katherine_lopez_term_project_v1:popupMenuStyle}</code></td><td>Default PopupMenu style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.companyname.katherine_lopez_term_project_v1:popupWindowStyle}</code></td><td>Default PopupWindow style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.companyname.katherine_lopez_term_project_v1:radioButtonStyle}</code></td><td>Default RadioButton style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.companyname.katherine_lopez_term_project_v1:ratingBarStyle}</code></td><td>Default RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.katherine_lopez_term_project_v1:ratingBarStyleIndicator}</code></td><td>Indicator RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.katherine_lopez_term_project_v1:ratingBarStyleSmall}</code></td><td>Small indicator RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.companyname.katherine_lopez_term_project_v1:searchViewStyle}</code></td><td>Style for the search query widget.</td></tr> * <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.companyname.katherine_lopez_term_project_v1:seekBarStyle}</code></td><td>Default SeekBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.companyname.katherine_lopez_term_project_v1:selectableItemBackground}</code></td><td>A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges.</td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.katherine_lopez_term_project_v1:selectableItemBackgroundBorderless}</code></td><td>Background drawable for borderless standalone items that need focus/pressed states.</td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.katherine_lopez_term_project_v1:spinnerDropDownItemStyle}</code></td><td>Default Spinner style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.companyname.katherine_lopez_term_project_v1:spinnerStyle}</code></td><td>Default Spinner style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_switchStyle com.companyname.katherine_lopez_term_project_v1:switchStyle}</code></td><td>Default style for the Switch widget.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.katherine_lopez_term_project_v1:textAppearanceLargePopupMenu}</code></td><td>Text color, typeface, size, and style for the text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.companyname.katherine_lopez_term_project_v1:textAppearanceListItem}</code></td><td>The preferred TextAppearance for the primary text of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.companyname.katherine_lopez_term_project_v1:textAppearanceListItemSecondary}</code></td><td>The preferred TextAppearance for the secondary text of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.katherine_lopez_term_project_v1:textAppearanceListItemSmall}</code></td><td>The preferred TextAppearance for the primary text of small list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.companyname.katherine_lopez_term_project_v1:textAppearancePopupMenuHeader}</code></td><td>Text color, typeface, size, and style for header text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.katherine_lopez_term_project_v1:textAppearanceSearchResultSubtitle}</code></td><td>Text color, typeface, size, and style for system search result subtitle.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.katherine_lopez_term_project_v1:textAppearanceSearchResultTitle}</code></td><td>Text color, typeface, size, and style for system search result title.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.katherine_lopez_term_project_v1:textAppearanceSmallPopupMenu}</code></td><td>Text color, typeface, size, and style for small text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.katherine_lopez_term_project_v1:textColorAlertDialogListItem}</code></td><td>Color of list item text in alert dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.companyname.katherine_lopez_term_project_v1:textColorSearchUrl}</code></td><td>Text color for urls in search suggestions, used by things like global search</td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.katherine_lopez_term_project_v1:toolbarNavigationButtonStyle}</code></td><td>Default Toolar NavigationButtonStyle</td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.companyname.katherine_lopez_term_project_v1:toolbarStyle}</code></td><td>Default Toolbar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.companyname.katherine_lopez_term_project_v1:tooltipForegroundColor}</code></td><td>Foreground color to use for tooltips</td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.companyname.katherine_lopez_term_project_v1:tooltipFrameBackground}</code></td><td>Background to use for tooltips</td></tr> * <tr><td><code>{@link #AppCompatTheme_viewInflaterClass com.companyname.katherine_lopez_term_project_v1:viewInflaterClass}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBar com.companyname.katherine_lopez_term_project_v1:windowActionBar}</code></td><td>Flag indicating whether this window should have an Action Bar * in place of the usual title bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.companyname.katherine_lopez_term_project_v1:windowActionBarOverlay}</code></td><td>Flag indicating whether this window's Action Bar should overlay * application content.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.companyname.katherine_lopez_term_project_v1:windowActionModeOverlay}</code></td><td>Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar).</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.katherine_lopez_term_project_v1:windowFixedHeightMajor}</code></td><td>A fixed height for the window along the major axis of the screen, * that is, when in portrait.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.katherine_lopez_term_project_v1:windowFixedHeightMinor}</code></td><td>A fixed height for the window along the minor axis of the screen, * that is, when in landscape.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.katherine_lopez_term_project_v1:windowFixedWidthMajor}</code></td><td>A fixed width for the window along the major axis of the screen, * that is, when in landscape.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.katherine_lopez_term_project_v1:windowFixedWidthMinor}</code></td><td>A fixed width for the window along the minor axis of the screen, * that is, when in portrait.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.companyname.katherine_lopez_term_project_v1:windowMinWidthMajor}</code></td><td>The minimum width the window is allowed to be, along the major * axis of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.companyname.katherine_lopez_term_project_v1:windowMinWidthMinor}</code></td><td>The minimum width the window is allowed to be, along the minor * axis of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.companyname.katherine_lopez_term_project_v1:windowNoTitle}</code></td><td>Flag indicating whether there should be no title on this window.</td></tr> * </table> * @see #AppCompatTheme_android_windowIsFloating * @see #AppCompatTheme_android_windowAnimationStyle * @see #AppCompatTheme_actionBarDivider * @see #AppCompatTheme_actionBarItemBackground * @see #AppCompatTheme_actionBarPopupTheme * @see #AppCompatTheme_actionBarSize * @see #AppCompatTheme_actionBarSplitStyle * @see #AppCompatTheme_actionBarStyle * @see #AppCompatTheme_actionBarTabBarStyle * @see #AppCompatTheme_actionBarTabStyle * @see #AppCompatTheme_actionBarTabTextStyle * @see #AppCompatTheme_actionBarTheme * @see #AppCompatTheme_actionBarWidgetTheme * @see #AppCompatTheme_actionButtonStyle * @see #AppCompatTheme_actionDropDownStyle * @see #AppCompatTheme_actionMenuTextAppearance * @see #AppCompatTheme_actionMenuTextColor * @see #AppCompatTheme_actionModeBackground * @see #AppCompatTheme_actionModeCloseButtonStyle * @see #AppCompatTheme_actionModeCloseDrawable * @see #AppCompatTheme_actionModeCopyDrawable * @see #AppCompatTheme_actionModeCutDrawable * @see #AppCompatTheme_actionModeFindDrawable * @see #AppCompatTheme_actionModePasteDrawable * @see #AppCompatTheme_actionModePopupWindowStyle * @see #AppCompatTheme_actionModeSelectAllDrawable * @see #AppCompatTheme_actionModeShareDrawable * @see #AppCompatTheme_actionModeSplitBackground * @see #AppCompatTheme_actionModeStyle * @see #AppCompatTheme_actionModeWebSearchDrawable * @see #AppCompatTheme_actionOverflowButtonStyle * @see #AppCompatTheme_actionOverflowMenuStyle * @see #AppCompatTheme_activityChooserViewStyle * @see #AppCompatTheme_alertDialogButtonGroupStyle * @see #AppCompatTheme_alertDialogCenterButtons * @see #AppCompatTheme_alertDialogStyle * @see #AppCompatTheme_alertDialogTheme * @see #AppCompatTheme_autoCompleteTextViewStyle * @see #AppCompatTheme_borderlessButtonStyle * @see #AppCompatTheme_buttonBarButtonStyle * @see #AppCompatTheme_buttonBarNegativeButtonStyle * @see #AppCompatTheme_buttonBarNeutralButtonStyle * @see #AppCompatTheme_buttonBarPositiveButtonStyle * @see #AppCompatTheme_buttonBarStyle * @see #AppCompatTheme_buttonStyle * @see #AppCompatTheme_buttonStyleSmall * @see #AppCompatTheme_checkboxStyle * @see #AppCompatTheme_checkedTextViewStyle * @see #AppCompatTheme_colorAccent * @see #AppCompatTheme_colorBackgroundFloating * @see #AppCompatTheme_colorButtonNormal * @see #AppCompatTheme_colorControlActivated * @see #AppCompatTheme_colorControlHighlight * @see #AppCompatTheme_colorControlNormal * @see #AppCompatTheme_colorError * @see #AppCompatTheme_colorPrimary * @see #AppCompatTheme_colorPrimaryDark * @see #AppCompatTheme_colorSwitchThumbNormal * @see #AppCompatTheme_controlBackground * @see #AppCompatTheme_dialogCornerRadius * @see #AppCompatTheme_dialogPreferredPadding * @see #AppCompatTheme_dialogTheme * @see #AppCompatTheme_dividerHorizontal * @see #AppCompatTheme_dividerVertical * @see #AppCompatTheme_dropDownListViewStyle * @see #AppCompatTheme_dropdownListPreferredItemHeight * @see #AppCompatTheme_editTextBackground * @see #AppCompatTheme_editTextColor * @see #AppCompatTheme_editTextStyle * @see #AppCompatTheme_homeAsUpIndicator * @see #AppCompatTheme_imageButtonStyle * @see #AppCompatTheme_listChoiceBackgroundIndicator * @see #AppCompatTheme_listDividerAlertDialog * @see #AppCompatTheme_listMenuViewStyle * @see #AppCompatTheme_listPopupWindowStyle * @see #AppCompatTheme_listPreferredItemHeight * @see #AppCompatTheme_listPreferredItemHeightLarge * @see #AppCompatTheme_listPreferredItemHeightSmall * @see #AppCompatTheme_listPreferredItemPaddingLeft * @see #AppCompatTheme_listPreferredItemPaddingRight * @see #AppCompatTheme_panelBackground * @see #AppCompatTheme_panelMenuListTheme * @see #AppCompatTheme_panelMenuListWidth * @see #AppCompatTheme_popupMenuStyle * @see #AppCompatTheme_popupWindowStyle * @see #AppCompatTheme_radioButtonStyle * @see #AppCompatTheme_ratingBarStyle * @see #AppCompatTheme_ratingBarStyleIndicator * @see #AppCompatTheme_ratingBarStyleSmall * @see #AppCompatTheme_searchViewStyle * @see #AppCompatTheme_seekBarStyle * @see #AppCompatTheme_selectableItemBackground * @see #AppCompatTheme_selectableItemBackgroundBorderless * @see #AppCompatTheme_spinnerDropDownItemStyle * @see #AppCompatTheme_spinnerStyle * @see #AppCompatTheme_switchStyle * @see #AppCompatTheme_textAppearanceLargePopupMenu * @see #AppCompatTheme_textAppearanceListItem * @see #AppCompatTheme_textAppearanceListItemSecondary * @see #AppCompatTheme_textAppearanceListItemSmall * @see #AppCompatTheme_textAppearancePopupMenuHeader * @see #AppCompatTheme_textAppearanceSearchResultSubtitle * @see #AppCompatTheme_textAppearanceSearchResultTitle * @see #AppCompatTheme_textAppearanceSmallPopupMenu * @see #AppCompatTheme_textColorAlertDialogListItem * @see #AppCompatTheme_textColorSearchUrl * @see #AppCompatTheme_toolbarNavigationButtonStyle * @see #AppCompatTheme_toolbarStyle * @see #AppCompatTheme_tooltipForegroundColor * @see #AppCompatTheme_tooltipFrameBackground * @see #AppCompatTheme_viewInflaterClass * @see #AppCompatTheme_windowActionBar * @see #AppCompatTheme_windowActionBarOverlay * @see #AppCompatTheme_windowActionModeOverlay * @see #AppCompatTheme_windowFixedHeightMajor * @see #AppCompatTheme_windowFixedHeightMinor * @see #AppCompatTheme_windowFixedWidthMajor * @see #AppCompatTheme_windowFixedWidthMinor * @see #AppCompatTheme_windowMinWidthMajor * @see #AppCompatTheme_windowMinWidthMinor * @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme={ 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c, 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030064, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008e, 0x7f03009d, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300ab, 0x7f0300ad, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300e9, 0x7f0300f5, 0x7f030118, 0x7f030119, 0x7f03011c, 0x7f03011d, 0x7f03011e, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030137, 0x7f030138, 0x7f030139, 0x7f03013f, 0x7f030141, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f03014b, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156, 0x7f030163, 0x7f030164, 0x7f03017a, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301ac, 0x7f0301ad, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301d1, 0x7f0301d3, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301db, 0x7f0301dc }; /** * <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating=0; /** * <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle=1; /** * <p> * @attr description * Custom divider drawable to use for elements in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider=2; /** * <p> * @attr description * Custom item state list drawable background for action bar items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground=3; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme=4; /** * <p> * @attr description * Size of the Action Bar, including the contextual * bar used to present Action Modes. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap_content</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarSize */ public static final int AppCompatTheme_actionBarSize=5; /** * <p> * @attr description * Reference to a style for the split Action Bar. This style * controls the split component that holds the menu/action * buttons. actionBarStyle is still used for the primary * bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle=6; /** * <p> * @attr description * Reference to a style for the Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle=7; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#actionBarTabBarStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle=8; /** * <p> * @attr description * Default style for tabs within an action bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle=9; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#actionBarTabTextStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle=10; /** * <p> * @attr description * Reference to a theme that should be used to inflate the * action bar. This will be inherited by any widget inflated * into the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme=11; /** * <p> * @attr description * Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar. Most of the time * this will be a reference to the current theme, but when * the action bar has a significantly different contrast * profile than the rest of the activity the difference * can become important. If this is set to @null the current * theme will be used. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme=12; /** * <p> * @attr description * Default action button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle=13; /** * <p> * @attr description * Default ActionBar dropdown style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle=14; /** * <p> * @attr description * TextAppearance style that will be applied to text that * appears within action menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance=15; /** * <p> * @attr description * Color for text that appears within action menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor=16; /** * <p> * @attr description * Background drawable to use for action mode UI * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground=17; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#actionModeCloseButtonStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle=18; /** * <p> * @attr description * Drawable to use for the close action mode button * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable=19; /** * <p> * @attr description * Drawable to use for the Copy action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable=20; /** * <p> * @attr description * Drawable to use for the Cut action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable=21; /** * <p> * @attr description * Drawable to use for the Find action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable=22; /** * <p> * @attr description * Drawable to use for the Paste action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable=23; /** * <p> * @attr description * PopupWindow style to use for action modes when showing as a window overlay. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle=24; /** * <p> * @attr description * Drawable to use for the Select all action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable=25; /** * <p> * @attr description * Drawable to use for the Share action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable=26; /** * <p> * @attr description * Background drawable to use for action mode UI in the lower split bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground=27; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#actionModeStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle=28; /** * <p> * @attr description * Drawable to use for the Web Search action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable=29; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#actionOverflowButtonStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle=30; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#actionOverflowMenuStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle=31; /** * <p> * @attr description * Default ActivityChooserView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle=32; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#alertDialogButtonGroupStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#alertDialogCenterButtons} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons=34; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#alertDialogStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle=35; /** * <p> * @attr description * Theme to use for alert dialogs spawned from this theme. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme=36; /** * <p> * @attr description * Default AutoCompleteTextView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle=37; /** * <p> * @attr description * Style for buttons without an explicit border, often used in groups. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle=38; /** * <p> * @attr description * Style for buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle=39; /** * <p> * @attr description * Style for the "negative" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; /** * <p> * @attr description * Style for the "neutral" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; /** * <p> * @attr description * Style for the "positive" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; /** * <p> * @attr description * Style for button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle=43; /** * <p> * @attr description * Normal Button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonStyle */ public static final int AppCompatTheme_buttonStyle=44; /** * <p> * @attr description * Small Button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall=45; /** * <p> * @attr description * Default Checkbox style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle=46; /** * <p> * @attr description * Default CheckedTextView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle=47; /** * <p> * @attr description * Bright complement to the primary branding color. By default, this is the color applied * to framework controls (via colorControlActivated). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorAccent */ public static final int AppCompatTheme_colorAccent=48; /** * <p> * @attr description * Default color of background imagery for floating components, ex. dialogs, popups, and cards. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating=49; /** * <p> * @attr description * The color applied to framework buttons in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal=50; /** * <p> * @attr description * The color applied to framework controls in their activated (ex. checked) state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated=51; /** * <p> * @attr description * The color applied to framework control highlights (ex. ripples, list selectors). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight=52; /** * <p> * @attr description * The color applied to framework controls in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal=53; /** * <p> * @attr description * Color used for error states and things that need to be drawn to * the user's attention. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorError */ public static final int AppCompatTheme_colorError=54; /** * <p> * @attr description * The primary branding color for the app. By default, this is the color applied to the * action bar background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorPrimary */ public static final int AppCompatTheme_colorPrimary=55; /** * <p> * @attr description * Dark variant of the primary branding color. By default, this is the color applied to * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark=56; /** * <p> * @attr description * The color applied to framework switch thumbs in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal=57; /** * <p> * @attr description * The background used by framework controls. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:controlBackground */ public static final int AppCompatTheme_controlBackground=58; /** * <p> * @attr description * Preferred corner radius of dialogs. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:dialogCornerRadius */ public static final int AppCompatTheme_dialogCornerRadius=59; /** * <p> * @attr description * Preferred padding for dialog content. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding=60; /** * <p> * @attr description * Theme to use for dialogs spawned from this theme. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:dialogTheme */ public static final int AppCompatTheme_dialogTheme=61; /** * <p> * @attr description * A drawable that may be used as a horizontal divider between visual elements. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal=62; /** * <p> * @attr description * A drawable that may be used as a vertical divider between visual elements. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:dividerVertical */ public static final int AppCompatTheme_dividerVertical=63; /** * <p> * @attr description * ListPopupWindow compatibility * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle=64; /** * <p> * @attr description * The preferred item height for dropdown lists. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight=65; /** * <p> * @attr description * EditText background drawable. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:editTextBackground */ public static final int AppCompatTheme_editTextBackground=66; /** * <p> * @attr description * EditText text foreground color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:editTextColor */ public static final int AppCompatTheme_editTextColor=67; /** * <p> * @attr description * Default EditText style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:editTextStyle */ public static final int AppCompatTheme_editTextStyle=68; /** * <p> * @attr description * Specifies a drawable to use for the 'home as up' indicator. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator=69; /** * <p> * @attr description * ImageButton background drawable. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle=70; /** * <p> * @attr description * Drawable used as a background for selected list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator=71; /** * <p> * @attr description * The list divider used in alert dialogs. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog=72; /** * <p> * @attr description * Default menu-style ListView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle=73; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#listPopupWindowStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle=74; /** * <p> * @attr description * The preferred list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight=75; /** * <p> * @attr description * A larger, more robust list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge=76; /** * <p> * @attr description * A smaller, sleeker list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall=77; /** * <p> * @attr description * The preferred padding along the left edge of list items. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft=78; /** * <p> * @attr description * The preferred padding along the right edge of list items. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight=79; /** * <p> * @attr description * The background of a panel when it is inset from the left and right edges of the screen. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:panelBackground */ public static final int AppCompatTheme_panelBackground=80; /** * <p> * @attr description * Default Panel Menu style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme=81; /** * <p> * @attr description * Default Panel Menu width. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth=82; /** * <p> * @attr description * Default PopupMenu style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle=83; /** * <p> * @attr description * Default PopupWindow style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle=84; /** * <p> * @attr description * Default RadioButton style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle=85; /** * <p> * @attr description * Default RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle=86; /** * <p> * @attr description * Indicator RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator=87; /** * <p> * @attr description * Small indicator RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall=88; /** * <p> * @attr description * Style for the search query widget. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle=89; /** * <p> * @attr description * Default SeekBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle=90; /** * <p> * @attr description * A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground=91; /** * <p> * @attr description * Background drawable for borderless standalone items that need focus/pressed states. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless=92; /** * <p> * @attr description * Default Spinner style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle=93; /** * <p> * @attr description * Default Spinner style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle=94; /** * <p> * @attr description * Default style for the Switch widget. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:switchStyle */ public static final int AppCompatTheme_switchStyle=95; /** * <p> * @attr description * Text color, typeface, size, and style for the text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu=96; /** * <p> * @attr description * The preferred TextAppearance for the primary text of list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem=97; /** * <p> * @attr description * The preferred TextAppearance for the secondary text of list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary=98; /** * <p> * @attr description * The preferred TextAppearance for the primary text of small list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall=99; /** * <p> * @attr description * Text color, typeface, size, and style for header text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader=100; /** * <p> * @attr description * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=101; /** * <p> * @attr description * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle=102; /** * <p> * @attr description * Text color, typeface, size, and style for small text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu=103; /** * <p> * @attr description * Color of list item text in alert dialogs. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem=104; /** * <p> * @attr description * Text color for urls in search suggestions, used by things like global search * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl=105; /** * <p> * @attr description * Default Toolar NavigationButtonStyle * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle=106; /** * <p> * @attr description * Default Toolbar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle=107; /** * <p> * @attr description * Foreground color to use for tooltips * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor=108; /** * <p> * @attr description * Background to use for tooltips * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground=109; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#viewInflaterClass} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:viewInflaterClass */ public static final int AppCompatTheme_viewInflaterClass=110; /** * <p> * @attr description * Flag indicating whether this window should have an Action Bar * in place of the usual title bar. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:windowActionBar */ public static final int AppCompatTheme_windowActionBar=111; /** * <p> * @attr description * Flag indicating whether this window's Action Bar should overlay * application content. Does nothing if the window would not * have an Action Bar. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay=112; /** * <p> * @attr description * Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay=113; /** * <p> * @attr description * A fixed height for the window along the major axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.katherine_lopez_term_project_v1:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor=114; /** * <p> * @attr description * A fixed height for the window along the minor axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.katherine_lopez_term_project_v1:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor=115; /** * <p> * @attr description * A fixed width for the window along the major axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.katherine_lopez_term_project_v1:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor=116; /** * <p> * @attr description * A fixed width for the window along the minor axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.katherine_lopez_term_project_v1:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor=117; /** * <p> * @attr description * The minimum width the window is allowed to be, along the major * axis of the screen. That is, when in landscape. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.katherine_lopez_term_project_v1:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor=118; /** * <p> * @attr description * The minimum width the window is allowed to be, along the minor * axis of the screen. That is, when in portrait. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.katherine_lopez_term_project_v1:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor=119; /** * <p> * @attr description * Flag indicating whether there should be no title on this window. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle=120; /** * Attributes that can be used with a BottomAppBar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #BottomAppBar_backgroundTint com.companyname.katherine_lopez_term_project_v1:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr> * <tr><td><code>{@link #BottomAppBar_fabAlignmentMode com.companyname.katherine_lopez_term_project_v1:fabAlignmentMode}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_fabCradleMargin com.companyname.katherine_lopez_term_project_v1:fabCradleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_fabCradleRoundedCornerRadius com.companyname.katherine_lopez_term_project_v1:fabCradleRoundedCornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_fabCradleVerticalOffset com.companyname.katherine_lopez_term_project_v1:fabCradleVerticalOffset}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_hideOnScroll com.companyname.katherine_lopez_term_project_v1:hideOnScroll}</code></td><td></td></tr> * </table> * @see #BottomAppBar_backgroundTint * @see #BottomAppBar_fabAlignmentMode * @see #BottomAppBar_fabCradleMargin * @see #BottomAppBar_fabCradleRoundedCornerRadius * @see #BottomAppBar_fabCradleVerticalOffset * @see #BottomAppBar_hideOnScroll */ public static final int[] BottomAppBar={ 0x7f030034, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300e5 }; /** * <p> * @attr description * Tint to apply to the background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:backgroundTint */ public static final int BottomAppBar_backgroundTint=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#fabAlignmentMode} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>center</td><td>0</td><td></td></tr> * <tr><td>end</td><td>1</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:fabAlignmentMode */ public static final int BottomAppBar_fabAlignmentMode=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#fabCradleMargin} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:fabCradleMargin */ public static final int BottomAppBar_fabCradleMargin=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#fabCradleRoundedCornerRadius} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:fabCradleRoundedCornerRadius */ public static final int BottomAppBar_fabCradleRoundedCornerRadius=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#fabCradleVerticalOffset} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:fabCradleVerticalOffset */ public static final int BottomAppBar_fabCradleVerticalOffset=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#hideOnScroll} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:hideOnScroll */ public static final int BottomAppBar_hideOnScroll=5; /** * Attributes that can be used with a BottomNavigationView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #BottomNavigationView_elevation com.companyname.katherine_lopez_term_project_v1:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #BottomNavigationView_itemBackground com.companyname.katherine_lopez_term_project_v1:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemHorizontalTranslationEnabled com.companyname.katherine_lopez_term_project_v1:itemHorizontalTranslationEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemIconSize com.companyname.katherine_lopez_term_project_v1:itemIconSize}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemIconTint com.companyname.katherine_lopez_term_project_v1:itemIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemTextAppearanceActive com.companyname.katherine_lopez_term_project_v1:itemTextAppearanceActive}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemTextAppearanceInactive com.companyname.katherine_lopez_term_project_v1:itemTextAppearanceInactive}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemTextColor com.companyname.katherine_lopez_term_project_v1:itemTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_labelVisibilityMode com.companyname.katherine_lopez_term_project_v1:labelVisibilityMode}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_menu com.companyname.katherine_lopez_term_project_v1:menu}</code></td><td></td></tr> * </table> * @see #BottomNavigationView_elevation * @see #BottomNavigationView_itemBackground * @see #BottomNavigationView_itemHorizontalTranslationEnabled * @see #BottomNavigationView_itemIconSize * @see #BottomNavigationView_itemIconTint * @see #BottomNavigationView_itemTextAppearanceActive * @see #BottomNavigationView_itemTextAppearanceInactive * @see #BottomNavigationView_itemTextColor * @see #BottomNavigationView_labelVisibilityMode * @see #BottomNavigationView_menu */ public static final int[] BottomNavigationView={ 0x7f0300b5, 0x7f0300fa, 0x7f0300fc, 0x7f0300fe, 0x7f0300ff, 0x7f030103, 0x7f030104, 0x7f030105, 0x7f030107, 0x7f03012b }; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:elevation */ public static final int BottomNavigationView_elevation=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemBackground} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:itemBackground */ public static final int BottomNavigationView_itemBackground=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemHorizontalTranslationEnabled} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:itemHorizontalTranslationEnabled */ public static final int BottomNavigationView_itemHorizontalTranslationEnabled=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemIconSize} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:itemIconSize */ public static final int BottomNavigationView_itemIconSize=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemIconTint} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:itemIconTint */ public static final int BottomNavigationView_itemIconTint=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemTextAppearanceActive} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:itemTextAppearanceActive */ public static final int BottomNavigationView_itemTextAppearanceActive=5; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemTextAppearanceInactive} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:itemTextAppearanceInactive */ public static final int BottomNavigationView_itemTextAppearanceInactive=6; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemTextColor} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:itemTextColor */ public static final int BottomNavigationView_itemTextColor=7; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#labelVisibilityMode} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>labeled</td><td>1</td><td></td></tr> * <tr><td>selected</td><td>0</td><td></td></tr> * <tr><td>unlabeled</td><td>2</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:labelVisibilityMode */ public static final int BottomNavigationView_labelVisibilityMode=8; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#menu} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:menu */ public static final int BottomNavigationView_menu=9; /** * Attributes that can be used with a BottomSheetBehavior_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_fitToContents com.companyname.katherine_lopez_term_project_v1:behavior_fitToContents}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.companyname.katherine_lopez_term_project_v1:behavior_hideable}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.companyname.katherine_lopez_term_project_v1:behavior_peekHeight}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.companyname.katherine_lopez_term_project_v1:behavior_skipCollapsed}</code></td><td></td></tr> * </table> * @see #BottomSheetBehavior_Layout_behavior_fitToContents * @see #BottomSheetBehavior_Layout_behavior_hideable * @see #BottomSheetBehavior_Layout_behavior_peekHeight * @see #BottomSheetBehavior_Layout_behavior_skipCollapsed */ public static final int[] BottomSheetBehavior_Layout={ 0x7f030038, 0x7f030039, 0x7f03003b, 0x7f03003c }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#behavior_fitToContents} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:behavior_fitToContents */ public static final int BottomSheetBehavior_Layout_behavior_fitToContents=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#behavior_hideable} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#behavior_peekHeight} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#behavior_skipCollapsed} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:behavior_skipCollapsed */ public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed=3; /** * Attributes that can be used with a ButtonBarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ButtonBarLayout_allowStacking com.companyname.katherine_lopez_term_project_v1:allowStacking}</code></td><td>Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side.</td></tr> * </table> * @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout={ 0x7f030026 }; /** * <p> * @attr description * Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:allowStacking */ public static final int ButtonBarLayout_allowStacking=0; /** * Attributes that can be used with a CardView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_cardBackgroundColor com.companyname.katherine_lopez_term_project_v1:cardBackgroundColor}</code></td><td>Background color for CardView.</td></tr> * <tr><td><code>{@link #CardView_cardCornerRadius com.companyname.katherine_lopez_term_project_v1:cardCornerRadius}</code></td><td>Corner radius for CardView.</td></tr> * <tr><td><code>{@link #CardView_cardElevation com.companyname.katherine_lopez_term_project_v1:cardElevation}</code></td><td>Elevation for CardView.</td></tr> * <tr><td><code>{@link #CardView_cardMaxElevation com.companyname.katherine_lopez_term_project_v1:cardMaxElevation}</code></td><td>Maximum Elevation for CardView.</td></tr> * <tr><td><code>{@link #CardView_cardPreventCornerOverlap com.companyname.katherine_lopez_term_project_v1:cardPreventCornerOverlap}</code></td><td>Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners.</td></tr> * <tr><td><code>{@link #CardView_cardUseCompatPadding com.companyname.katherine_lopez_term_project_v1:cardUseCompatPadding}</code></td><td>Add padding in API v21+ as well to have the same measurements with previous versions.</td></tr> * <tr><td><code>{@link #CardView_contentPadding com.companyname.katherine_lopez_term_project_v1:contentPadding}</code></td><td>Inner padding between the edges of the Card and children of the CardView.</td></tr> * <tr><td><code>{@link #CardView_contentPaddingBottom com.companyname.katherine_lopez_term_project_v1:contentPaddingBottom}</code></td><td>Inner padding between the bottom edge of the Card and children of the CardView.</td></tr> * <tr><td><code>{@link #CardView_contentPaddingLeft com.companyname.katherine_lopez_term_project_v1:contentPaddingLeft}</code></td><td>Inner padding between the left edge of the Card and children of the CardView.</td></tr> * <tr><td><code>{@link #CardView_contentPaddingRight com.companyname.katherine_lopez_term_project_v1:contentPaddingRight}</code></td><td>Inner padding between the right edge of the Card and children of the CardView.</td></tr> * <tr><td><code>{@link #CardView_contentPaddingTop com.companyname.katherine_lopez_term_project_v1:contentPaddingTop}</code></td><td>Inner padding between the top edge of the Card and children of the CardView.</td></tr> * </table> * @see #CardView_android_minWidth * @see #CardView_android_minHeight * @see #CardView_cardBackgroundColor * @see #CardView_cardCornerRadius * @see #CardView_cardElevation * @see #CardView_cardMaxElevation * @see #CardView_cardPreventCornerOverlap * @see #CardView_cardUseCompatPadding * @see #CardView_contentPadding * @see #CardView_contentPaddingBottom * @see #CardView_contentPaddingLeft * @see #CardView_contentPaddingRight * @see #CardView_contentPaddingTop */ public static final int[] CardView={ 0x0101013f, 0x01010140, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b }; /** * <p> * @attr description * Workaround to read user defined minimum width * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minWidth */ public static final int CardView_android_minWidth=0; /** * <p> * @attr description * Workaround to read user defined minimum height * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minHeight */ public static final int CardView_android_minHeight=1; /** * <p> * @attr description * Background color for CardView. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:cardBackgroundColor */ public static final int CardView_cardBackgroundColor=2; /** * <p> * @attr description * Corner radius for CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:cardCornerRadius */ public static final int CardView_cardCornerRadius=3; /** * <p> * @attr description * Elevation for CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:cardElevation */ public static final int CardView_cardElevation=4; /** * <p> * @attr description * Maximum Elevation for CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:cardMaxElevation */ public static final int CardView_cardMaxElevation=5; /** * <p> * @attr description * Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:cardPreventCornerOverlap */ public static final int CardView_cardPreventCornerOverlap=6; /** * <p> * @attr description * Add padding in API v21+ as well to have the same measurements with previous versions. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:cardUseCompatPadding */ public static final int CardView_cardUseCompatPadding=7; /** * <p> * @attr description * Inner padding between the edges of the Card and children of the CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentPadding */ public static final int CardView_contentPadding=8; /** * <p> * @attr description * Inner padding between the bottom edge of the Card and children of the CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentPaddingBottom */ public static final int CardView_contentPaddingBottom=9; /** * <p> * @attr description * Inner padding between the left edge of the Card and children of the CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentPaddingLeft */ public static final int CardView_contentPaddingLeft=10; /** * <p> * @attr description * Inner padding between the right edge of the Card and children of the CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentPaddingRight */ public static final int CardView_contentPaddingRight=11; /** * <p> * @attr description * Inner padding between the top edge of the Card and children of the CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentPaddingTop */ public static final int CardView_contentPaddingTop=12; /** * Attributes that can be used with a Chip. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #Chip_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_ellipsize android:ellipsize}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_text android:text}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_checkable android:checkable}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_checkedIcon com.companyname.katherine_lopez_term_project_v1:checkedIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_checkedIconEnabled com.companyname.katherine_lopez_term_project_v1:checkedIconEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_checkedIconVisible com.companyname.katherine_lopez_term_project_v1:checkedIconVisible}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipBackgroundColor com.companyname.katherine_lopez_term_project_v1:chipBackgroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipCornerRadius com.companyname.katherine_lopez_term_project_v1:chipCornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipEndPadding com.companyname.katherine_lopez_term_project_v1:chipEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIcon com.companyname.katherine_lopez_term_project_v1:chipIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconEnabled com.companyname.katherine_lopez_term_project_v1:chipIconEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconSize com.companyname.katherine_lopez_term_project_v1:chipIconSize}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconTint com.companyname.katherine_lopez_term_project_v1:chipIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconVisible com.companyname.katherine_lopez_term_project_v1:chipIconVisible}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipMinHeight com.companyname.katherine_lopez_term_project_v1:chipMinHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipStartPadding com.companyname.katherine_lopez_term_project_v1:chipStartPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipStrokeColor com.companyname.katherine_lopez_term_project_v1:chipStrokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipStrokeWidth com.companyname.katherine_lopez_term_project_v1:chipStrokeWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIcon com.companyname.katherine_lopez_term_project_v1:closeIcon}</code></td><td>Close button icon</td></tr> * <tr><td><code>{@link #Chip_closeIconEnabled com.companyname.katherine_lopez_term_project_v1:closeIconEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconEndPadding com.companyname.katherine_lopez_term_project_v1:closeIconEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconSize com.companyname.katherine_lopez_term_project_v1:closeIconSize}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconStartPadding com.companyname.katherine_lopez_term_project_v1:closeIconStartPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconTint com.companyname.katherine_lopez_term_project_v1:closeIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconVisible com.companyname.katherine_lopez_term_project_v1:closeIconVisible}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_hideMotionSpec com.companyname.katherine_lopez_term_project_v1:hideMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_iconEndPadding com.companyname.katherine_lopez_term_project_v1:iconEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_iconStartPadding com.companyname.katherine_lopez_term_project_v1:iconStartPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_rippleColor com.companyname.katherine_lopez_term_project_v1:rippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_showMotionSpec com.companyname.katherine_lopez_term_project_v1:showMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_textEndPadding com.companyname.katherine_lopez_term_project_v1:textEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_textStartPadding com.companyname.katherine_lopez_term_project_v1:textStartPadding}</code></td><td></td></tr> * </table> * @see #Chip_android_textAppearance * @see #Chip_android_ellipsize * @see #Chip_android_maxWidth * @see #Chip_android_text * @see #Chip_android_checkable * @see #Chip_checkedIcon * @see #Chip_checkedIconEnabled * @see #Chip_checkedIconVisible * @see #Chip_chipBackgroundColor * @see #Chip_chipCornerRadius * @see #Chip_chipEndPadding * @see #Chip_chipIcon * @see #Chip_chipIconEnabled * @see #Chip_chipIconSize * @see #Chip_chipIconTint * @see #Chip_chipIconVisible * @see #Chip_chipMinHeight * @see #Chip_chipStartPadding * @see #Chip_chipStrokeColor * @see #Chip_chipStrokeWidth * @see #Chip_closeIcon * @see #Chip_closeIconEnabled * @see #Chip_closeIconEndPadding * @see #Chip_closeIconSize * @see #Chip_closeIconStartPadding * @see #Chip_closeIconTint * @see #Chip_closeIconVisible * @see #Chip_hideMotionSpec * @see #Chip_iconEndPadding * @see #Chip_iconStartPadding * @see #Chip_rippleColor * @see #Chip_showMotionSpec * @see #Chip_textEndPadding * @see #Chip_textStartPadding */ public static final int[] Chip={ 0x01010034, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030069, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f030073, 0x7f030074, 0x7f030075, 0x7f030077, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f0300e3, 0x7f0300ed, 0x7f0300f1, 0x7f03014d, 0x7f030159, 0x7f0301ae, 0x7f0301b0 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int Chip_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link android.R.attr#ellipsize} * attribute's value can be found in the {@link #Chip} 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>end</td><td>3</td><td></td></tr> * <tr><td>marquee</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>start</td><td>1</td><td></td></tr> * </table> * * @attr name android:ellipsize */ public static final int Chip_android_ellipsize=1; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int Chip_android_maxWidth=2; /** * <p>This symbol is the offset where the {@link android.R.attr#text} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:text */ public static final int Chip_android_text=3; /** * <p>This symbol is the offset where the {@link android.R.attr#checkable} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checkable */ public static final int Chip_android_checkable=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#checkedIcon} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:checkedIcon */ public static final int Chip_checkedIcon=5; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#checkedIconEnabled} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:checkedIconEnabled */ public static final int Chip_checkedIconEnabled=6; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#checkedIconVisible} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:checkedIconVisible */ public static final int Chip_checkedIconVisible=7; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipBackgroundColor} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:chipBackgroundColor */ public static final int Chip_chipBackgroundColor=8; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipCornerRadius} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:chipCornerRadius */ public static final int Chip_chipCornerRadius=9; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipEndPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:chipEndPadding */ public static final int Chip_chipEndPadding=10; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipIcon} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:chipIcon */ public static final int Chip_chipIcon=11; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipIconEnabled} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:chipIconEnabled */ public static final int Chip_chipIconEnabled=12; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipIconSize} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:chipIconSize */ public static final int Chip_chipIconSize=13; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipIconTint} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:chipIconTint */ public static final int Chip_chipIconTint=14; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipIconVisible} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:chipIconVisible */ public static final int Chip_chipIconVisible=15; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipMinHeight} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:chipMinHeight */ public static final int Chip_chipMinHeight=16; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipStartPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:chipStartPadding */ public static final int Chip_chipStartPadding=17; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipStrokeColor} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:chipStrokeColor */ public static final int Chip_chipStrokeColor=18; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipStrokeWidth} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:chipStrokeWidth */ public static final int Chip_chipStrokeWidth=19; /** * <p> * @attr description * Close button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:closeIcon */ public static final int Chip_closeIcon=20; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#closeIconEnabled} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:closeIconEnabled */ public static final int Chip_closeIconEnabled=21; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#closeIconEndPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:closeIconEndPadding */ public static final int Chip_closeIconEndPadding=22; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#closeIconSize} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:closeIconSize */ public static final int Chip_closeIconSize=23; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#closeIconStartPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:closeIconStartPadding */ public static final int Chip_closeIconStartPadding=24; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#closeIconTint} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:closeIconTint */ public static final int Chip_closeIconTint=25; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#closeIconVisible} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:closeIconVisible */ public static final int Chip_closeIconVisible=26; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#hideMotionSpec} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:hideMotionSpec */ public static final int Chip_hideMotionSpec=27; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#iconEndPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:iconEndPadding */ public static final int Chip_iconEndPadding=28; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#iconStartPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:iconStartPadding */ public static final int Chip_iconStartPadding=29; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#rippleColor} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:rippleColor */ public static final int Chip_rippleColor=30; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#showMotionSpec} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:showMotionSpec */ public static final int Chip_showMotionSpec=31; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textEndPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:textEndPadding */ public static final int Chip_textEndPadding=32; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textStartPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:textStartPadding */ public static final int Chip_textStartPadding=33; /** * Attributes that can be used with a ChipGroup. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ChipGroup_checkedChip com.companyname.katherine_lopez_term_project_v1:checkedChip}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_chipSpacing com.companyname.katherine_lopez_term_project_v1:chipSpacing}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_chipSpacingHorizontal com.companyname.katherine_lopez_term_project_v1:chipSpacingHorizontal}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_chipSpacingVertical com.companyname.katherine_lopez_term_project_v1:chipSpacingVertical}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_singleLine com.companyname.katherine_lopez_term_project_v1:singleLine}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_singleSelection com.companyname.katherine_lopez_term_project_v1:singleSelection}</code></td><td></td></tr> * </table> * @see #ChipGroup_checkedChip * @see #ChipGroup_chipSpacing * @see #ChipGroup_chipSpacingHorizontal * @see #ChipGroup_chipSpacingVertical * @see #ChipGroup_singleLine * @see #ChipGroup_singleSelection */ public static final int[] ChipGroup={ 0x7f030060, 0x7f03006f, 0x7f030070, 0x7f030071, 0x7f03015d, 0x7f03015e }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#checkedChip} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:checkedChip */ public static final int ChipGroup_checkedChip=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipSpacing} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:chipSpacing */ public static final int ChipGroup_chipSpacing=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipSpacingHorizontal} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:chipSpacingHorizontal */ public static final int ChipGroup_chipSpacingHorizontal=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipSpacingVertical} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:chipSpacingVertical */ public static final int ChipGroup_chipSpacingVertical=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#singleLine} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:singleLine */ public static final int ChipGroup_singleLine=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#singleSelection} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:singleSelection */ public static final int ChipGroup_singleSelection=5; /** * Attributes that can be used with a CollapsingToolbarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.companyname.katherine_lopez_term_project_v1:collapsedTitleGravity}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.katherine_lopez_term_project_v1:collapsedTitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.companyname.katherine_lopez_term_project_v1:contentScrim}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.katherine_lopez_term_project_v1:expandedTitleGravity}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.katherine_lopez_term_project_v1:expandedTitleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.katherine_lopez_term_project_v1:expandedTitleMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.katherine_lopez_term_project_v1:expandedTitleMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.katherine_lopez_term_project_v1:expandedTitleMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.katherine_lopez_term_project_v1:expandedTitleMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.katherine_lopez_term_project_v1:expandedTitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.companyname.katherine_lopez_term_project_v1:scrimAnimationDuration}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.companyname.katherine_lopez_term_project_v1:scrimVisibleHeightTrigger}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.katherine_lopez_term_project_v1:statusBarScrim}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_title com.companyname.katherine_lopez_term_project_v1:title}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.companyname.katherine_lopez_term_project_v1:titleEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.companyname.katherine_lopez_term_project_v1:toolbarId}</code></td><td></td></tr> * </table> * @see #CollapsingToolbarLayout_collapsedTitleGravity * @see #CollapsingToolbarLayout_collapsedTitleTextAppearance * @see #CollapsingToolbarLayout_contentScrim * @see #CollapsingToolbarLayout_expandedTitleGravity * @see #CollapsingToolbarLayout_expandedTitleMargin * @see #CollapsingToolbarLayout_expandedTitleMarginBottom * @see #CollapsingToolbarLayout_expandedTitleMarginEnd * @see #CollapsingToolbarLayout_expandedTitleMarginStart * @see #CollapsingToolbarLayout_expandedTitleMarginTop * @see #CollapsingToolbarLayout_expandedTitleTextAppearance * @see #CollapsingToolbarLayout_scrimAnimationDuration * @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger * @see #CollapsingToolbarLayout_statusBarScrim * @see #CollapsingToolbarLayout_title * @see #CollapsingToolbarLayout_titleEnabled * @see #CollapsingToolbarLayout_toolbarId */ public static final int[] CollapsingToolbarLayout={ 0x7f030081, 0x7f030082, 0x7f03009c, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f03014e, 0x7f030150, 0x7f03016e, 0x7f0301bb, 0x7f0301bc, 0x7f0301c6 }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#collapsedTitleTextAppearance} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#contentScrim} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.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>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#expandedTitleMargin} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#expandedTitleMarginBottom} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom=5; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#expandedTitleMarginEnd} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd=6; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#expandedTitleMarginStart} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart=7; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#expandedTitleMarginTop} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop=8; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#expandedTitleTextAppearance} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance=9; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#scrimAnimationDuration} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration=10; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#scrimVisibleHeightTrigger} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger=11; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#statusBarScrim} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim=12; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#title} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:title */ public static final int CollapsingToolbarLayout_title=13; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#titleEnabled} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled=14; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#toolbarId} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:toolbarId */ public static final int CollapsingToolbarLayout_toolbarId=15; /** * Attributes that can be used with a CollapsingToolbarLayout_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.companyname.katherine_lopez_term_project_v1:layout_collapseMode}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.companyname.katherine_lopez_term_project_v1:layout_collapseParallaxMultiplier}</code></td><td></td></tr> * </table> * @see #CollapsingToolbarLayout_Layout_layout_collapseMode * @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout={ 0x7f03010e, 0x7f03010f }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#layout_collapseMode} * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>parallax</td><td>2</td><td></td></tr> * <tr><td>pin</td><td>1</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#layout_collapseParallaxMultiplier} * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:layout_collapseParallaxMultiplier */ public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier=1; /** * Attributes that can be used with a ColorStateListItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_alpha com.companyname.katherine_lopez_term_project_v1:alpha}</code></td><td>Alpha multiplier applied to the base color.</td></tr> * </table> * @see #ColorStateListItem_android_color * @see #ColorStateListItem_android_alpha * @see #ColorStateListItem_alpha */ public static final int[] ColorStateListItem={ 0x010101a5, 0x0101031f, 0x7f030027 }; /** * <p> * @attr description * Base color for this state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:color */ public static final int ColorStateListItem_android_color=0; /** * <p>This symbol is the offset where the {@link android.R.attr#alpha} * attribute's value can be found in the {@link #ColorStateListItem} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:alpha */ public static final int ColorStateListItem_android_alpha=1; /** * <p> * @attr description * Alpha multiplier applied to the base color. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:alpha */ public static final int ColorStateListItem_alpha=2; /** * Attributes that can be used with a CompoundButton. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> * <tr><td><code>{@link #CompoundButton_buttonTint com.companyname.katherine_lopez_term_project_v1:buttonTint}</code></td><td>Tint to apply to the button drawable.</td></tr> * <tr><td><code>{@link #CompoundButton_buttonTintMode com.companyname.katherine_lopez_term_project_v1:buttonTintMode}</code></td><td>Blending mode used to apply the button tint.</td></tr> * </table> * @see #CompoundButton_android_button * @see #CompoundButton_buttonTint * @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton={ 0x01010107, 0x7f030056, 0x7f030057 }; /** * <p>This symbol is the offset where the {@link android.R.attr#button} * attribute's value can be found in the {@link #CompoundButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:button */ public static final int CompoundButton_android_button=0; /** * <p> * @attr description * Tint to apply to the button drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonTint */ public static final int CompoundButton_buttonTint=1; /** * <p> * @attr description * Blending mode used to apply the button tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonTintMode */ public static final int CompoundButton_buttonTintMode=2; /** * Attributes that can be used with a CoordinatorLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CoordinatorLayout_keylines com.companyname.katherine_lopez_term_project_v1:keylines}</code></td><td>A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.companyname.katherine_lopez_term_project_v1:statusBarBackground}</code></td><td>Drawable to display behind the status bar when the view is set to draw behind it.</td></tr> * </table> * @see #CoordinatorLayout_keylines * @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout={ 0x7f030106, 0x7f03016d }; /** * <p> * @attr description * A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge. * Child views can refer to these keylines for alignment using * layout_keyline="index" where index is a 0-based index into * this array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:keylines */ public static final int CoordinatorLayout_keylines=0; /** * <p> * @attr description * Drawable to display behind the status bar when the view is set to draw behind it. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:statusBarBackground */ public static final int CoordinatorLayout_statusBarBackground=1; /** * Attributes that can be used with a CoordinatorLayout_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.companyname.katherine_lopez_term_project_v1:layout_anchor}</code></td><td>The id of an anchor view that this view should position relative to.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.companyname.katherine_lopez_term_project_v1:layout_anchorGravity}</code></td><td>Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.companyname.katherine_lopez_term_project_v1:layout_behavior}</code></td><td>The class name of a Behavior class defining special runtime behavior * for this child view.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.companyname.katherine_lopez_term_project_v1:layout_dodgeInsetEdges}</code></td><td>Specifies how this view dodges the inset edges of the CoordinatorLayout.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.companyname.katherine_lopez_term_project_v1:layout_insetEdge}</code></td><td>Specifies how this view insets the CoordinatorLayout and make some other views * dodge it.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.companyname.katherine_lopez_term_project_v1:layout_keyline}</code></td><td>The index of a keyline this view should position relative to.</td></tr> * </table> * @see #CoordinatorLayout_Layout_android_layout_gravity * @see #CoordinatorLayout_Layout_layout_anchor * @see #CoordinatorLayout_Layout_layout_anchorGravity * @see #CoordinatorLayout_Layout_layout_behavior * @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges * @see #CoordinatorLayout_Layout_layout_insetEdge * @see #CoordinatorLayout_Layout_layout_keyline */ public static final int[] CoordinatorLayout_Layout={ 0x010100b3, 0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f030110, 0x7f030111, 0x7f030112 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity=0; /** * <p> * @attr description * The id of an anchor view that this view should position relative to. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor=1; /** * <p> * @attr description * Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>center</td><td>11</td><td>Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.</td></tr> * <tr><td>center_horizontal</td><td>1</td><td>Place object in the horizontal center of its container, not changing its size.</td></tr> * <tr><td>center_vertical</td><td>10</td><td>Place object in the vertical center of its container, not changing its size.</td></tr> * <tr><td>clip_horizontal</td><td>8</td><td>Additional option that can be set to have the left and/or right edges of * the child clipped to its container's bounds. * The clip will be based on the horizontal gravity: a left gravity will clip the right * edge, a right gravity will clip the left edge, and neither will clip both edges.</td></tr> * <tr><td>clip_vertical</td><td>80</td><td>Additional option that can be set to have the top and/or bottom edges of * the child clipped to its container's bounds. * The clip will be based on the vertical gravity: a top gravity will clip the bottom * edge, a bottom gravity will clip the top edge, and neither will clip both edges.</td></tr> * <tr><td>end</td><td>800005</td><td>Push object to the end of its container, not changing its size.</td></tr> * <tr><td>fill</td><td>77</td><td>Grow the horizontal and vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_horizontal</td><td>7</td><td>Grow the horizontal size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_vertical</td><td>70</td><td>Grow the vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>left</td><td>3</td><td>Push object to the left of its container, not changing its size.</td></tr> * <tr><td>right</td><td>5</td><td>Push object to the right of its container, not changing its size.</td></tr> * <tr><td>start</td><td>800003</td><td>Push object to the beginning of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity=2; /** * <p> * @attr description * The class name of a Behavior class defining special runtime behavior * for this child view. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior=3; /** * <p> * @attr description * Specifies how this view dodges the inset edges of the CoordinatorLayout. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>77</td><td>Dodge all the inset edges.</td></tr> * <tr><td>bottom</td><td>50</td><td>Dodge the bottom inset edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Dodge the end inset edge.</td></tr> * <tr><td>left</td><td>3</td><td>Dodge the left inset edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't dodge any edges</td></tr> * <tr><td>right</td><td>5</td><td>Dodge the right inset edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Dodge the start inset edge.</td></tr> * <tr><td>top</td><td>30</td><td>Dodge the top inset edge.</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4; /** * <p> * @attr description * Specifies how this view insets the CoordinatorLayout and make some other views * dodge it. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Inset the bottom edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Inset the end edge.</td></tr> * <tr><td>left</td><td>3</td><td>Inset the left edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't inset.</td></tr> * <tr><td>right</td><td>5</td><td>Inset the right edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Inset the start edge.</td></tr> * <tr><td>top</td><td>30</td><td>Inset the top edge.</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge=5; /** * <p> * @attr description * The index of a keyline this view should position relative to. * android:layout_gravity will affect how the view aligns to the * specified keyline. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:layout_keyline */ public static final int CoordinatorLayout_Layout_layout_keyline=6; /** * Attributes that can be used with a DesignTheme. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.companyname.katherine_lopez_term_project_v1:bottomSheetDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #DesignTheme_bottomSheetStyle com.companyname.katherine_lopez_term_project_v1:bottomSheetStyle}</code></td><td></td></tr> * </table> * @see #DesignTheme_bottomSheetDialogTheme * @see #DesignTheme_bottomSheetStyle */ public static final int[] DesignTheme={ 0x7f030041, 0x7f030042 }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#bottomSheetDialogTheme} * attribute's value can be found in the {@link #DesignTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#bottomSheetStyle} * attribute's value can be found in the {@link #DesignTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle=1; /** * Attributes that can be used with a DrawerArrowToggle. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.companyname.katherine_lopez_term_project_v1:arrowHeadLength}</code></td><td>The length of the arrow head when formed to make an arrow</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.companyname.katherine_lopez_term_project_v1:arrowShaftLength}</code></td><td>The length of the shaft when formed to make an arrow</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_barLength com.companyname.katherine_lopez_term_project_v1:barLength}</code></td><td>The length of the bars when they are parallel to each other</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_color com.companyname.katherine_lopez_term_project_v1:color}</code></td><td>The drawing color for the bars</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.companyname.katherine_lopez_term_project_v1:drawableSize}</code></td><td>The total size of the drawable</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.companyname.katherine_lopez_term_project_v1:gapBetweenBars}</code></td><td>The max gap between the bars when they are parallel to each other</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_spinBars com.companyname.katherine_lopez_term_project_v1:spinBars}</code></td><td>Whether bars should rotate or not during transition</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_thickness com.companyname.katherine_lopez_term_project_v1:thickness}</code></td><td>The thickness (stroke size) for the bar paint</td></tr> * </table> * @see #DrawerArrowToggle_arrowHeadLength * @see #DrawerArrowToggle_arrowShaftLength * @see #DrawerArrowToggle_barLength * @see #DrawerArrowToggle_color * @see #DrawerArrowToggle_drawableSize * @see #DrawerArrowToggle_gapBetweenBars * @see #DrawerArrowToggle_spinBars * @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle={ 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030083, 0x7f0300ae, 0x7f0300dc, 0x7f030162, 0x7f0301b2 }; /** * <p> * @attr description * The length of the arrow head when formed to make an arrow * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength=0; /** * <p> * @attr description * The length of the shaft when formed to make an arrow * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength=1; /** * <p> * @attr description * The length of the bars when they are parallel to each other * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:barLength */ public static final int DrawerArrowToggle_barLength=2; /** * <p> * @attr description * The drawing color for the bars * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:color */ public static final int DrawerArrowToggle_color=3; /** * <p> * @attr description * The total size of the drawable * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:drawableSize */ public static final int DrawerArrowToggle_drawableSize=4; /** * <p> * @attr description * The max gap between the bars when they are parallel to each other * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars=5; /** * <p> * @attr description * Whether bars should rotate or not during transition * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:spinBars */ public static final int DrawerArrowToggle_spinBars=6; /** * <p> * @attr description * The thickness (stroke size) for the bar paint * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:thickness */ public static final int DrawerArrowToggle_thickness=7; /** * Attributes that can be used with a FloatingActionButton. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FloatingActionButton_backgroundTint com.companyname.katherine_lopez_term_project_v1:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr> * <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.companyname.katherine_lopez_term_project_v1:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr> * <tr><td><code>{@link #FloatingActionButton_borderWidth com.companyname.katherine_lopez_term_project_v1:borderWidth}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_elevation com.companyname.katherine_lopez_term_project_v1:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #FloatingActionButton_fabCustomSize com.companyname.katherine_lopez_term_project_v1:fabCustomSize}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_fabSize com.companyname.katherine_lopez_term_project_v1:fabSize}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_hideMotionSpec com.companyname.katherine_lopez_term_project_v1:hideMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_hoveredFocusedTranslationZ com.companyname.katherine_lopez_term_project_v1:hoveredFocusedTranslationZ}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_maxImageSize com.companyname.katherine_lopez_term_project_v1:maxImageSize}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.companyname.katherine_lopez_term_project_v1:pressedTranslationZ}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_rippleColor com.companyname.katherine_lopez_term_project_v1:rippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_showMotionSpec com.companyname.katherine_lopez_term_project_v1:showMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_useCompatPadding com.companyname.katherine_lopez_term_project_v1:useCompatPadding}</code></td><td></td></tr> * </table> * @see #FloatingActionButton_backgroundTint * @see #FloatingActionButton_backgroundTintMode * @see #FloatingActionButton_borderWidth * @see #FloatingActionButton_elevation * @see #FloatingActionButton_fabCustomSize * @see #FloatingActionButton_fabSize * @see #FloatingActionButton_hideMotionSpec * @see #FloatingActionButton_hoveredFocusedTranslationZ * @see #FloatingActionButton_maxImageSize * @see #FloatingActionButton_pressedTranslationZ * @see #FloatingActionButton_rippleColor * @see #FloatingActionButton_showMotionSpec * @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton={ 0x7f030034, 0x7f030035, 0x7f03003d, 0x7f0300b5, 0x7f0300c7, 0x7f0300c8, 0x7f0300e3, 0x7f0300eb, 0x7f030129, 0x7f030143, 0x7f03014d, 0x7f030159, 0x7f0301d0 }; /** * <p> * @attr description * Tint to apply to the background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:backgroundTint */ public static final int FloatingActionButton_backgroundTint=0; /** * <p> * @attr description * Blending mode used to apply the background tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#borderWidth} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:borderWidth */ public static final int FloatingActionButton_borderWidth=2; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:elevation */ public static final int FloatingActionButton_elevation=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#fabCustomSize} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:fabCustomSize */ public static final int FloatingActionButton_fabCustomSize=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.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>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>mini</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:fabSize */ public static final int FloatingActionButton_fabSize=5; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#hideMotionSpec} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:hideMotionSpec */ public static final int FloatingActionButton_hideMotionSpec=6; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#hoveredFocusedTranslationZ} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:hoveredFocusedTranslationZ */ public static final int FloatingActionButton_hoveredFocusedTranslationZ=7; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#maxImageSize} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:maxImageSize */ public static final int FloatingActionButton_maxImageSize=8; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#pressedTranslationZ} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ=9; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#rippleColor} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:rippleColor */ public static final int FloatingActionButton_rippleColor=10; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#showMotionSpec} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:showMotionSpec */ public static final int FloatingActionButton_showMotionSpec=11; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#useCompatPadding} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding=12; /** * Attributes that can be used with a FloatingActionButton_Behavior_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.companyname.katherine_lopez_term_project_v1:behavior_autoHide}</code></td><td></td></tr> * </table> * @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout={ 0x7f030037 }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#behavior_autoHide} * attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide=0; /** * Attributes that can be used with a FlowLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FlowLayout_itemSpacing com.companyname.katherine_lopez_term_project_v1:itemSpacing}</code></td><td></td></tr> * <tr><td><code>{@link #FlowLayout_lineSpacing com.companyname.katherine_lopez_term_project_v1:lineSpacing}</code></td><td></td></tr> * </table> * @see #FlowLayout_itemSpacing * @see #FlowLayout_lineSpacing */ public static final int[] FlowLayout={ 0x7f030101, 0x7f030117 }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemSpacing} * attribute's value can be found in the {@link #FlowLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:itemSpacing */ public static final int FlowLayout_itemSpacing=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#lineSpacing} * attribute's value can be found in the {@link #FlowLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:lineSpacing */ public static final int FlowLayout_lineSpacing=1; /** * Attributes that can be used with a FontFamily. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FontFamily_fontProviderAuthority com.companyname.katherine_lopez_term_project_v1:fontProviderAuthority}</code></td><td>The authority of the Font Provider to be used for the request.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderCerts com.companyname.katherine_lopez_term_project_v1:fontProviderCerts}</code></td><td>The sets of hashes for the certificates the provider should be signed with.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.companyname.katherine_lopez_term_project_v1:fontProviderFetchStrategy}</code></td><td>The strategy to be used when fetching font data from a font provider in XML layouts.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.companyname.katherine_lopez_term_project_v1:fontProviderFetchTimeout}</code></td><td>The length of the timeout during fetching.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderPackage com.companyname.katherine_lopez_term_project_v1:fontProviderPackage}</code></td><td>The package for the Font Provider to be used for the request.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderQuery com.companyname.katherine_lopez_term_project_v1:fontProviderQuery}</code></td><td>The query to be sent over to the provider.</td></tr> * </table> * @see #FontFamily_fontProviderAuthority * @see #FontFamily_fontProviderCerts * @see #FontFamily_fontProviderFetchStrategy * @see #FontFamily_fontProviderFetchTimeout * @see #FontFamily_fontProviderPackage * @see #FontFamily_fontProviderQuery */ public static final int[] FontFamily={ 0x7f0300d2, 0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7 }; /** * <p> * @attr description * The authority of the Font Provider to be used for the request. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority=0; /** * <p> * @attr description * The sets of hashes for the certificates the provider should be signed with. This is * used to verify the identity of the provider, and is only required if the provider is not * part of the system image. This value may point to one list or a list of lists, where each * individual list represents one collection of signature hashes. Refer to your font provider's * documentation for these values. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:fontProviderCerts */ public static final int FontFamily_fontProviderCerts=1; /** * <p> * @attr description * The strategy to be used when fetching font data from a font provider in XML layouts. * This attribute is ignored when the resource is loaded from code, as it is equivalent to the * choice of API between {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and * {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} * (async). * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>async</td><td>1</td><td>The async font fetch works as follows. * First, check the local cache, then if the requeted font is not cached, trigger a * request the font and continue with layout inflation. Once the font fetch succeeds, the * target text view will be refreshed with the downloaded font data. The * fontProviderFetchTimeout will be ignored if async loading is specified.</td></tr> * <tr><td>blocking</td><td>0</td><td>The blocking font fetch works as follows. * First, check the local cache, then if the requested font is not cached, request the * font from the provider and wait until it is finished. You can change the length of * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the * default typeface will be used instead.</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy=2; /** * <p> * @attr description * The length of the timeout during fetching. * * <p>May be an integer value, such as "<code>100</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>forever</td><td>ffffffff</td><td>A special value for the timeout. In this case, the blocking font fetching will not * timeout and wait until a reply is received from the font provider.</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout=3; /** * <p> * @attr description * The package for the Font Provider to be used for the request. This is used to verify * the identity of the provider. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:fontProviderPackage */ public static final int FontFamily_fontProviderPackage=4; /** * <p> * @attr description * The query to be sent over to the provider. Refer to your font provider's documentation * on the format of this string. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:fontProviderQuery */ public static final int FontFamily_fontProviderQuery=5; /** * Attributes that can be used with a FontFamilyFont. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_font com.companyname.katherine_lopez_term_project_v1:font}</code></td><td>The reference to the font file to be used.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontStyle com.companyname.katherine_lopez_term_project_v1:fontStyle}</code></td><td>The style of the given font file.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontVariationSettings com.companyname.katherine_lopez_term_project_v1:fontVariationSettings}</code></td><td>The variation settings to be applied to the font.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontWeight com.companyname.katherine_lopez_term_project_v1:fontWeight}</code></td><td>The weight of the given font file.</td></tr> * <tr><td><code>{@link #FontFamilyFont_ttcIndex com.companyname.katherine_lopez_term_project_v1:ttcIndex}</code></td><td>The index of the font in the tcc font file.</td></tr> * </table> * @see #FontFamilyFont_android_font * @see #FontFamilyFont_android_fontWeight * @see #FontFamilyFont_android_fontStyle * @see #FontFamilyFont_android_ttcIndex * @see #FontFamilyFont_android_fontVariationSettings * @see #FontFamilyFont_font * @see #FontFamilyFont_fontStyle * @see #FontFamilyFont_fontVariationSettings * @see #FontFamilyFont_fontWeight * @see #FontFamilyFont_ttcIndex */ public static final int[] FontFamilyFont={ 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f0300d0, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0301cf }; /** * <p>This symbol is the offset where the {@link android.R.attr#font} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:font */ public static final int FontFamilyFont_android_font=0; /** * <p>This symbol is the offset where the {@link android.R.attr#fontWeight} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:fontWeight */ public static final int FontFamilyFont_android_fontWeight=1; /** * <p> * @attr description * References to the framework attrs * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:fontStyle */ public static final int FontFamilyFont_android_fontStyle=2; /** * <p>This symbol is the offset where the {@link android.R.attr#ttcIndex} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:ttcIndex */ public static final int FontFamilyFont_android_ttcIndex=3; /** * <p>This symbol is the offset where the {@link android.R.attr#fontVariationSettings} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontVariationSettings */ public static final int FontFamilyFont_android_fontVariationSettings=4; /** * <p> * @attr description * The reference to the font file to be used. This should be a file in the res/font folder * and should therefore have an R reference value. E.g. @font/myfont * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:font */ public static final int FontFamilyFont_font=5; /** * <p> * @attr description * The style of the given font file. This will be used when the font is being loaded into * the font stack and will override any style information in the font's header tables. If * unspecified, the value in the font's header tables will be used. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:fontStyle */ public static final int FontFamilyFont_fontStyle=6; /** * <p> * @attr description * The variation settings to be applied to the font. The string should be in the following * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be * used, or the font used does not support variation settings, this attribute needs not be * specified. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:fontVariationSettings */ public static final int FontFamilyFont_fontVariationSettings=7; /** * <p> * @attr description * The weight of the given font file. This will be used when the font is being loaded into * the font stack and will override any weight information in the font's header tables. Must * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value * in the font's header tables will be used. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:fontWeight */ public static final int FontFamilyFont_fontWeight=8; /** * <p> * @attr description * The index of the font in the tcc font file. If the font file referenced is not in the * tcc format, this attribute needs not be specified. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:ttcIndex */ public static final int FontFamilyFont_ttcIndex=9; /** * Attributes that can be used with a ForegroundLinearLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr> * <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr> * <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.katherine_lopez_term_project_v1: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, 0x7f0300db }; /** * <p>This symbol is the offset where the {@link android.R.attr#foreground} * attribute's value can be found in the {@link #ForegroundLinearLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android: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. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:foregroundGravity */ public static final int ForegroundLinearLayout_android_foregroundGravity=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#foregroundInsidePadding} * attribute's value can be found in the {@link #ForegroundLinearLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding=2; /** * Attributes that can be used with a GradientColor. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #GradientColor_android_startColor android:startColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endColor android:endColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_type android:type}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerX android:centerX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerY android:centerY}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_gradientRadius android:gradientRadius}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_tileMode android:tileMode}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerColor android:centerColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_startX android:startX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_startY android:startY}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endX android:endX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endY android:endY}</code></td><td></td></tr> * </table> * @see #GradientColor_android_startColor * @see #GradientColor_android_endColor * @see #GradientColor_android_type * @see #GradientColor_android_centerX * @see #GradientColor_android_centerY * @see #GradientColor_android_gradientRadius * @see #GradientColor_android_tileMode * @see #GradientColor_android_centerColor * @see #GradientColor_android_startX * @see #GradientColor_android_startY * @see #GradientColor_android_endX * @see #GradientColor_android_endY */ public static final int[] GradientColor={ 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; /** * <p> * @attr description * Start color of the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:startColor */ public static final int GradientColor_android_startColor=0; /** * <p> * @attr description * End color of the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:endColor */ public static final int GradientColor_android_endColor=1; /** * <p> * @attr description * Type of gradient. The default type is linear. * * <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>linear</td><td>0</td><td></td></tr> * <tr><td>radial</td><td>1</td><td></td></tr> * <tr><td>sweep</td><td>2</td><td></td></tr> * </table> * * @attr name android:type */ public static final int GradientColor_android_type=2; /** * <p> * @attr description * X coordinate of the center of the gradient within the path. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:centerX */ public static final int GradientColor_android_centerX=3; /** * <p> * @attr description * Y coordinate of the center of the gradient within the path. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:centerY */ public static final int GradientColor_android_centerY=4; /** * <p> * @attr description * Radius of the gradient, used only with radial gradient. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:gradientRadius */ public static final int GradientColor_android_gradientRadius=5; /** * <p> * @attr description * Defines the tile mode of the gradient. SweepGradient doesn't support tiling. * * <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>clamp</td><td>0</td><td></td></tr> * <tr><td>disabled</td><td>ffffffff</td><td></td></tr> * <tr><td>mirror</td><td>2</td><td></td></tr> * <tr><td>repeat</td><td>1</td><td></td></tr> * </table> * * @attr name android:tileMode */ public static final int GradientColor_android_tileMode=6; /** * <p> * @attr description * Optional center color. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:centerColor */ public static final int GradientColor_android_centerColor=7; /** * <p> * @attr description * X coordinate of the start point origin of the gradient. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:startX */ public static final int GradientColor_android_startX=8; /** * <p> * @attr description * Y coordinate of the start point of the gradient within the shape. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:startY */ public static final int GradientColor_android_startY=9; /** * <p> * @attr description * X coordinate of the end point origin of the gradient. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:endX */ public static final int GradientColor_android_endX=10; /** * <p> * @attr description * Y coordinate of the end point of the gradient within the shape. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:endY */ public static final int GradientColor_android_endY=11; /** * Attributes that can be used with a GradientColorItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #GradientColorItem_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColorItem_android_offset android:offset}</code></td><td></td></tr> * </table> * @see #GradientColorItem_android_color * @see #GradientColorItem_android_offset */ public static final int[] GradientColorItem={ 0x010101a5, 0x01010514 }; /** * <p> * @attr description * The current color for the offset inside the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:color */ public static final int GradientColorItem_android_color=0; /** * <p> * @attr description * The offset (or ratio) of this current color item inside the gradient. * The value is only meaningful when it is between 0 and 1. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:offset */ public static final int GradientColorItem_android_offset=1; /** * Attributes that can be used with a LinearLayoutCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_divider com.companyname.katherine_lopez_term_project_v1:divider}</code></td><td>Specifies the drawable used for item dividers.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.companyname.katherine_lopez_term_project_v1:dividerPadding}</code></td><td>Size of padding on either end of a divider.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.katherine_lopez_term_project_v1:measureWithLargestChild}</code></td><td>When set to true, all children with a weight will be considered having * the minimum size of the largest child.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_showDividers com.companyname.katherine_lopez_term_project_v1:showDividers}</code></td><td>Setting for which dividers to show.</td></tr> * </table> * @see #LinearLayoutCompat_android_gravity * @see #LinearLayoutCompat_android_orientation * @see #LinearLayoutCompat_android_baselineAligned * @see #LinearLayoutCompat_android_baselineAlignedChildIndex * @see #LinearLayoutCompat_android_weightSum * @see #LinearLayoutCompat_divider * @see #LinearLayoutCompat_dividerPadding * @see #LinearLayoutCompat_measureWithLargestChild * @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat={ 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f0300aa, 0x7f0300ac, 0x7f03012a, 0x7f030158 }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity=0; /** * <p> * @attr description * Should the layout be a column or a row? Use "horizontal" * for a row, "vertical" for a column. The default is * horizontal. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation=1; /** * <p> * @attr description * When set to false, prevents the layout from aligning its children's * baselines. This attribute is particularly useful when the children * use different values for gravity. The default value is true. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned=2; /** * <p> * @attr description * When a linear layout is part of another layout that is baseline * aligned, it can specify which of its children to baseline align to * (that is, which child TextView). * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; /** * <p> * @attr description * Defines the maximum weight sum. If unspecified, the sum is computed * by adding the layout_weight of all of the children. This can be * used for instance to give a single child 50% of the total available * space by giving it a layout_weight of 0.5 and setting the weightSum * to 1.0. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum=4; /** * <p> * @attr description * Drawable to use as a vertical divider between buttons. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:divider */ public static final int LinearLayoutCompat_divider=5; /** * <p> * @attr description * Size of padding on either end of a divider. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding=6; /** * <p> * @attr description * When set to true, all children with a weight will be considered having * the minimum size of the largest child. If false, all children are * measured normally. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild=7; /** * <p> * @attr description * Setting for which dividers to show. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:showDividers */ public static final int LinearLayoutCompat_showDividers=8; /** * Attributes that can be used with a LinearLayoutCompat_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> * </table> * @see #LinearLayoutCompat_Layout_android_layout_gravity * @see #LinearLayoutCompat_Layout_android_layout_width * @see #LinearLayoutCompat_Layout_android_layout_height * @see #LinearLayoutCompat_Layout_android_layout_weight */ public static final int[] LinearLayoutCompat_Layout={ 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_width} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width=1; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_height} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height=2; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_weight} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight=3; /** * Attributes that can be used with a ListPopupWindow. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> * <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> * </table> * @see #ListPopupWindow_android_dropDownHorizontalOffset * @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow={ 0x010102ac, 0x010102ad }; /** * <p> * @attr description * Amount of pixels by which the drop down should be offset horizontally. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; /** * <p> * @attr description * Amount of pixels by which the drop down should be offset vertically. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset=1; /** * Attributes that can be used with a MaterialButton. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MaterialButton_android_insetLeft android:insetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_android_insetRight android:insetRight}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_android_insetTop android:insetTop}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_android_insetBottom android:insetBottom}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_backgroundTint com.companyname.katherine_lopez_term_project_v1:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr> * <tr><td><code>{@link #MaterialButton_backgroundTintMode com.companyname.katherine_lopez_term_project_v1:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr> * <tr><td><code>{@link #MaterialButton_cornerRadius com.companyname.katherine_lopez_term_project_v1:cornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_icon com.companyname.katherine_lopez_term_project_v1:icon}</code></td><td>Specifies the drawable used for the application icon.</td></tr> * <tr><td><code>{@link #MaterialButton_iconGravity com.companyname.katherine_lopez_term_project_v1:iconGravity}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconPadding com.companyname.katherine_lopez_term_project_v1:iconPadding}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconSize com.companyname.katherine_lopez_term_project_v1:iconSize}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconTint com.companyname.katherine_lopez_term_project_v1:iconTint}</code></td><td>Tint to apply to the icon.</td></tr> * <tr><td><code>{@link #MaterialButton_iconTintMode com.companyname.katherine_lopez_term_project_v1:iconTintMode}</code></td><td>Blending mode used to apply the icon tint.</td></tr> * <tr><td><code>{@link #MaterialButton_rippleColor com.companyname.katherine_lopez_term_project_v1:rippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_strokeColor com.companyname.katherine_lopez_term_project_v1:strokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_strokeWidth com.companyname.katherine_lopez_term_project_v1:strokeWidth}</code></td><td></td></tr> * </table> * @see #MaterialButton_android_insetLeft * @see #MaterialButton_android_insetRight * @see #MaterialButton_android_insetTop * @see #MaterialButton_android_insetBottom * @see #MaterialButton_backgroundTint * @see #MaterialButton_backgroundTintMode * @see #MaterialButton_cornerRadius * @see #MaterialButton_icon * @see #MaterialButton_iconGravity * @see #MaterialButton_iconPadding * @see #MaterialButton_iconSize * @see #MaterialButton_iconTint * @see #MaterialButton_iconTintMode * @see #MaterialButton_rippleColor * @see #MaterialButton_strokeColor * @see #MaterialButton_strokeWidth */ public static final int[] MaterialButton={ 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f030034, 0x7f030035, 0x7f03009f, 0x7f0300ec, 0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f2, 0x7f0300f3, 0x7f03014d, 0x7f03016f, 0x7f030170 }; /** * <p>This symbol is the offset where the {@link android.R.attr#insetLeft} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:insetLeft */ public static final int MaterialButton_android_insetLeft=0; /** * <p>This symbol is the offset where the {@link android.R.attr#insetRight} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:insetRight */ public static final int MaterialButton_android_insetRight=1; /** * <p>This symbol is the offset where the {@link android.R.attr#insetTop} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:insetTop */ public static final int MaterialButton_android_insetTop=2; /** * <p>This symbol is the offset where the {@link android.R.attr#insetBottom} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:insetBottom */ public static final int MaterialButton_android_insetBottom=3; /** * <p> * @attr description * Tint to apply to the background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:backgroundTint */ public static final int MaterialButton_backgroundTint=4; /** * <p> * @attr description * Blending mode used to apply the background tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:backgroundTintMode */ public static final int MaterialButton_backgroundTintMode=5; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#cornerRadius} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:cornerRadius */ public static final int MaterialButton_cornerRadius=6; /** * <p> * @attr description * Specifies the drawable used for the application icon. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:icon */ public static final int MaterialButton_icon=7; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#iconGravity} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>start</td><td>1</td><td></td></tr> * <tr><td>textStart</td><td>2</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:iconGravity */ public static final int MaterialButton_iconGravity=8; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#iconPadding} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:iconPadding */ public static final int MaterialButton_iconPadding=9; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#iconSize} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:iconSize */ public static final int MaterialButton_iconSize=10; /** * <p> * @attr description * Tint to apply to the icon. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:iconTint */ public static final int MaterialButton_iconTint=11; /** * <p> * @attr description * Blending mode used to apply the icon tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the iconโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The iconโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:iconTintMode */ public static final int MaterialButton_iconTintMode=12; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#rippleColor} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:rippleColor */ public static final int MaterialButton_rippleColor=13; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#strokeColor} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:strokeColor */ public static final int MaterialButton_strokeColor=14; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#strokeWidth} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:strokeWidth */ public static final int MaterialButton_strokeWidth=15; /** * Attributes that can be used with a MaterialCardView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MaterialCardView_strokeColor com.companyname.katherine_lopez_term_project_v1:strokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialCardView_strokeWidth com.companyname.katherine_lopez_term_project_v1:strokeWidth}</code></td><td></td></tr> * </table> * @see #MaterialCardView_strokeColor * @see #MaterialCardView_strokeWidth */ public static final int[] MaterialCardView={ 0x7f03016f, 0x7f030170 }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#strokeColor} * attribute's value can be found in the {@link #MaterialCardView} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:strokeColor */ public static final int MaterialCardView_strokeColor=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#strokeWidth} * attribute's value can be found in the {@link #MaterialCardView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:strokeWidth */ public static final int MaterialCardView_strokeWidth=1; /** * Attributes that can be used with a MaterialComponentsTheme. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MaterialComponentsTheme_bottomSheetDialogTheme com.companyname.katherine_lopez_term_project_v1:bottomSheetDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_bottomSheetStyle com.companyname.katherine_lopez_term_project_v1:bottomSheetStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_chipGroupStyle com.companyname.katherine_lopez_term_project_v1:chipGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_chipStandaloneStyle com.companyname.katherine_lopez_term_project_v1:chipStandaloneStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_chipStyle com.companyname.katherine_lopez_term_project_v1:chipStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorAccent com.companyname.katherine_lopez_term_project_v1:colorAccent}</code></td><td>Bright complement to the primary branding color.</td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorBackgroundFloating com.companyname.katherine_lopez_term_project_v1:colorBackgroundFloating}</code></td><td>Default color of background imagery for floating components, ex.</td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorPrimary com.companyname.katherine_lopez_term_project_v1:colorPrimary}</code></td><td>The primary branding color for the app.</td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorPrimaryDark com.companyname.katherine_lopez_term_project_v1:colorPrimaryDark}</code></td><td>Dark variant of the primary branding color.</td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorSecondary com.companyname.katherine_lopez_term_project_v1:colorSecondary}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_editTextStyle com.companyname.katherine_lopez_term_project_v1:editTextStyle}</code></td><td>Default EditText style.</td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_floatingActionButtonStyle com.companyname.katherine_lopez_term_project_v1:floatingActionButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_materialButtonStyle com.companyname.katherine_lopez_term_project_v1:materialButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_materialCardViewStyle com.companyname.katherine_lopez_term_project_v1:materialCardViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_navigationViewStyle com.companyname.katherine_lopez_term_project_v1:navigationViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_scrimBackground com.companyname.katherine_lopez_term_project_v1:scrimBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_snackbarButtonStyle com.companyname.katherine_lopez_term_project_v1:snackbarButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_tabStyle com.companyname.katherine_lopez_term_project_v1:tabStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceBody1 com.companyname.katherine_lopez_term_project_v1:textAppearanceBody1}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceBody2 com.companyname.katherine_lopez_term_project_v1:textAppearanceBody2}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceButton com.companyname.katherine_lopez_term_project_v1:textAppearanceButton}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceCaption com.companyname.katherine_lopez_term_project_v1:textAppearanceCaption}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline1 com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline1}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline2 com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline2}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline3 com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline3}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline4 com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline4}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline5 com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline5}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline6 com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline6}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceOverline com.companyname.katherine_lopez_term_project_v1:textAppearanceOverline}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceSubtitle1 com.companyname.katherine_lopez_term_project_v1:textAppearanceSubtitle1}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceSubtitle2 com.companyname.katherine_lopez_term_project_v1:textAppearanceSubtitle2}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textInputStyle com.companyname.katherine_lopez_term_project_v1:textInputStyle}</code></td><td></td></tr> * </table> * @see #MaterialComponentsTheme_bottomSheetDialogTheme * @see #MaterialComponentsTheme_bottomSheetStyle * @see #MaterialComponentsTheme_chipGroupStyle * @see #MaterialComponentsTheme_chipStandaloneStyle * @see #MaterialComponentsTheme_chipStyle * @see #MaterialComponentsTheme_colorAccent * @see #MaterialComponentsTheme_colorBackgroundFloating * @see #MaterialComponentsTheme_colorPrimary * @see #MaterialComponentsTheme_colorPrimaryDark * @see #MaterialComponentsTheme_colorSecondary * @see #MaterialComponentsTheme_editTextStyle * @see #MaterialComponentsTheme_floatingActionButtonStyle * @see #MaterialComponentsTheme_materialButtonStyle * @see #MaterialComponentsTheme_materialCardViewStyle * @see #MaterialComponentsTheme_navigationViewStyle * @see #MaterialComponentsTheme_scrimBackground * @see #MaterialComponentsTheme_snackbarButtonStyle * @see #MaterialComponentsTheme_tabStyle * @see #MaterialComponentsTheme_textAppearanceBody1 * @see #MaterialComponentsTheme_textAppearanceBody2 * @see #MaterialComponentsTheme_textAppearanceButton * @see #MaterialComponentsTheme_textAppearanceCaption * @see #MaterialComponentsTheme_textAppearanceHeadline1 * @see #MaterialComponentsTheme_textAppearanceHeadline2 * @see #MaterialComponentsTheme_textAppearanceHeadline3 * @see #MaterialComponentsTheme_textAppearanceHeadline4 * @see #MaterialComponentsTheme_textAppearanceHeadline5 * @see #MaterialComponentsTheme_textAppearanceHeadline6 * @see #MaterialComponentsTheme_textAppearanceOverline * @see #MaterialComponentsTheme_textAppearanceSubtitle1 * @see #MaterialComponentsTheme_textAppearanceSubtitle2 * @see #MaterialComponentsTheme_textInputStyle */ public static final int[] MaterialComponentsTheme={ 0x7f030041, 0x7f030042, 0x7f030068, 0x7f030072, 0x7f030076, 0x7f030084, 0x7f030085, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f0300b4, 0x7f0300cf, 0x7f030125, 0x7f030126, 0x7f030130, 0x7f03014f, 0x7f03015f, 0x7f030192, 0x7f030197, 0x7f030198, 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a5, 0x7f0301aa, 0x7f0301ab, 0x7f0301af }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#bottomSheetDialogTheme} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:bottomSheetDialogTheme */ public static final int MaterialComponentsTheme_bottomSheetDialogTheme=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#bottomSheetStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:bottomSheetStyle */ public static final int MaterialComponentsTheme_bottomSheetStyle=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipGroupStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:chipGroupStyle */ public static final int MaterialComponentsTheme_chipGroupStyle=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipStandaloneStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:chipStandaloneStyle */ public static final int MaterialComponentsTheme_chipStandaloneStyle=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#chipStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:chipStyle */ public static final int MaterialComponentsTheme_chipStyle=4; /** * <p> * @attr description * Bright complement to the primary branding color. By default, this is the color applied * to framework controls (via colorControlActivated). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorAccent */ public static final int MaterialComponentsTheme_colorAccent=5; /** * <p> * @attr description * Default color of background imagery for floating components, ex. dialogs, popups, and cards. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorBackgroundFloating */ public static final int MaterialComponentsTheme_colorBackgroundFloating=6; /** * <p> * @attr description * The primary branding color for the app. By default, this is the color applied to the * action bar background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorPrimary */ public static final int MaterialComponentsTheme_colorPrimary=7; /** * <p> * @attr description * Dark variant of the primary branding color. By default, this is the color applied to * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorPrimaryDark */ public static final int MaterialComponentsTheme_colorPrimaryDark=8; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#colorSecondary} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:colorSecondary */ public static final int MaterialComponentsTheme_colorSecondary=9; /** * <p> * @attr description * Default EditText style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:editTextStyle */ public static final int MaterialComponentsTheme_editTextStyle=10; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#floatingActionButtonStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * <p>May be an integer value, such as "<code>100</code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.katherine_lopez_term_project_v1:floatingActionButtonStyle */ public static final int MaterialComponentsTheme_floatingActionButtonStyle=11; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#materialButtonStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:materialButtonStyle */ public static final int MaterialComponentsTheme_materialButtonStyle=12; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#materialCardViewStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:materialCardViewStyle */ public static final int MaterialComponentsTheme_materialCardViewStyle=13; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#navigationViewStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:navigationViewStyle */ public static final int MaterialComponentsTheme_navigationViewStyle=14; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#scrimBackground} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:scrimBackground */ public static final int MaterialComponentsTheme_scrimBackground=15; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#snackbarButtonStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:snackbarButtonStyle */ public static final int MaterialComponentsTheme_snackbarButtonStyle=16; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabStyle */ public static final int MaterialComponentsTheme_tabStyle=17; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceBody1} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceBody1 */ public static final int MaterialComponentsTheme_textAppearanceBody1=18; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceBody2} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceBody2 */ public static final int MaterialComponentsTheme_textAppearanceBody2=19; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceButton} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceButton */ public static final int MaterialComponentsTheme_textAppearanceButton=20; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceCaption} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceCaption */ public static final int MaterialComponentsTheme_textAppearanceCaption=21; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceHeadline1} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline1 */ public static final int MaterialComponentsTheme_textAppearanceHeadline1=22; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceHeadline2} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline2 */ public static final int MaterialComponentsTheme_textAppearanceHeadline2=23; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceHeadline3} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline3 */ public static final int MaterialComponentsTheme_textAppearanceHeadline3=24; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceHeadline4} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline4 */ public static final int MaterialComponentsTheme_textAppearanceHeadline4=25; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceHeadline5} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline5 */ public static final int MaterialComponentsTheme_textAppearanceHeadline5=26; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceHeadline6} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceHeadline6 */ public static final int MaterialComponentsTheme_textAppearanceHeadline6=27; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceOverline} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceOverline */ public static final int MaterialComponentsTheme_textAppearanceOverline=28; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceSubtitle1} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceSubtitle1 */ public static final int MaterialComponentsTheme_textAppearanceSubtitle1=29; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textAppearanceSubtitle2} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAppearanceSubtitle2 */ public static final int MaterialComponentsTheme_textAppearanceSubtitle2=30; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#textInputStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textInputStyle */ public static final int MaterialComponentsTheme_textInputStyle=31; /** * Attributes that can be used with a MenuGroup. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> * </table> * @see #MenuGroup_android_enabled * @see #MenuGroup_android_id * @see #MenuGroup_android_visible * @see #MenuGroup_android_menuCategory * @see #MenuGroup_android_orderInCategory * @see #MenuGroup_android_checkableBehavior */ public static final int[] MenuGroup={ 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** * <p> * @attr description * Whether the items are enabled. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:enabled */ public static final int MenuGroup_android_enabled=0; /** * <p> * @attr description * The ID of the group. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int MenuGroup_android_id=1; /** * <p> * @attr description * Whether the items are shown/visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuGroup_android_visible=2; /** * <p> * @attr description * The category applied to all items within this group. * (This will be or'ed with the orderInCategory attribute.) * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory=3; /** * <p> * @attr description * The order within the category applied to all items within this group. * (This will be or'ed with the category attribute.) * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory=4; /** * <p> * @attr description * Whether the items are capable of displaying a check mark. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>single</td><td>2</td><td></td></tr> * </table> * * @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior=5; /** * Attributes that can be used with a MenuItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionLayout com.companyname.katherine_lopez_term_project_v1:actionLayout}</code></td><td>An optional layout to be used as an action view.</td></tr> * <tr><td><code>{@link #MenuItem_actionProviderClass com.companyname.katherine_lopez_term_project_v1:actionProviderClass}</code></td><td>The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item.</td></tr> * <tr><td><code>{@link #MenuItem_actionViewClass com.companyname.katherine_lopez_term_project_v1:actionViewClass}</code></td><td>The name of an optional View class to instantiate and use as an * action view.</td></tr> * <tr><td><code>{@link #MenuItem_alphabeticModifiers com.companyname.katherine_lopez_term_project_v1:alphabeticModifiers}</code></td><td>The alphabetic modifier key.</td></tr> * <tr><td><code>{@link #MenuItem_contentDescription com.companyname.katherine_lopez_term_project_v1:contentDescription}</code></td><td>The content description associated with the item.</td></tr> * <tr><td><code>{@link #MenuItem_iconTint com.companyname.katherine_lopez_term_project_v1:iconTint}</code></td><td>Tint to apply to the icon.</td></tr> * <tr><td><code>{@link #MenuItem_iconTintMode com.companyname.katherine_lopez_term_project_v1:iconTintMode}</code></td><td>Blending mode used to apply the icon tint.</td></tr> * <tr><td><code>{@link #MenuItem_numericModifiers com.companyname.katherine_lopez_term_project_v1:numericModifiers}</code></td><td>The numeric modifier key.</td></tr> * <tr><td><code>{@link #MenuItem_showAsAction com.companyname.katherine_lopez_term_project_v1:showAsAction}</code></td><td>How this item should display in the Action Bar, if present.</td></tr> * <tr><td><code>{@link #MenuItem_tooltipText com.companyname.katherine_lopez_term_project_v1:tooltipText}</code></td><td>The tooltip text associated with the item.</td></tr> * </table> * @see #MenuItem_android_icon * @see #MenuItem_android_enabled * @see #MenuItem_android_id * @see #MenuItem_android_checked * @see #MenuItem_android_visible * @see #MenuItem_android_menuCategory * @see #MenuItem_android_orderInCategory * @see #MenuItem_android_title * @see #MenuItem_android_titleCondensed * @see #MenuItem_android_alphabeticShortcut * @see #MenuItem_android_numericShortcut * @see #MenuItem_android_checkable * @see #MenuItem_android_onClick * @see #MenuItem_actionLayout * @see #MenuItem_actionProviderClass * @see #MenuItem_actionViewClass * @see #MenuItem_alphabeticModifiers * @see #MenuItem_contentDescription * @see #MenuItem_iconTint * @see #MenuItem_iconTintMode * @see #MenuItem_numericModifiers * @see #MenuItem_showAsAction * @see #MenuItem_tooltipText */ public static final int[] MenuItem={ 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f030090, 0x7f0300f2, 0x7f0300f3, 0x7f030131, 0x7f030157, 0x7f0301cb }; /** * <p> * @attr description * The icon associated with this item. This icon will not always be shown, so * the title should be sufficient in describing this item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:icon */ public static final int MenuItem_android_icon=0; /** * <p> * @attr description * Whether the item is enabled. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:enabled */ public static final int MenuItem_android_enabled=1; /** * <p> * @attr description * The ID of the item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int MenuItem_android_id=2; /** * <p> * @attr description * Whether the item is checked. Note that you must first have enabled checking with * the checkable attribute or else the check mark will not appear. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checked */ public static final int MenuItem_android_checked=3; /** * <p> * @attr description * Whether the item is shown/visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuItem_android_visible=4; /** * <p> * @attr description * The category applied to the item. * (This will be or'ed with the orderInCategory attribute.) * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory=5; /** * <p> * @attr description * The order within the category applied to the item. * (This will be or'ed with the category attribute.) * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory=6; /** * <p> * @attr description * The title associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:title */ public static final int MenuItem_android_title=7; /** * <p> * @attr description * The condensed title associated with the item. This is used in situations where the * normal title may be too long to be displayed. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed=8; /** * <p> * @attr description * The alphabetic shortcut key. This is the shortcut when using a keyboard * with alphabetic keys. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut=9; /** * <p> * @attr description * The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) * keyboard. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut=10; /** * <p> * @attr description * Whether the item is capable of displaying a check mark. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checkable */ public static final int MenuItem_android_checkable=11; /** * <p> * @attr description * Name of a method on the Context used to inflate the menu that will be * called when the item is clicked. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:onClick */ public static final int MenuItem_android_onClick=12; /** * <p> * @attr description * An optional layout to be used as an action view. * See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:actionLayout */ public static final int MenuItem_actionLayout=13; /** * <p> * @attr description * The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item. * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} * for more info. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:actionProviderClass */ public static final int MenuItem_actionProviderClass=14; /** * <p> * @attr description * The name of an optional View class to instantiate and use as an * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:actionViewClass */ public static final int MenuItem_actionViewClass=15; /** * <p> * @attr description * The alphabetic modifier key. This is the modifier when using a keyboard * with alphabetic keys. The values should be kept in sync with KeyEvent * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers=16; /** * <p> * @attr description * The content description associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:contentDescription */ public static final int MenuItem_contentDescription=17; /** * <p> * @attr description * Tint to apply to the icon. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:iconTint */ public static final int MenuItem_iconTint=18; /** * <p> * @attr description * Blending mode used to apply the icon tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the iconโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The iconโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:iconTintMode */ public static final int MenuItem_iconTintMode=19; /** * <p> * @attr description * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) * keyboard. The values should be kept in sync with KeyEvent * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:numericModifiers */ public static final int MenuItem_numericModifiers=20; /** * <p> * @attr description * How this item should display in the Action Bar, if present. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>always</td><td>2</td><td>Always show this item in an actionbar, even if it would override * the system's limits of how much stuff to put there. This may make * your action bar look bad on some screens. In most cases you should * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".</td></tr> * <tr><td>collapseActionView</td><td>8</td><td>This item's action view collapses to a normal menu * item. When expanded, the action view takes over a * larger segment of its container.</td></tr> * <tr><td>ifRoom</td><td>1</td><td>Show this item in an action bar if there is room for it as determined * by the system. Favor this option over "always" where possible. * Mutually exclusive with "never" and "always".</td></tr> * <tr><td>never</td><td>0</td><td>Never show this item in an action bar, show it in the overflow menu instead. * Mutually exclusive with "ifRoom" and "always".</td></tr> * <tr><td>withText</td><td>4</td><td>When this item is shown as an action in the action bar, show a text * label with it even if it has an icon representation.</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:showAsAction */ public static final int MenuItem_showAsAction=21; /** * <p> * @attr description * The tooltip text associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:tooltipText */ public static final int MenuItem_tooltipText=22; /** * Attributes that can be used with a MenuView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_preserveIconSpacing com.companyname.katherine_lopez_term_project_v1:preserveIconSpacing}</code></td><td>Whether space should be reserved in layout when an icon is missing.</td></tr> * <tr><td><code>{@link #MenuView_subMenuArrow com.companyname.katherine_lopez_term_project_v1:subMenuArrow}</code></td><td>Drawable for the arrow icon indicating a particular item is a submenu.</td></tr> * </table> * @see #MenuView_android_windowAnimationStyle * @see #MenuView_android_itemTextAppearance * @see #MenuView_android_horizontalDivider * @see #MenuView_android_verticalDivider * @see #MenuView_android_headerBackground * @see #MenuView_android_itemBackground * @see #MenuView_android_itemIconDisabledAlpha * @see #MenuView_preserveIconSpacing * @see #MenuView_subMenuArrow */ public static final int[] MenuView={ 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f030142, 0x7f030171 }; /** * <p> * @attr description * Default animations for the menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle=0; /** * <p> * @attr description * Default appearance of menu item text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance=1; /** * <p> * @attr description * Default horizontal divider between rows of menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider=2; /** * <p> * @attr description * Default vertical divider between menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider=3; /** * <p> * @attr description * Default background for the menu header. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:headerBackground */ public static final int MenuView_android_headerBackground=4; /** * <p> * @attr description * Default background for each menu item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:itemBackground */ public static final int MenuView_android_itemBackground=5; /** * <p> * @attr description * Default disabled icon alpha for each menu item that shows an icon. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha=6; /** * <p> * @attr description * Whether space should be reserved in layout when an icon is missing. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing=7; /** * <p> * @attr description * Drawable for the arrow icon indicating a particular item is a submenu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:subMenuArrow */ public static final int MenuView_subMenuArrow=8; /** * Attributes that can be used with a NavigationView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_elevation com.companyname.katherine_lopez_term_project_v1:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #NavigationView_headerLayout com.companyname.katherine_lopez_term_project_v1:headerLayout}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemBackground com.companyname.katherine_lopez_term_project_v1:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemHorizontalPadding com.companyname.katherine_lopez_term_project_v1:itemHorizontalPadding}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemIconPadding com.companyname.katherine_lopez_term_project_v1:itemIconPadding}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemIconTint com.companyname.katherine_lopez_term_project_v1:itemIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemTextAppearance com.companyname.katherine_lopez_term_project_v1:itemTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemTextColor com.companyname.katherine_lopez_term_project_v1:itemTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_menu com.companyname.katherine_lopez_term_project_v1:menu}</code></td><td></td></tr> * </table> * @see #NavigationView_android_background * @see #NavigationView_android_fitsSystemWindows * @see #NavigationView_android_maxWidth * @see #NavigationView_elevation * @see #NavigationView_headerLayout * @see #NavigationView_itemBackground * @see #NavigationView_itemHorizontalPadding * @see #NavigationView_itemIconPadding * @see #NavigationView_itemIconTint * @see #NavigationView_itemTextAppearance * @see #NavigationView_itemTextColor * @see #NavigationView_menu */ public static final int[] NavigationView={ 0x010100d4, 0x010100dd, 0x0101011f, 0x7f0300b5, 0x7f0300de, 0x7f0300fa, 0x7f0300fb, 0x7f0300fd, 0x7f0300ff, 0x7f030102, 0x7f030105, 0x7f03012b }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:background */ public static final int 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. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @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. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth=2; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:elevation */ public static final int NavigationView_elevation=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#headerLayout} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:headerLayout */ public static final int NavigationView_headerLayout=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemBackground} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:itemBackground */ public static final int NavigationView_itemBackground=5; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemHorizontalPadding} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:itemHorizontalPadding */ public static final int NavigationView_itemHorizontalPadding=6; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemIconPadding} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:itemIconPadding */ public static final int NavigationView_itemIconPadding=7; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemIconTint} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:itemIconTint */ public static final int NavigationView_itemIconTint=8; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemTextAppearance} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:itemTextAppearance */ public static final int NavigationView_itemTextAppearance=9; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#itemTextColor} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:itemTextColor */ public static final int NavigationView_itemTextColor=10; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#menu} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:menu */ public static final int NavigationView_menu=11; /** * Attributes that can be used with a PopupWindow. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_overlapAnchor com.companyname.katherine_lopez_term_project_v1:overlapAnchor}</code></td><td>Whether the popup window should overlap its anchor view.</td></tr> * </table> * @see #PopupWindow_android_popupBackground * @see #PopupWindow_android_popupAnimationStyle * @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow={ 0x01010176, 0x010102c9, 0x7f030132 }; /** * <p>This symbol is the offset where the {@link android.R.attr#popupBackground} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground=0; /** * <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle=1; /** * <p> * @attr description * Whether the popup window should overlap its anchor view. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:overlapAnchor */ public static final int PopupWindow_overlapAnchor=2; /** * Attributes that can be used with a PopupWindowBackgroundState. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.companyname.katherine_lopez_term_project_v1:state_above_anchor}</code></td><td>State identifier indicating the popup will be above the anchor.</td></tr> * </table> * @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState={ 0x7f030168 }; /** * <p> * @attr description * State identifier indicating the popup will be above the anchor. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor=0; /** * Attributes that can be used with a RecycleListView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.companyname.katherine_lopez_term_project_v1:paddingBottomNoButtons}</code></td><td>Bottom padding to use when no buttons are present.</td></tr> * <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.companyname.katherine_lopez_term_project_v1:paddingTopNoTitle}</code></td><td>Top padding to use when no title is present.</td></tr> * </table> * @see #RecycleListView_paddingBottomNoButtons * @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView={ 0x7f030133, 0x7f030136 }; /** * <p> * @attr description * Bottom padding to use when no buttons are present. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons=0; /** * <p> * @attr description * Top padding to use when no title is present. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle=1; /** * Attributes that can be used with a RecyclerView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollEnabled com.companyname.katherine_lopez_term_project_v1:fastScrollEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.companyname.katherine_lopez_term_project_v1:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.companyname.katherine_lopez_term_project_v1:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.companyname.katherine_lopez_term_project_v1:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.companyname.katherine_lopez_term_project_v1:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_layoutManager com.companyname.katherine_lopez_term_project_v1:layoutManager}</code></td><td>Class name of the Layout Manager to be used.</td></tr> * <tr><td><code>{@link #RecyclerView_reverseLayout com.companyname.katherine_lopez_term_project_v1:reverseLayout}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_spanCount com.companyname.katherine_lopez_term_project_v1:spanCount}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_stackFromEnd com.companyname.katherine_lopez_term_project_v1:stackFromEnd}</code></td><td></td></tr> * </table> * @see #RecyclerView_android_orientation * @see #RecyclerView_android_descendantFocusability * @see #RecyclerView_fastScrollEnabled * @see #RecyclerView_fastScrollHorizontalThumbDrawable * @see #RecyclerView_fastScrollHorizontalTrackDrawable * @see #RecyclerView_fastScrollVerticalThumbDrawable * @see #RecyclerView_fastScrollVerticalTrackDrawable * @see #RecyclerView_layoutManager * @see #RecyclerView_reverseLayout * @see #RecyclerView_spanCount * @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView={ 0x010100c4, 0x010100f1, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f03010a, 0x7f03014c, 0x7f030161, 0x7f030167 }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int RecyclerView_android_orientation=0; /** * <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} * attribute's value can be found in the {@link #RecyclerView} 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>afterDescendants</td><td>1</td><td></td></tr> * <tr><td>beforeDescendants</td><td>0</td><td></td></tr> * <tr><td>blocksDescendants</td><td>2</td><td></td></tr> * </table> * * @attr name android:descendantFocusability */ public static final int RecyclerView_android_descendantFocusability=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#fastScrollEnabled} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:fastScrollEnabled */ public static final int RecyclerView_fastScrollEnabled=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#fastScrollHorizontalThumbDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:fastScrollHorizontalThumbDrawable */ public static final int RecyclerView_fastScrollHorizontalThumbDrawable=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#fastScrollHorizontalTrackDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:fastScrollHorizontalTrackDrawable */ public static final int RecyclerView_fastScrollHorizontalTrackDrawable=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#fastScrollVerticalThumbDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:fastScrollVerticalThumbDrawable */ public static final int RecyclerView_fastScrollVerticalThumbDrawable=5; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#fastScrollVerticalTrackDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:fastScrollVerticalTrackDrawable */ public static final int RecyclerView_fastScrollVerticalTrackDrawable=6; /** * <p> * @attr description * Class name of the Layout Manager to be used. * <p/> * The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager * and have either a default constructor or constructor with the signature * (android.content.Context, android.util.AttributeSet, int, int). * <p/> * If the name starts with a '.', application package is prefixed. * Else, if the name contains a '.', the classname is assumed to be a full class name. * Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:layoutManager */ public static final int RecyclerView_layoutManager=7; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#reverseLayout} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:reverseLayout */ public static final int RecyclerView_reverseLayout=8; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#spanCount} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:spanCount */ public static final int RecyclerView_spanCount=9; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#stackFromEnd} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:stackFromEnd */ public static final int RecyclerView_stackFromEnd=10; /** * Attributes that can be used with a ScrimInsetsFrameLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.companyname.katherine_lopez_term_project_v1:insetForeground}</code></td><td></td></tr> * </table> * @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout={ 0x7f0300f8 }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.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 a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:insetForeground */ public static final int ScrimInsetsFrameLayout_insetForeground=0; /** * Attributes that can be used with a ScrollingViewBehavior_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.companyname.katherine_lopez_term_project_v1:behavior_overlapTop}</code></td><td></td></tr> * </table> * @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout={ 0x7f03003a }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#behavior_overlapTop} * attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:behavior_overlapTop */ public static final int ScrollingViewBehavior_Layout_behavior_overlapTop=0; /** * Attributes that can be used with a SearchView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_closeIcon com.companyname.katherine_lopez_term_project_v1:closeIcon}</code></td><td>Close button icon</td></tr> * <tr><td><code>{@link #SearchView_commitIcon com.companyname.katherine_lopez_term_project_v1:commitIcon}</code></td><td>Commit icon shown in the query suggestion row</td></tr> * <tr><td><code>{@link #SearchView_defaultQueryHint com.companyname.katherine_lopez_term_project_v1:defaultQueryHint}</code></td><td>Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint.</td></tr> * <tr><td><code>{@link #SearchView_goIcon com.companyname.katherine_lopez_term_project_v1:goIcon}</code></td><td>Go button icon</td></tr> * <tr><td><code>{@link #SearchView_iconifiedByDefault com.companyname.katherine_lopez_term_project_v1:iconifiedByDefault}</code></td><td>The default state of the SearchView.</td></tr> * <tr><td><code>{@link #SearchView_layout com.companyname.katherine_lopez_term_project_v1:layout}</code></td><td>The layout to use for the search view.</td></tr> * <tr><td><code>{@link #SearchView_queryBackground com.companyname.katherine_lopez_term_project_v1:queryBackground}</code></td><td>Background for the section containing the search query</td></tr> * <tr><td><code>{@link #SearchView_queryHint com.companyname.katherine_lopez_term_project_v1:queryHint}</code></td><td>An optional user-defined query hint string to be displayed in the empty query field.</td></tr> * <tr><td><code>{@link #SearchView_searchHintIcon com.companyname.katherine_lopez_term_project_v1:searchHintIcon}</code></td><td>Search icon displayed as a text field hint</td></tr> * <tr><td><code>{@link #SearchView_searchIcon com.companyname.katherine_lopez_term_project_v1:searchIcon}</code></td><td>Search icon</td></tr> * <tr><td><code>{@link #SearchView_submitBackground com.companyname.katherine_lopez_term_project_v1:submitBackground}</code></td><td>Background for the section containing the action (e.g.</td></tr> * <tr><td><code>{@link #SearchView_suggestionRowLayout com.companyname.katherine_lopez_term_project_v1:suggestionRowLayout}</code></td><td>Layout for query suggestion rows</td></tr> * <tr><td><code>{@link #SearchView_voiceIcon com.companyname.katherine_lopez_term_project_v1:voiceIcon}</code></td><td>Voice button icon</td></tr> * </table> * @see #SearchView_android_focusable * @see #SearchView_android_maxWidth * @see #SearchView_android_inputType * @see #SearchView_android_imeOptions * @see #SearchView_closeIcon * @see #SearchView_commitIcon * @see #SearchView_defaultQueryHint * @see #SearchView_goIcon * @see #SearchView_iconifiedByDefault * @see #SearchView_layout * @see #SearchView_queryBackground * @see #SearchView_queryHint * @see #SearchView_searchHintIcon * @see #SearchView_searchIcon * @see #SearchView_submitBackground * @see #SearchView_suggestionRowLayout * @see #SearchView_voiceIcon */ public static final int[] SearchView={ 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f030077, 0x7f03008f, 0x7f0300a5, 0x7f0300dd, 0x7f0300f4, 0x7f030109, 0x7f030146, 0x7f030147, 0x7f030151, 0x7f030152, 0x7f030172, 0x7f030177, 0x7f0301d2 }; /** * <p>This symbol is the offset where the {@link android.R.attr#focusable} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>10</td><td></td></tr> * </table> * * @attr name android:focusable */ public static final int SearchView_android_focusable=0; /** * <p> * @attr description * An optional maximum width of the SearchView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int SearchView_android_maxWidth=1; /** * <p> * @attr description * The input type to set on the query text field. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>date</td><td>14</td><td></td></tr> * <tr><td>datetime</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>number</td><td>2</td><td></td></tr> * <tr><td>numberDecimal</td><td>2002</td><td></td></tr> * <tr><td>numberPassword</td><td>12</td><td></td></tr> * <tr><td>numberSigned</td><td>1002</td><td></td></tr> * <tr><td>phone</td><td>3</td><td></td></tr> * <tr><td>text</td><td>1</td><td></td></tr> * <tr><td>textAutoComplete</td><td>10001</td><td></td></tr> * <tr><td>textAutoCorrect</td><td>8001</td><td></td></tr> * <tr><td>textCapCharacters</td><td>1001</td><td></td></tr> * <tr><td>textCapSentences</td><td>4001</td><td></td></tr> * <tr><td>textCapWords</td><td>2001</td><td></td></tr> * <tr><td>textEmailAddress</td><td>21</td><td></td></tr> * <tr><td>textEmailSubject</td><td>31</td><td></td></tr> * <tr><td>textFilter</td><td>b1</td><td></td></tr> * <tr><td>textImeMultiLine</td><td>40001</td><td></td></tr> * <tr><td>textLongMessage</td><td>51</td><td></td></tr> * <tr><td>textMultiLine</td><td>20001</td><td></td></tr> * <tr><td>textNoSuggestions</td><td>80001</td><td></td></tr> * <tr><td>textPassword</td><td>81</td><td></td></tr> * <tr><td>textPersonName</td><td>61</td><td></td></tr> * <tr><td>textPhonetic</td><td>c1</td><td></td></tr> * <tr><td>textPostalAddress</td><td>71</td><td></td></tr> * <tr><td>textShortMessage</td><td>41</td><td></td></tr> * <tr><td>textUri</td><td>11</td><td></td></tr> * <tr><td>textVisiblePassword</td><td>91</td><td></td></tr> * <tr><td>textWebEditText</td><td>a1</td><td></td></tr> * <tr><td>textWebEmailAddress</td><td>d1</td><td></td></tr> * <tr><td>textWebPassword</td><td>e1</td><td></td></tr> * <tr><td>time</td><td>24</td><td></td></tr> * </table> * * @attr name android:inputType */ public static final int SearchView_android_inputType=2; /** * <p> * @attr description * The IME options to set on the query text field. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>actionDone</td><td>6</td><td></td></tr> * <tr><td>actionGo</td><td>2</td><td></td></tr> * <tr><td>actionNext</td><td>5</td><td></td></tr> * <tr><td>actionNone</td><td>1</td><td></td></tr> * <tr><td>actionPrevious</td><td>7</td><td></td></tr> * <tr><td>actionSearch</td><td>3</td><td></td></tr> * <tr><td>actionSend</td><td>4</td><td></td></tr> * <tr><td>actionUnspecified</td><td>0</td><td></td></tr> * <tr><td>flagForceAscii</td><td>80000000</td><td></td></tr> * <tr><td>flagNavigateNext</td><td>8000000</td><td></td></tr> * <tr><td>flagNavigatePrevious</td><td>4000000</td><td></td></tr> * <tr><td>flagNoAccessoryAction</td><td>20000000</td><td></td></tr> * <tr><td>flagNoEnterAction</td><td>40000000</td><td></td></tr> * <tr><td>flagNoExtractUi</td><td>10000000</td><td></td></tr> * <tr><td>flagNoFullscreen</td><td>2000000</td><td></td></tr> * <tr><td>flagNoPersonalizedLearning</td><td>1000000</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:imeOptions */ public static final int SearchView_android_imeOptions=3; /** * <p> * @attr description * Close button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:closeIcon */ public static final int SearchView_closeIcon=4; /** * <p> * @attr description * Commit icon shown in the query suggestion row * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:commitIcon */ public static final int SearchView_commitIcon=5; /** * <p> * @attr description * Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:defaultQueryHint */ public static final int SearchView_defaultQueryHint=6; /** * <p> * @attr description * Go button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:goIcon */ public static final int SearchView_goIcon=7; /** * <p> * @attr description * The default state of the SearchView. If true, it will be iconified when not in * use and expanded when clicked. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault=8; /** * <p> * @attr description * The layout to use for the search view. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:layout */ public static final int SearchView_layout=9; /** * <p> * @attr description * Background for the section containing the search query * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:queryBackground */ public static final int SearchView_queryBackground=10; /** * <p> * @attr description * An optional user-defined query hint string to be displayed in the empty query field. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:queryHint */ public static final int SearchView_queryHint=11; /** * <p> * @attr description * Search icon displayed as a text field hint * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:searchHintIcon */ public static final int SearchView_searchHintIcon=12; /** * <p> * @attr description * Search icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:searchIcon */ public static final int SearchView_searchIcon=13; /** * <p> * @attr description * Background for the section containing the action (e.g. voice search) * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:submitBackground */ public static final int SearchView_submitBackground=14; /** * <p> * @attr description * Layout for query suggestion rows * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout=15; /** * <p> * @attr description * Voice button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:voiceIcon */ public static final int SearchView_voiceIcon=16; /** * Attributes that can be used with a Snackbar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #Snackbar_snackbarButtonStyle com.companyname.katherine_lopez_term_project_v1:snackbarButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #Snackbar_snackbarStyle com.companyname.katherine_lopez_term_project_v1:snackbarStyle}</code></td><td></td></tr> * </table> * @see #Snackbar_snackbarButtonStyle * @see #Snackbar_snackbarStyle */ public static final int[] Snackbar={ 0x7f03015f, 0x7f030160 }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#snackbarButtonStyle} * attribute's value can be found in the {@link #Snackbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:snackbarButtonStyle */ public static final int Snackbar_snackbarButtonStyle=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#snackbarStyle} * attribute's value can be found in the {@link #Snackbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:snackbarStyle */ public static final int Snackbar_snackbarStyle=1; /** * Attributes that can be used with a SnackbarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #SnackbarLayout_elevation com.companyname.katherine_lopez_term_project_v1:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.companyname.katherine_lopez_term_project_v1:maxActionInlineWidth}</code></td><td></td></tr> * </table> * @see #SnackbarLayout_android_maxWidth * @see #SnackbarLayout_elevation * @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout={ 0x0101011f, 0x7f0300b5, 0x7f030127 }; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #SnackbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth=0; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:elevation */ public static final int SnackbarLayout_elevation=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#maxActionInlineWidth} * attribute's value can be found in the {@link #SnackbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1: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_entries android:entries}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_popupTheme com.companyname.katherine_lopez_term_project_v1:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * </table> * @see #Spinner_android_entries * @see #Spinner_android_popupBackground * @see #Spinner_android_prompt * @see #Spinner_android_dropDownWidth * @see #Spinner_popupTheme */ public static final int[] Spinner={ 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f030140 }; /** * <p> * @attr description * Reference to an array resource that will populate the Spinner. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:entries */ public static final int Spinner_android_entries=0; /** * <p> * @attr description * Background drawable to use for the dropdown in spinnerMode="dropdown". * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:popupBackground */ public static final int Spinner_android_popupBackground=1; /** * <p> * @attr description * The prompt to display when the spinner's dialog is shown. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:prompt */ public static final int Spinner_android_prompt=2; /** * <p> * @attr description * Width of the dropdown in spinnerMode="dropdown". * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth=3; /** * <p> * @attr description * Theme to use for the drop-down or dialog popup window. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:popupTheme */ public static final int Spinner_popupTheme=4; /** * Attributes that can be used with a StateListDrawable. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #StateListDrawable_android_dither android:dither}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_variablePadding android:variablePadding}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_constantSize android:constantSize}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr> * </table> * @see #StateListDrawable_android_dither * @see #StateListDrawable_android_visible * @see #StateListDrawable_android_variablePadding * @see #StateListDrawable_android_constantSize * @see #StateListDrawable_android_enterFadeDuration * @see #StateListDrawable_android_exitFadeDuration */ public static final int[] StateListDrawable={ 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** * <p> * @attr description * Enables or disables dithering of the bitmap if the bitmap does not have the * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with * an RGB 565 screen). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:dither */ public static final int StateListDrawable_android_dither=0; /** * <p> * @attr description * Indicates whether the drawable should be initially visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int StateListDrawable_android_visible=1; /** * <p> * @attr description * If true, allows the drawable's padding to change based on the * current state that is selected. If false, the padding will * stay the same (based on the maximum padding of all the states). * Enabling this feature requires that the owner of the drawable * deal with performing layout when the state changes, which is * often not supported. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:variablePadding */ public static final int StateListDrawable_android_variablePadding=2; /** * <p> * @attr description * If true, the drawable's reported internal size will remain * constant as the state changes; the size is the maximum of all * of the states. If false, the size will vary based on the * current state. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:constantSize */ public static final int StateListDrawable_android_constantSize=3; /** * <p> * @attr description * Amount of time (in milliseconds) to fade in a new state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:enterFadeDuration */ public static final int StateListDrawable_android_enterFadeDuration=4; /** * <p> * @attr description * Amount of time (in milliseconds) to fade out an old state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:exitFadeDuration */ public static final int StateListDrawable_android_exitFadeDuration=5; /** * Attributes that can be used with a StateListDrawableItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #StateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr> * </table> * @see #StateListDrawableItem_android_drawable */ public static final int[] StateListDrawableItem={ 0x01010199 }; /** * <p> * @attr description * Reference to a drawable resource to use for the state. If not * given, the drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int StateListDrawableItem_android_drawable=0; /** * Attributes that can be used with a SwitchCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_showText com.companyname.katherine_lopez_term_project_v1:showText}</code></td><td>Whether to draw on/off text.</td></tr> * <tr><td><code>{@link #SwitchCompat_splitTrack com.companyname.katherine_lopez_term_project_v1:splitTrack}</code></td><td>Whether to split the track and leave a gap for the thumb drawable.</td></tr> * <tr><td><code>{@link #SwitchCompat_switchMinWidth com.companyname.katherine_lopez_term_project_v1:switchMinWidth}</code></td><td>Minimum width for the switch component</td></tr> * <tr><td><code>{@link #SwitchCompat_switchPadding com.companyname.katherine_lopez_term_project_v1:switchPadding}</code></td><td>Minimum space between the switch and caption text</td></tr> * <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.companyname.katherine_lopez_term_project_v1:switchTextAppearance}</code></td><td>TextAppearance style for text displayed on the switch thumb.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.companyname.katherine_lopez_term_project_v1:thumbTextPadding}</code></td><td>Amount of padding on either side of text within the switch thumb.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTint com.companyname.katherine_lopez_term_project_v1:thumbTint}</code></td><td>Tint to apply to the thumb drawable.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTintMode com.companyname.katherine_lopez_term_project_v1:thumbTintMode}</code></td><td>Blending mode used to apply the thumb tint.</td></tr> * <tr><td><code>{@link #SwitchCompat_track com.companyname.katherine_lopez_term_project_v1:track}</code></td><td>Drawable to use as the "track" that the switch thumb slides within.</td></tr> * <tr><td><code>{@link #SwitchCompat_trackTint com.companyname.katherine_lopez_term_project_v1:trackTint}</code></td><td>Tint to apply to the track.</td></tr> * <tr><td><code>{@link #SwitchCompat_trackTintMode com.companyname.katherine_lopez_term_project_v1:trackTintMode}</code></td><td>Blending mode used to apply the track tint.</td></tr> * </table> * @see #SwitchCompat_android_textOn * @see #SwitchCompat_android_textOff * @see #SwitchCompat_android_thumb * @see #SwitchCompat_showText * @see #SwitchCompat_splitTrack * @see #SwitchCompat_switchMinWidth * @see #SwitchCompat_switchPadding * @see #SwitchCompat_switchTextAppearance * @see #SwitchCompat_thumbTextPadding * @see #SwitchCompat_thumbTint * @see #SwitchCompat_thumbTintMode * @see #SwitchCompat_track * @see #SwitchCompat_trackTint * @see #SwitchCompat_trackTintMode */ public static final int[] SwitchCompat={ 0x01010124, 0x01010125, 0x01010142, 0x7f03015a, 0x7f030165, 0x7f030178, 0x7f030179, 0x7f03017b, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce }; /** * <p> * @attr description * Text to use when the switch is in the checked/"on" state. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:textOn */ public static final int SwitchCompat_android_textOn=0; /** * <p> * @attr description * Text to use when the switch is in the unchecked/"off" state. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:textOff */ public static final int SwitchCompat_android_textOff=1; /** * <p> * @attr description * Drawable to use as the "thumb" that switches back and forth. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int SwitchCompat_android_thumb=2; /** * <p> * @attr description * Whether to draw on/off text. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:showText */ public static final int SwitchCompat_showText=3; /** * <p> * @attr description * Whether to split the track and leave a gap for the thumb drawable. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:splitTrack */ public static final int SwitchCompat_splitTrack=4; /** * <p> * @attr description * Minimum width for the switch component * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:switchMinWidth */ public static final int SwitchCompat_switchMinWidth=5; /** * <p> * @attr description * Minimum space between the switch and caption text * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:switchPadding */ public static final int SwitchCompat_switchPadding=6; /** * <p> * @attr description * TextAppearance style for text displayed on the switch thumb. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance=7; /** * <p> * @attr description * Amount of padding on either side of text within the switch thumb. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding=8; /** * <p> * @attr description * Tint to apply to the thumb drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:thumbTint */ public static final int SwitchCompat_thumbTint=9; /** * <p> * @attr description * Blending mode used to apply the thumb tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:thumbTintMode */ public static final int SwitchCompat_thumbTintMode=10; /** * <p> * @attr description * Drawable to use as the "track" that the switch thumb slides within. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:track */ public static final int SwitchCompat_track=11; /** * <p> * @attr description * Tint to apply to the track. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:trackTint */ public static final int SwitchCompat_trackTint=12; /** * <p> * @attr description * Blending mode used to apply the track tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:trackTintMode */ public static final int SwitchCompat_trackTintMode=13; /** * Attributes that can be used with a TabItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr> * <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr> * </table> * @see #TabItem_android_icon * @see #TabItem_android_layout * @see #TabItem_android_text */ public static final int[] TabItem={ 0x01010002, 0x010100f2, 0x0101014f }; /** * <p>This symbol is the offset where the {@link android.R.attr#icon} * attribute's value can be found in the {@link #TabItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:icon */ public static final int TabItem_android_icon=0; /** * <p>This symbol is the offset where the {@link android.R.attr#layout} * attribute's value can be found in the {@link #TabItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int TabItem_android_layout=1; /** * <p>This symbol is the offset where the {@link android.R.attr#text} * attribute's value can be found in the {@link #TabItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:text */ public static final int TabItem_android_text=2; /** * Attributes that can be used with a TabLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #TabLayout_tabBackground com.companyname.katherine_lopez_term_project_v1:tabBackground}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabContentStart com.companyname.katherine_lopez_term_project_v1:tabContentStart}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabGravity com.companyname.katherine_lopez_term_project_v1:tabGravity}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIconTint com.companyname.katherine_lopez_term_project_v1:tabIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIconTintMode com.companyname.katherine_lopez_term_project_v1:tabIconTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicator com.companyname.katherine_lopez_term_project_v1:tabIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorAnimationDuration com.companyname.katherine_lopez_term_project_v1:tabIndicatorAnimationDuration}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorColor com.companyname.katherine_lopez_term_project_v1:tabIndicatorColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorFullWidth com.companyname.katherine_lopez_term_project_v1:tabIndicatorFullWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorGravity com.companyname.katherine_lopez_term_project_v1:tabIndicatorGravity}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.companyname.katherine_lopez_term_project_v1:tabIndicatorHeight}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabInlineLabel com.companyname.katherine_lopez_term_project_v1:tabInlineLabel}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMaxWidth com.companyname.katherine_lopez_term_project_v1:tabMaxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMinWidth com.companyname.katherine_lopez_term_project_v1:tabMinWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMode com.companyname.katherine_lopez_term_project_v1:tabMode}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPadding com.companyname.katherine_lopez_term_project_v1:tabPadding}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingBottom com.companyname.katherine_lopez_term_project_v1:tabPaddingBottom}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingEnd com.companyname.katherine_lopez_term_project_v1:tabPaddingEnd}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingStart com.companyname.katherine_lopez_term_project_v1:tabPaddingStart}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingTop com.companyname.katherine_lopez_term_project_v1:tabPaddingTop}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabRippleColor com.companyname.katherine_lopez_term_project_v1:tabRippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.companyname.katherine_lopez_term_project_v1:tabSelectedTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabTextAppearance com.companyname.katherine_lopez_term_project_v1:tabTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabTextColor com.companyname.katherine_lopez_term_project_v1:tabTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabUnboundedRipple com.companyname.katherine_lopez_term_project_v1:tabUnboundedRipple}</code></td><td></td></tr> * </table> * @see #TabLayout_tabBackground * @see #TabLayout_tabContentStart * @see #TabLayout_tabGravity * @see #TabLayout_tabIconTint * @see #TabLayout_tabIconTintMode * @see #TabLayout_tabIndicator * @see #TabLayout_tabIndicatorAnimationDuration * @see #TabLayout_tabIndicatorColor * @see #TabLayout_tabIndicatorFullWidth * @see #TabLayout_tabIndicatorGravity * @see #TabLayout_tabIndicatorHeight * @see #TabLayout_tabInlineLabel * @see #TabLayout_tabMaxWidth * @see #TabLayout_tabMinWidth * @see #TabLayout_tabMode * @see #TabLayout_tabPadding * @see #TabLayout_tabPaddingBottom * @see #TabLayout_tabPaddingEnd * @see #TabLayout_tabPaddingStart * @see #TabLayout_tabPaddingTop * @see #TabLayout_tabRippleColor * @see #TabLayout_tabSelectedTextColor * @see #TabLayout_tabTextAppearance * @see #TabLayout_tabTextColor * @see #TabLayout_tabUnboundedRipple */ public static final int[] TabLayout={ 0x7f03017c, 0x7f03017d, 0x7f03017e, 0x7f03017f, 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030183, 0x7f030184, 0x7f030185, 0x7f030186, 0x7f030187, 0x7f030188, 0x7f030189, 0x7f03018a, 0x7f03018b, 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f03018f, 0x7f030190, 0x7f030191, 0x7f030193, 0x7f030194, 0x7f030195 }; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabBackground} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabBackground */ public static final int TabLayout_tabBackground=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabContentStart} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:tabContentStart */ public static final int TabLayout_tabContentStart=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.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>center</td><td>1</td><td></td></tr> * <tr><td>fill</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:tabGravity */ public static final int TabLayout_tabGravity=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabIconTint} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabIconTint */ public static final int TabLayout_tabIconTint=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabIconTintMode} * attribute's value can be found in the {@link #TabLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:tabIconTintMode */ public static final int TabLayout_tabIconTintMode=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabIndicator} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabIndicator */ public static final int TabLayout_tabIndicator=5; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabIndicatorAnimationDuration} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabIndicatorAnimationDuration */ public static final int TabLayout_tabIndicatorAnimationDuration=6; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabIndicatorColor} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor=7; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabIndicatorFullWidth} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabIndicatorFullWidth */ public static final int TabLayout_tabIndicatorFullWidth=8; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabIndicatorGravity} * attribute's value can be found in the {@link #TabLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>0</td><td></td></tr> * <tr><td>center</td><td>1</td><td></td></tr> * <tr><td>stretch</td><td>3</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:tabIndicatorGravity */ public static final int TabLayout_tabIndicatorGravity=9; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabIndicatorHeight} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight=10; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabInlineLabel} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabInlineLabel */ public static final int TabLayout_tabInlineLabel=11; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabMaxWidth} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:tabMaxWidth */ public static final int TabLayout_tabMaxWidth=12; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabMinWidth} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:tabMinWidth */ public static final int TabLayout_tabMinWidth=13; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.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>fixed</td><td>1</td><td></td></tr> * <tr><td>scrollable</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:tabMode */ public static final int TabLayout_tabMode=14; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabPadding} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:tabPadding */ public static final int TabLayout_tabPadding=15; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabPaddingBottom} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom=16; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabPaddingEnd} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd=17; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabPaddingStart} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:tabPaddingStart */ public static final int TabLayout_tabPaddingStart=18; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabPaddingTop} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:tabPaddingTop */ public static final int TabLayout_tabPaddingTop=19; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabRippleColor} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabRippleColor */ public static final int TabLayout_tabRippleColor=20; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabSelectedTextColor} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor=21; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabTextAppearance} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabTextAppearance */ public static final int TabLayout_tabTextAppearance=22; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabTextColor} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabTextColor */ public static final int TabLayout_tabTextColor=23; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#tabUnboundedRipple} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:tabUnboundedRipple */ public static final int TabLayout_tabUnboundedRipple=24; /** * Attributes that can be used with a TextAppearance. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_fontFamily com.companyname.katherine_lopez_term_project_v1:fontFamily}</code></td><td>The attribute for the font family.</td></tr> * <tr><td><code>{@link #TextAppearance_textAllCaps com.companyname.katherine_lopez_term_project_v1:textAllCaps}</code></td><td>Present the text in ALL CAPS.</td></tr> * </table> * @see #TextAppearance_android_textSize * @see #TextAppearance_android_typeface * @see #TextAppearance_android_textStyle * @see #TextAppearance_android_textColor * @see #TextAppearance_android_textColorHint * @see #TextAppearance_android_textColorLink * @see #TextAppearance_android_shadowColor * @see #TextAppearance_android_shadowDx * @see #TextAppearance_android_shadowDy * @see #TextAppearance_android_shadowRadius * @see #TextAppearance_android_fontFamily * @see #TextAppearance_fontFamily * @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance={ 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f0300d1, 0x7f030196 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textSize} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:textSize */ public static final int TextAppearance_android_textSize=0; /** * <p>This symbol is the offset where the {@link android.R.attr#typeface} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>monospace</td><td>3</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>sans</td><td>1</td><td></td></tr> * <tr><td>serif</td><td>2</td><td></td></tr> * </table> * * @attr name android:typeface */ public static final int TextAppearance_android_typeface=1; /** * <p>This symbol is the offset where the {@link android.R.attr#textStyle} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bold</td><td>1</td><td></td></tr> * <tr><td>italic</td><td>2</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:textStyle */ public static final int TextAppearance_android_textStyle=2; /** * <p>This symbol is the offset where the {@link android.R.attr#textColor} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColor */ public static final int TextAppearance_android_textColor=3; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorHint} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColorHint */ public static final int TextAppearance_android_textColorHint=4; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorLink} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColorLink */ public static final int TextAppearance_android_textColorLink=5; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowColor} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor=6; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowDx} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx=7; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowDy} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy=8; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius=9; /** * <p>This symbol is the offset where the {@link android.R.attr#fontFamily} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontFamily */ public static final int TextAppearance_android_fontFamily=10; /** * <p> * @attr description * The attribute for the font family. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:fontFamily */ public static final int TextAppearance_fontFamily=11; /** * <p> * @attr description * Present the text in ALL CAPS. This may use a small-caps form when available. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:textAllCaps */ public static final int TextAppearance_textAllCaps=12; /** * 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_textColorHint android:textColorHint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxBackgroundColor com.companyname.katherine_lopez_term_project_v1:boxBackgroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxBackgroundMode com.companyname.katherine_lopez_term_project_v1:boxBackgroundMode}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCollapsedPaddingTop com.companyname.katherine_lopez_term_project_v1:boxCollapsedPaddingTop}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusBottomEnd com.companyname.katherine_lopez_term_project_v1:boxCornerRadiusBottomEnd}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusBottomStart com.companyname.katherine_lopez_term_project_v1:boxCornerRadiusBottomStart}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusTopEnd com.companyname.katherine_lopez_term_project_v1:boxCornerRadiusTopEnd}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusTopStart com.companyname.katherine_lopez_term_project_v1:boxCornerRadiusTopStart}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxStrokeColor com.companyname.katherine_lopez_term_project_v1:boxStrokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxStrokeWidth com.companyname.katherine_lopez_term_project_v1:boxStrokeWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterEnabled com.companyname.katherine_lopez_term_project_v1:counterEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterMaxLength com.companyname.katherine_lopez_term_project_v1:counterMaxLength}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.katherine_lopez_term_project_v1:counterOverflowTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.companyname.katherine_lopez_term_project_v1:counterTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_errorEnabled com.companyname.katherine_lopez_term_project_v1:errorEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.companyname.katherine_lopez_term_project_v1:errorTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_helperText com.companyname.katherine_lopez_term_project_v1:helperText}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_helperTextEnabled com.companyname.katherine_lopez_term_project_v1:helperTextEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_helperTextTextAppearance com.companyname.katherine_lopez_term_project_v1:helperTextTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.companyname.katherine_lopez_term_project_v1:hintAnimationEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintEnabled com.companyname.katherine_lopez_term_project_v1:hintEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.companyname.katherine_lopez_term_project_v1:hintTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.companyname.katherine_lopez_term_project_v1:passwordToggleContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.companyname.katherine_lopez_term_project_v1:passwordToggleDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.companyname.katherine_lopez_term_project_v1:passwordToggleEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleTint com.companyname.katherine_lopez_term_project_v1:passwordToggleTint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.companyname.katherine_lopez_term_project_v1:passwordToggleTintMode}</code></td><td></td></tr> * </table> * @see #TextInputLayout_android_textColorHint * @see #TextInputLayout_android_hint * @see #TextInputLayout_boxBackgroundColor * @see #TextInputLayout_boxBackgroundMode * @see #TextInputLayout_boxCollapsedPaddingTop * @see #TextInputLayout_boxCornerRadiusBottomEnd * @see #TextInputLayout_boxCornerRadiusBottomStart * @see #TextInputLayout_boxCornerRadiusTopEnd * @see #TextInputLayout_boxCornerRadiusTopStart * @see #TextInputLayout_boxStrokeColor * @see #TextInputLayout_boxStrokeWidth * @see #TextInputLayout_counterEnabled * @see #TextInputLayout_counterMaxLength * @see #TextInputLayout_counterOverflowTextAppearance * @see #TextInputLayout_counterTextAppearance * @see #TextInputLayout_errorEnabled * @see #TextInputLayout_errorTextAppearance * @see #TextInputLayout_helperText * @see #TextInputLayout_helperTextEnabled * @see #TextInputLayout_helperTextTextAppearance * @see #TextInputLayout_hintAnimationEnabled * @see #TextInputLayout_hintEnabled * @see #TextInputLayout_hintTextAppearance * @see #TextInputLayout_passwordToggleContentDescription * @see #TextInputLayout_passwordToggleDrawable * @see #TextInputLayout_passwordToggleEnabled * @see #TextInputLayout_passwordToggleTint * @see #TextInputLayout_passwordToggleTintMode */ public static final int[] TextInputLayout={ 0x0101009a, 0x01010150, 0x7f030043, 0x7f030044, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f0300a0, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300b8, 0x7f0300b9, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2, 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f03013d, 0x7f03013e }; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorHint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColorHint */ public static final int TextInputLayout_android_textColorHint=0; /** * <p>This symbol is the offset where the {@link android.R.attr#hint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:hint */ public static final int TextInputLayout_android_hint=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#boxBackgroundColor} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:boxBackgroundColor */ public static final int TextInputLayout_boxBackgroundColor=2; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#boxBackgroundMode} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>filled</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>outline</td><td>2</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:boxBackgroundMode */ public static final int TextInputLayout_boxBackgroundMode=3; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#boxCollapsedPaddingTop} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:boxCollapsedPaddingTop */ public static final int TextInputLayout_boxCollapsedPaddingTop=4; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#boxCornerRadiusBottomEnd} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:boxCornerRadiusBottomEnd */ public static final int TextInputLayout_boxCornerRadiusBottomEnd=5; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#boxCornerRadiusBottomStart} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:boxCornerRadiusBottomStart */ public static final int TextInputLayout_boxCornerRadiusBottomStart=6; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#boxCornerRadiusTopEnd} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:boxCornerRadiusTopEnd */ public static final int TextInputLayout_boxCornerRadiusTopEnd=7; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#boxCornerRadiusTopStart} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:boxCornerRadiusTopStart */ public static final int TextInputLayout_boxCornerRadiusTopStart=8; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#boxStrokeColor} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:boxStrokeColor */ public static final int TextInputLayout_boxStrokeColor=9; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#boxStrokeWidth} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:boxStrokeWidth */ public static final int TextInputLayout_boxStrokeWidth=10; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#counterEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:counterEnabled */ public static final int TextInputLayout_counterEnabled=11; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#counterMaxLength} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:counterMaxLength */ public static final int TextInputLayout_counterMaxLength=12; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#counterOverflowTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance=13; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#counterTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance=14; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#errorEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:errorEnabled */ public static final int TextInputLayout_errorEnabled=15; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#errorTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance=16; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#helperText} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:helperText */ public static final int TextInputLayout_helperText=17; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#helperTextEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:helperTextEnabled */ public static final int TextInputLayout_helperTextEnabled=18; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#helperTextTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:helperTextTextAppearance */ public static final int TextInputLayout_helperTextTextAppearance=19; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#hintAnimationEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled=20; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#hintEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:hintEnabled */ public static final int TextInputLayout_hintEnabled=21; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#hintTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance=22; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#passwordToggleContentDescription} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription=23; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#passwordToggleDrawable} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable=24; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#passwordToggleEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled=25; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#passwordToggleTint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint=26; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#passwordToggleTintMode} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:passwordToggleTintMode */ public static final int TextInputLayout_passwordToggleTintMode=27; /** * Attributes that can be used with a ThemeEnforcement. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ThemeEnforcement_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #ThemeEnforcement_enforceMaterialTheme com.companyname.katherine_lopez_term_project_v1:enforceMaterialTheme}</code></td><td></td></tr> * <tr><td><code>{@link #ThemeEnforcement_enforceTextAppearance com.companyname.katherine_lopez_term_project_v1:enforceTextAppearance}</code></td><td></td></tr> * </table> * @see #ThemeEnforcement_android_textAppearance * @see #ThemeEnforcement_enforceMaterialTheme * @see #ThemeEnforcement_enforceTextAppearance */ public static final int[] ThemeEnforcement={ 0x01010034, 0x7f0300b6, 0x7f0300b7 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #ThemeEnforcement} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int ThemeEnforcement_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#enforceMaterialTheme} * attribute's value can be found in the {@link #ThemeEnforcement} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:enforceMaterialTheme */ public static final int ThemeEnforcement_enforceMaterialTheme=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#enforceTextAppearance} * attribute's value can be found in the {@link #ThemeEnforcement} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:enforceTextAppearance */ public static final int ThemeEnforcement_enforceTextAppearance=2; /** * Attributes that can be used with a Toolbar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_buttonGravity com.companyname.katherine_lopez_term_project_v1:buttonGravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseContentDescription com.companyname.katherine_lopez_term_project_v1:collapseContentDescription}</code></td><td>Text to set as the content description for the collapse button.</td></tr> * <tr><td><code>{@link #Toolbar_collapseIcon com.companyname.katherine_lopez_term_project_v1:collapseIcon}</code></td><td>Icon drawable to use for the collapse button.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEnd com.companyname.katherine_lopez_term_project_v1:contentInsetEnd}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.companyname.katherine_lopez_term_project_v1:contentInsetEndWithActions}</code></td><td>Minimum inset for content views within a bar when actions from a menu * are present.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetLeft com.companyname.katherine_lopez_term_project_v1:contentInsetLeft}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetRight com.companyname.katherine_lopez_term_project_v1:contentInsetRight}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStart com.companyname.katherine_lopez_term_project_v1:contentInsetStart}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.companyname.katherine_lopez_term_project_v1:contentInsetStartWithNavigation}</code></td><td>Minimum inset for content views within a bar when a navigation button * is present, such as the Up button.</td></tr> * <tr><td><code>{@link #Toolbar_logo com.companyname.katherine_lopez_term_project_v1:logo}</code></td><td>Specifies the drawable used for the application logo.</td></tr> * <tr><td><code>{@link #Toolbar_logoDescription com.companyname.katherine_lopez_term_project_v1:logoDescription}</code></td><td>A content description string to describe the appearance of the * associated logo image.</td></tr> * <tr><td><code>{@link #Toolbar_maxButtonHeight com.companyname.katherine_lopez_term_project_v1:maxButtonHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationContentDescription com.companyname.katherine_lopez_term_project_v1:navigationContentDescription}</code></td><td>Text to set as the content description for the navigation button * located at the start of the toolbar.</td></tr> * <tr><td><code>{@link #Toolbar_navigationIcon com.companyname.katherine_lopez_term_project_v1:navigationIcon}</code></td><td>Icon drawable to use for the navigation button located at * the start of the toolbar.</td></tr> * <tr><td><code>{@link #Toolbar_popupTheme com.companyname.katherine_lopez_term_project_v1:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #Toolbar_subtitle com.companyname.katherine_lopez_term_project_v1:subtitle}</code></td><td>Specifies subtitle text used for navigationMode="normal"</td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.companyname.katherine_lopez_term_project_v1:subtitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextColor com.companyname.katherine_lopez_term_project_v1:subtitleTextColor}</code></td><td>A color to apply to the subtitle string.</td></tr> * <tr><td><code>{@link #Toolbar_title com.companyname.katherine_lopez_term_project_v1:title}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargin com.companyname.katherine_lopez_term_project_v1:titleMargin}</code></td><td>Specifies extra space on the left, start, right and end sides * of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginBottom com.companyname.katherine_lopez_term_project_v1:titleMarginBottom}</code></td><td>Specifies extra space on the bottom side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginEnd com.companyname.katherine_lopez_term_project_v1:titleMarginEnd}</code></td><td>Specifies extra space on the end side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginStart com.companyname.katherine_lopez_term_project_v1:titleMarginStart}</code></td><td>Specifies extra space on the start side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginTop com.companyname.katherine_lopez_term_project_v1:titleMarginTop}</code></td><td>Specifies extra space on the top side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMargins com.companyname.katherine_lopez_term_project_v1:titleMargins}</code></td><td>{@deprecated Use titleMargin}</td></tr> * <tr><td><code>{@link #Toolbar_titleTextAppearance com.companyname.katherine_lopez_term_project_v1:titleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextColor com.companyname.katherine_lopez_term_project_v1:titleTextColor}</code></td><td>A color to apply to the title string.</td></tr> * </table> * @see #Toolbar_android_gravity * @see #Toolbar_android_minHeight * @see #Toolbar_buttonGravity * @see #Toolbar_collapseContentDescription * @see #Toolbar_collapseIcon * @see #Toolbar_contentInsetEnd * @see #Toolbar_contentInsetEndWithActions * @see #Toolbar_contentInsetLeft * @see #Toolbar_contentInsetRight * @see #Toolbar_contentInsetStart * @see #Toolbar_contentInsetStartWithNavigation * @see #Toolbar_logo * @see #Toolbar_logoDescription * @see #Toolbar_maxButtonHeight * @see #Toolbar_navigationContentDescription * @see #Toolbar_navigationIcon * @see #Toolbar_popupTheme * @see #Toolbar_subtitle * @see #Toolbar_subtitleTextAppearance * @see #Toolbar_subtitleTextColor * @see #Toolbar_title * @see #Toolbar_titleMargin * @see #Toolbar_titleMarginBottom * @see #Toolbar_titleMarginEnd * @see #Toolbar_titleMarginStart * @see #Toolbar_titleMarginTop * @see #Toolbar_titleMargins * @see #Toolbar_titleTextAppearance * @see #Toolbar_titleTextColor */ @Deprecated public static final int[] Toolbar={ 0x010100af, 0x01010140, 0x7f030051, 0x7f03007f, 0x7f030080, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030123, 0x7f030124, 0x7f030128, 0x7f03012d, 0x7f03012e, 0x7f030140, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f0301bb, 0x7f0301bd, 0x7f0301be, 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4 }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * attribute's value can be found in the {@link #Toolbar} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:gravity */ public static final int Toolbar_android_gravity=0; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minHeight */ public static final int Toolbar_android_minHeight=1; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#buttonGravity} * attribute's value can be found in the {@link #Toolbar} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:buttonGravity */ public static final int Toolbar_buttonGravity=2; /** * <p> * @attr description * Text to set as the content description for the collapse button. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:collapseContentDescription */ public static final int Toolbar_collapseContentDescription=3; /** * <p> * @attr description * Icon drawable to use for the collapse button. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:collapseIcon */ public static final int Toolbar_collapseIcon=4; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetEnd */ public static final int Toolbar_contentInsetEnd=5; /** * <p> * @attr description * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions=6; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetLeft */ public static final int Toolbar_contentInsetLeft=7; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetRight */ public static final int Toolbar_contentInsetRight=8; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetStart */ public static final int Toolbar_contentInsetStart=9; /** * <p> * @attr description * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation=10; /** * <p> * @attr description * Drawable to set as the logo that appears at the starting side of * the Toolbar, just after the navigation button. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:logo */ public static final int Toolbar_logo=11; /** * <p> * @attr description * A content description string to describe the appearance of the * associated logo image. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:logoDescription */ public static final int Toolbar_logoDescription=12; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#maxButtonHeight} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:maxButtonHeight */ public static final int Toolbar_maxButtonHeight=13; /** * <p> * @attr description * Text to set as the content description for the navigation button * located at the start of the toolbar. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:navigationContentDescription */ public static final int Toolbar_navigationContentDescription=14; /** * <p> * @attr description * Icon drawable to use for the navigation button located at * the start of the toolbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:navigationIcon */ public static final int Toolbar_navigationIcon=15; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the toolbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:popupTheme */ public static final int Toolbar_popupTheme=16; /** * <p> * @attr description * Specifies subtitle text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:subtitle */ public static final int Toolbar_subtitle=17; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#subtitleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance=18; /** * <p> * @attr description * A color to apply to the subtitle string. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:subtitleTextColor */ public static final int Toolbar_subtitleTextColor=19; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#title} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.katherine_lopez_term_project_v1:title */ public static final int Toolbar_title=20; /** * <p> * @attr description * Specifies extra space on the left, start, right and end sides * of the toolbar's title. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:titleMargin */ public static final int Toolbar_titleMargin=21; /** * <p> * @attr description * Specifies extra space on the bottom side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:titleMarginBottom */ public static final int Toolbar_titleMarginBottom=22; /** * <p> * @attr description * Specifies extra space on the end side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:titleMarginEnd */ public static final int Toolbar_titleMarginEnd=23; /** * <p> * @attr description * Specifies extra space on the start side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:titleMarginStart */ public static final int Toolbar_titleMarginStart=24; /** * <p> * @attr description * Specifies extra space on the top side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:titleMarginTop */ public static final int Toolbar_titleMarginTop=25; /** * <p> * @attr description * {@deprecated Use titleMargin} * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:titleMargins */ @Deprecated public static final int Toolbar_titleMargins=26; /** * <p>This symbol is the offset where the {@link com.companyname.katherine_lopez_term_project_v1.R.attr#titleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:titleTextAppearance */ public static final int Toolbar_titleTextAppearance=27; /** * <p> * @attr description * A color to apply to the title string. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:titleTextColor */ public static final int Toolbar_titleTextColor=28; /** * Attributes that can be used with a View. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> * <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> * <tr><td><code>{@link #View_paddingEnd com.companyname.katherine_lopez_term_project_v1:paddingEnd}</code></td><td>Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr> * <tr><td><code>{@link #View_paddingStart com.companyname.katherine_lopez_term_project_v1:paddingStart}</code></td><td>Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr> * <tr><td><code>{@link #View_theme com.companyname.katherine_lopez_term_project_v1:theme}</code></td><td>Deprecated.</td></tr> * </table> * @see #View_android_theme * @see #View_android_focusable * @see #View_paddingEnd * @see #View_paddingStart * @see #View_theme */ public static final int[] View={ 0x01010000, 0x010100da, 0x7f030134, 0x7f030135, 0x7f0301b1 }; /** * <p> * @attr description * Specifies a theme override for a view. When a theme override is set, the * view will be inflated using a {@link android.content.Context} themed with * the specified resource. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:theme */ public static final int View_android_theme=0; /** * <p> * @attr description * Boolean that controls whether a view can take focus. By default the user can not * move focus to a view; by setting this attribute to true the view is * allowed to take focus. This value does not impact the behavior of * directly calling {@link android.view.View#requestFocus}, which will * always request focus regardless of this view. It only impacts where * focus navigation will try to move focus. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>10</td><td></td></tr> * </table> * * @attr name android:focusable */ public static final int View_android_focusable=1; /** * <p> * @attr description * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:paddingEnd */ public static final int View_paddingEnd=2; /** * <p> * @attr description * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.katherine_lopez_term_project_v1:paddingStart */ public static final int View_paddingStart=3; /** * <p> * @attr description * Deprecated. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:theme */ public static final int View_theme=4; /** * Attributes that can be used with a ViewBackgroundHelper. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.companyname.katherine_lopez_term_project_v1:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.katherine_lopez_term_project_v1:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr> * </table> * @see #ViewBackgroundHelper_android_background * @see #ViewBackgroundHelper_backgroundTint * @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper={ 0x010100d4, 0x7f030034, 0x7f030035 }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #ViewBackgroundHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:background */ public static final int ViewBackgroundHelper_android_background=0; /** * <p> * @attr description * Tint to apply to the background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.katherine_lopez_term_project_v1:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint=1; /** * <p> * @attr description * Blending mode used to apply the background tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawableโ€™s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawableโ€™s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.katherine_lopez_term_project_v1:backgroundTintMode */ public static final int ViewBackgroundHelper_backgroundTintMode=2; /** * Attributes that can be used with a ViewStubCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> * </table> * @see #ViewStubCompat_android_id * @see #ViewStubCompat_android_layout * @see #ViewStubCompat_android_inflatedId */ public static final int[] ViewStubCompat={ 0x010100d0, 0x010100f2, 0x010100f3 }; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #ViewStubCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int ViewStubCompat_android_id=0; /** * <p> * @attr description * Supply an identifier for the layout resource to inflate when the ViewStub * becomes visible or when forced to do so. The layout resource must be a * valid reference to a layout. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int ViewStubCompat_android_layout=1; /** * <p> * @attr description * Overrides the id of the inflated View with this value. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId=2; } public static final class xml { public static final int xamarin_essentials_fileprovider_file_paths=0x7f100000; } }
[ "55301960+Akashdeep6011@users.noreply.github.com" ]
55301960+Akashdeep6011@users.noreply.github.com
ed5f06feeea809b88110d411181940cfd97f6555
552fddec392fd98888111ce58713b66c2539ff5a
/br/com/alura/comparators/NumeroDaContaComparator.java
cf06bcf7d8272dd886c10ba71204ee75c8d18b91
[]
no_license
fsardim/java-alura
18edb22c737393c826f77ac20ae3fe5bbbdec16b
5071f4b040f2c2aa8cac88f3e4bbce25269e6515
refs/heads/master
2023-07-01T03:31:53.910284
2021-07-25T18:34:21
2021-07-25T18:34:21
389,412,564
0
0
null
null
null
null
ISO-8859-1
Java
false
false
679
java
package br.com.alura.comparators; import java.util.Comparator; import br.com.alura.conta.Conta; /** * @author Felipe Sardim * @version 1.0.0 * Classe com sobrecarga do mรฉtodo compare, da interface Comparator, por meio do nรบmero da conta */ public class NumeroDaContaComparator implements Comparator<Conta> { @Override public int compare(Conta c1, Conta c2) { return Integer.compare(c1.getNumero(), c2.getNumero()); } } // Implementaรงรฃo 1 // if(c1.getNumero() < c2.getNumero()) { // return -1; // } // // if(c1.getNumero() > c2.getNumero()) { // return 1; // } // // return 0; // // Implementaรงรฃo 2 // return c1.getNumero() - c2.getNumero();
[ "felipesardim@gmail.com" ]
felipesardim@gmail.com
80bbec4926691ee4676defab73db2acb8715cbf0
c4d89bf55f44db0edf08fb5686f2b8295ee0a008
/BanqueUserProject/BanqueUserSpringWeb/src/main/java/com/exakaconsulting/exabanque/service/JsonResultListExaAccountOperation.java
49f183f5b1e440139943dc773114e056f39fd4f7
[]
no_license
kagzouli/BanqueUserProject
048ee63eb28260920afd14c03f48923d814064d2
6bf5fb97c57da1c4686123f3efc6ec78f91e7f4e
refs/heads/master
2021-09-08T04:28:53.519815
2018-03-06T23:30:31
2018-03-06T23:30:31
108,583,537
1
0
null
null
null
null
UTF-8
Java
false
false
257
java
package com.exakaconsulting.exabanque.service; import java.util.List; public class JsonResultListExaAccountOperation extends JsonResult<List<ExaAccountOperationBean>>{ /** * */ private static final long serialVersionUID = 1034060703203703948L; }
[ "kagzouli@yahoo.fr" ]
kagzouli@yahoo.fr
251f46060e1ec679dfd384f02be8785b65745d88
a8419da66f68b3ae0622c89ef79fde81e8a0b1dc
/ServletAndJSPDemo/src/main/java/com/demo/servlet/SqServletSendReDirectDemo.java
970d50a3b7b9768f02b133754c6ea28a71d2a826
[]
no_license
Chaudhary-Sonu/ServletAndJspDemo
70a1180e15edb5d16753cd794908bc7d99f0f25d
9c67b241b02299154112b747ad4212ba2bf9636c
refs/heads/master
2023-07-17T09:48:46.970616
2021-08-24T08:30:45
2021-08-24T08:30:45
399,388,942
0
0
null
null
null
null
UTF-8
Java
false
false
1,618
java
package com.demo.servlet; import java.io.IOException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; @WebServlet("/SqServReDdemo") public class SqServletSendReDirectDemo extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse res) throws IOException { int sq = 0; /* EXAMPLE of URL-ReWriting -> * we have passed the value by writing it as part of URL and here we're extracting it from the URl sq = Integer.parseInt(req.getParameter("k")); */ /* EXAMPLE of SESSION -> * passing the value through a session HttpSession session = req.getSession(); sq = (int) session.getAttribute("k"); */ //EXAMPLE OF COOKIES //in request we have a method getCookies instead of a single cookie, because there can be many cookies in the request. So, we'll get all the cookies //in an array of cookies. Cookie cookie[] = req.getCookies(); //now to get our data we'll be using a loop to get the data we have added to the cookie for(Cookie c : cookie) { if(c.getName().equals("k")) { sq = Integer.parseInt(c.getValue()); } } sq *= sq; //res.getWriter().print("The response in case of SendReDirect by URL Rewriting is : " + sq); //res.getWriter().print("The response in case of SendReDirect using SESSION is : " + sq); res.getWriter().print("The response in case of SendReDirect using COOKIES is : " + sq); } }
[ "chaudharysonu2808@gmail.com" ]
chaudharysonu2808@gmail.com
fdfad04784fb17c21b6daa5be721fbd55ea04538
6f161139145cf17f20a7441fe1801e061f7d770e
/src/main/java/com/framework/utility/JavaScriptHelper.java
967ec82a9c57a92c765eca857f0ee0859e7f2a78
[]
no_license
MonuKumar-reisysin/ComponentTestScripts
52aa0a0bd88856d756b304dfccb88fb10907a0e7
7573dfdb2a3eca7bdc53d447e459f0ea314a36b4
refs/heads/master
2021-01-25T11:39:27.783921
2018-05-31T09:08:15
2018-05-31T09:08:15
123,389,055
0
0
null
null
null
null
UTF-8
Java
false
false
2,076
java
package com.framework.utility; import org.apache.log4j.Logger; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import com.framework.Logger.LoggerHelper; public class JavaScriptHelper { private WebDriver driver; private Logger Log = LoggerHelper.getLogger(JavaScriptHelper.class); public JavaScriptHelper(WebDriver driver) { this.driver = driver; Log.debug("JavaScriptHelper : " + this.driver.hashCode()); } public Object executeScript(String script) { JavascriptExecutor exe = (JavascriptExecutor) driver; Log.info(script); return exe.executeScript(script); } public Object executeScript(String script, Object... args) { JavascriptExecutor exe = (JavascriptExecutor) driver; Log.info(script); return exe.executeScript(script, args); } public void scrollToElement(WebElement element) { executeScript("window.scrollTo(arguments[0],arguments[1])", element.getLocation().x, element.getLocation().y); Log.info(element); } public void scrollToElemetAndClick(WebElement element) { scrollToElement(element); element.click(); Log.info(element); } public void scrollIntoView(WebElement element) { executeScript("arguments[0].scrollIntoView()", element); Log.info(element); } public void scrollIntoViewAndClick(WebElement element) { scrollIntoView(element); element.click(); Log.info(element); } public void scrollDownVertically() { executeScript("window.scrollTo(0, document.body.scrollHeight)"); } public void scrollUpVertically() { executeScript("window.scrollTo(0, -document.body.scrollHeight)"); } public void scrollDownByPixel() { executeScript("window.scrollBy(0,1500)"); } public void scrollUpByPixel() { executeScript("window.scrollBy(0,-1500)"); } public void ZoomInBypercentage() { executeScript("document.body.style.zoom='40%'"); } public void ZoomBy100percentage() { executeScript("document.body.style.zoom='100%'"); } }
[ "monu.kumar@reisystems.in" ]
monu.kumar@reisystems.in
e9b5c42ad173edc1bd5e9a75427480b05f78d42d
560fa55e52e1ca58a248cb2273ac3e60aaf8a722
/java/src/main/java/com/rogue/algorithms/shortestpath/Node.java
f73dc48444cb375578c5f98f9be10848c0521cc0
[]
no_license
ChaseSnapshot/algorithms
d42b68bd2c38afad277e8dff62ca487ba1739785
0595e59f82183961ddcaf65a162fb8a734996e14
refs/heads/master
2021-01-23T12:10:50.390956
2014-05-05T19:47:27
2014-05-05T19:47:27
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,157
java
package com.rogue.algorithms.shortestpath; import static com.google.common.base.Preconditions.*; import java.util.HashMap; import java.util.Map; import java.util.Objects; /** * Represents a node in a graph. * * @author R. Matt McCann */ public class Node<LabelType> { private Map<Node<LabelType>, Integer> adjacencies = new HashMap(); private LabelType label; @Override public boolean equals(Object comparee) { if (!(comparee instanceof Node)) { return false; } Node node = (Node) comparee; return Objects.equals(label, node.label); } public Map<Node<LabelType>, Integer> getAdjacencies() { return adjacencies; } public LabelType getLabel() { return label; } @Override public int hashCode() { return Objects.hashCode(label); } public void setAdjacencies(Map<Node<LabelType>, Integer> adjacencies) { this.adjacencies = checkNotNull(adjacencies); } public void setLabel(LabelType label) { this.label = checkNotNull(label); } @Override public String toString() { return label.toString(); } }
[ "mccann.matt@gmail.com" ]
mccann.matt@gmail.com
7095808aa836e2262a8cf1c0b0eee1e6b82b44e0
96a0aaea05f39f4c2b970d7f30a55270c5b5171f
/src/main/java/org/codelibs/elasticsearch/common/xcontent/AbstractObjectParser.java
c19727af64023836348d0a5cc97fec210f501863
[]
no_license
codelibs/elasticsearch-querybuilders
88554ba10e694a0b4418b1045d64fe9f3c31c0aa
4fe5687e2aead4f02adb0ecf2c85288f40ec1f15
refs/heads/master
2023-03-22T04:36:41.422859
2017-09-14T13:07:55
2017-09-14T13:07:55
82,253,963
9
10
null
2017-03-22T12:36:54
2017-02-17T03:39:10
Java
UTF-8
Java
false
false
6,922
java
/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.codelibs.elasticsearch.common.xcontent; import org.codelibs.elasticsearch.common.ParseField; import org.codelibs.elasticsearch.common.ParseFieldMatcherSupplier; import org.codelibs.elasticsearch.common.bytes.BytesReference; import org.codelibs.elasticsearch.common.xcontent.ObjectParser.ValueType; import org.codelibs.elasticsearch.common.xcontent.json.JsonXContent; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.function.BiConsumer; import java.util.function.BiFunction; /** * Superclass for {ObjectParser} and {ConstructingObjectParser}. Defines most of the "declare" methods so they can be shared. */ public abstract class AbstractObjectParser<Value, Context extends ParseFieldMatcherSupplier> implements BiFunction<XContentParser, Context, Value>, ContextParser<Context, Value> { /** * Reads an object right from the parser without any context. */ @FunctionalInterface public interface NoContextParser<T> { T parse(XContentParser p) throws IOException; } /** * Declare some field. Usually it is easier to use {#declareString(BiConsumer, ParseField)} or * {#declareObject(BiConsumer, ContextParser, ParseField)} rather than call this directly. */ public abstract <T> void declareField(BiConsumer<Value, T> consumer, ContextParser<Context, T> parser, ParseField parseField, ValueType type); public <T> void declareField(BiConsumer<Value, T> consumer, NoContextParser<T> parser, ParseField parseField, ValueType type) { if (parser == null) { throw new IllegalArgumentException("[parser] is required"); } declareField(consumer, (p, c) -> parser.parse(p), parseField, type); } public <T> void declareObject(BiConsumer<Value, T> consumer, ContextParser<Context, T> objectParser, ParseField field) { declareField(consumer, (p, c) -> objectParser.parse(p, c), field, ValueType.OBJECT); } public void declareFloat(BiConsumer<Value, Float> consumer, ParseField field) { // Using a method reference here angers some compilers declareField(consumer, p -> p.floatValue(), field, ValueType.FLOAT); } public void declareDouble(BiConsumer<Value, Double> consumer, ParseField field) { // Using a method reference here angers some compilers declareField(consumer, p -> p.doubleValue(), field, ValueType.DOUBLE); } public void declareLong(BiConsumer<Value, Long> consumer, ParseField field) { // Using a method reference here angers some compilers declareField(consumer, p -> p.longValue(), field, ValueType.LONG); } public void declareInt(BiConsumer<Value, Integer> consumer, ParseField field) { // Using a method reference here angers some compilers declareField(consumer, p -> p.intValue(), field, ValueType.INT); } public void declareString(BiConsumer<Value, String> consumer, ParseField field) { declareField(consumer, XContentParser::text, field, ValueType.STRING); } public void declareStringOrNull(BiConsumer<Value, String> consumer, ParseField field) { declareField(consumer, (p) -> p.currentToken() == XContentParser.Token.VALUE_NULL ? null : p.text(), field, ValueType.STRING_OR_NULL); } public void declareBoolean(BiConsumer<Value, Boolean> consumer, ParseField field) { declareField(consumer, XContentParser::booleanValue, field, ValueType.BOOLEAN); } public <T> void declareObjectArray(BiConsumer<Value, List<T>> consumer, ContextParser<Context, T> objectParser, ParseField field) { declareField(consumer, (p, c) -> parseArray(p, () -> objectParser.parse(p, c)), field, ValueType.OBJECT_ARRAY); } public void declareStringArray(BiConsumer<Value, List<String>> consumer, ParseField field) { declareField(consumer, (p, c) -> parseArray(p, p::text), field, ValueType.STRING_ARRAY); } public void declareDoubleArray(BiConsumer<Value, List<Double>> consumer, ParseField field) { declareField(consumer, (p, c) -> parseArray(p, p::doubleValue), field, ValueType.DOUBLE_ARRAY); } public void declareFloatArray(BiConsumer<Value, List<Float>> consumer, ParseField field) { declareField(consumer, (p, c) -> parseArray(p, p::floatValue), field, ValueType.FLOAT_ARRAY); } public void declareLongArray(BiConsumer<Value, List<Long>> consumer, ParseField field) { declareField(consumer, (p, c) -> parseArray(p, p::longValue), field, ValueType.LONG_ARRAY); } public void declareIntArray(BiConsumer<Value, List<Integer>> consumer, ParseField field) { declareField(consumer, (p, c) -> parseArray(p, p::intValue), field, ValueType.INT_ARRAY); } public void declareRawObject(BiConsumer<Value, BytesReference> consumer, ParseField field) { NoContextParser<BytesReference> bytesParser = p -> { try (XContentBuilder builder = JsonXContent.contentBuilder()) { builder.prettyPrint(); builder.copyCurrentStructure(p); return builder.bytes(); } }; declareField(consumer, bytesParser, field, ValueType.OBJECT); } private interface IOSupplier<T> { T get() throws IOException; } private static <T> List<T> parseArray(XContentParser parser, IOSupplier<T> supplier) throws IOException { List<T> list = new ArrayList<>(); if (parser.currentToken().isValue() || parser.currentToken() == XContentParser.Token.START_OBJECT) { list.add(supplier.get()); // single value } else { while (parser.nextToken() != XContentParser.Token.END_ARRAY) { if (parser.currentToken().isValue() || parser.currentToken() == XContentParser.Token.START_OBJECT) { list.add(supplier.get()); } else { throw new IllegalStateException("expected value but got [" + parser.currentToken() + "]"); } } } return list; } }
[ "shinsuke@yahoo.co.jp" ]
shinsuke@yahoo.co.jp
4523caaf3ee629a9d1b070aa6849da738ac5b9d6
e104e47fc7f2fea53d534223117296c54019d8c5
/app/src/androidTest/java/com/blucrm/navigationdrawer/ApplicationTest.java
fb9f39160e2be26902dd908331fdcce7baa44148
[]
no_license
lachigno/colori
b09d27754dcda16d045762d977f212c6a3cfd81a
7dc543cf2cc75d8247d32413c5fe4fe14e56a41f
refs/heads/master
2016-09-13T11:35:05.686553
2016-05-31T20:28:32
2016-05-31T20:28:32
59,668,428
0
0
null
null
null
null
UTF-8
Java
false
false
358
java
package com.blucrm.navigationdrawer; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { super(Application.class); } }
[ "lachigno@gmail.com" ]
lachigno@gmail.com
082b8f6d7ecdfa6166914ab12110b7e069907ad4
31902f77d3dc9c256daaf34b0b8616338e330e8b
/OnlineBusBookingSystem/src/data/persist/file/FileDistanceHandler.java
f1081e902e075c86cbb9e42f4626e6262e8a02a6
[]
no_license
ashwinipawale/onlineBusBooking
ea7ad97b72c4ff815a4fe570b4115bfa4fb8902c
845c087723dda8bb10e7a1d4b2eee41422e1cdae
refs/heads/master
2020-05-09T18:17:40.839008
2019-04-14T16:38:23
2019-04-14T16:38:23
181,334,683
0
0
null
null
null
null
UTF-8
Java
false
false
1,302
java
package data.persist.file; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Arrays; import java.util.List; import java.util.Map; import java.util.Map.Entry; import java.util.Set; import java.util.stream.Collectors; import data.City; import data.persist.DistanceHandler; import ui.reservation.TravelOptionModel; public class FileDistanceHandler implements DistanceHandler{ String FILE = "C:\\Users\\rajar\\workspace\\OnlineBusBookingSystem\\resources\\distanceBetweenCities.txt"; public void initialize(){ } public double getDistance(String sourceCity, String destCity) { try(BufferedReader reader = new BufferedReader(new FileReader(new File(FILE)))){ String line; while ((line = reader.readLine()) != null) { String[] lineSplit = line.split("#"); if(lineSplit[0].equalsIgnoreCase(sourceCity) && lineSplit[1].equalsIgnoreCase(destCity)){ return Double.parseDouble(lineSplit[2]); } } } catch (IOException e) { e.printStackTrace(); } return 0.0; } } class FileDistanceHandlerTest{ public static void main(String args[]){ System.out.println(new FileDistanceHandler().getDistance("Mumbai", "Delhi")); } }
[ "ashwinipawale87@gmail.com" ]
ashwinipawale87@gmail.com
01200ee33d2db7ee8520fbdfc160904223f66a72
8d044e1d27fd1f1935f198b9544ee75b32ddbf47
/src/main/java/com/epb/ah/SecurityConfigResourceServer.java
f6304cca143b8f11ca61871565070f3e9e7d04f7
[]
no_license
stonezealot/ah-ws
8d20cc30a9074fea584e3d80cf056c594c7dbced
7ad92a6d712fbd8ebbb6d9dea01022ea9979419d
refs/heads/master
2021-07-06T02:29:10.724273
2019-05-29T15:20:00
2019-05-29T15:20:00
180,530,362
0
0
null
null
null
null
UTF-8
Java
false
false
1,058
java
package com.epb.ah; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Profile; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer; import org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfigurerAdapter; @Profile("oauth") @Configuration @EnableResourceServer public class SecurityConfigResourceServer extends ResourceServerConfigurerAdapter { // // overridden // @Override public void configure(final HttpSecurity http) throws Exception { // customization http .cors() // insert CORS filter first .and() .authorizeRequests() .antMatchers( "/actuator/info", // always allow actuator info "/api/images/*", // always allow getting images (redirection) "/api/files/*") // temporary solution for getting files .permitAll(); // default behaviors super.configure(http); } }
[ "35825821+stonezealot@users.noreply.github.com" ]
35825821+stonezealot@users.noreply.github.com
2d618b1d4d9b193ae6f917af5c0e7ebdebd6bd8f
e23c0287d628ec77fb8b8b9ce4234ec44152ecea
/src/basics/factorial.java
3a4ef71412bc371b5d06926da84847aa7fc78167
[]
no_license
Gcostagliola/javaCourse
d88486abe89827758a097748cb1c324cfcbf6dff
c6af40f2fa5024e7107101cc77437339bc91cb1a
refs/heads/master
2021-08-22T09:34:40.115902
2017-11-29T21:53:12
2017-11-29T21:53:12
112,482,581
0
0
null
null
null
null
UTF-8
Java
false
false
309
java
package basics; public class factorial { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println(fact(4)); } public static int fact(int f){ if ( f == 0 ){ return 1; } else if ( f == 1 ) { return 1; } else { return (f * fact(f-1) ); } } }
[ "thecostag@gmail.com" ]
thecostag@gmail.com
8a861f273162ba4fb9c42e9428b23f98b5246086
6cbcc22b3b980859e54ec3507c4dafedc453f657
/src/main/java/com/qa/menu/Menu.java
d743d0029974f631e51eef7faffc46d7a3cb1113
[]
no_license
pillepaal/RepoGarage
1c245ded1c4b0ef09ead16abdea550931fd723d3
b4b8596580ed8946849dd955612a1e10af921644
refs/heads/main
2023-08-30T11:15:30.991293
2021-11-15T11:48:20
2021-11-15T11:48:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,609
java
package com.qa.menu; import com.qa.controllers.CarController; import com.qa.controllers.GarageController; import com.qa.controllers.TruckController; import com.qa.dao.CarDAO; import com.qa.dao.TruckDAO; import com.qa.utils.UserInput; public class Menu { UserInput input = UserInput.getInstance(); GarageController<?> active; CarController carController; TruckController truckController; public Menu() { CarDAO carDAO = new CarDAO(); TruckDAO truckDAO = new TruckDAO(); carController = new CarController(carDAO); truckController = new TruckController(truckDAO); } public void start() { boolean exit = false; do { System.out.println("1) Car"); System.out.println("2) Truck"); System.out.println("3) Exit"); int selection = input.getInt(); switch (selection) { case 1: active = carController; action(); break; case 2: active = truckController; System.out.println("Unimplemented"); action(); break; case 3: exit = true; } } while (!exit); } public void action() { boolean back = false; do { System.out.println("what do you want to do?"); System.out.println("1) Create"); System.out.println("2) Delete"); System.out.println("3) Read All"); System.out.println("4) Update"); System.out.println("5) Return"); int selection = input.getInt(); switch (selection) { case 1: active.create(); break; case 2: active.delete(); break; case 3: active.readAll(); break; case 4: active.update(); break; case 5: back = true; } } while (!back); } }
[ "Kochab.96@gmail.com" ]
Kochab.96@gmail.com
239f7b163bedcf9e99cb021d9b3ba8a6445203b2
9bc8bcdd68be81f93b62665bec21afe59beeed76
/src/main/java/com/spring/controller/ExceptionController.java
f16edfb30c705c747a3399131d59ace0fd0b9b57
[]
no_license
sarita2505/order-item-app1
452456bfa5ca677b04b21582530c065bec2fbacb
37befb4a5667d2edf856a83bc7d43671a52887d1
refs/heads/master
2022-11-12T11:50:04.182606
2020-07-09T14:49:30
2020-07-09T14:49:30
278,392,168
0
0
null
null
null
null
UTF-8
Java
false
false
1,005
java
package com.spring.controller; import com.spring.exception.OrderItemException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; @ControllerAdvice public class ExceptionController { private static final Logger LOGGER = LoggerFactory.getLogger(ExceptionController.class); @ExceptionHandler public static ResponseEntity<Object> exception(Exception e){ LOGGER.error(e.toString(),e); return new ResponseEntity<>("exception occured", HttpStatus.NO_CONTENT); } @ExceptionHandler public static ResponseEntity<Object>orderdataException(OrderItemException orderItemException){ LOGGER.error(orderItemException.toString(),orderItemException); return new ResponseEntity<>("customer data not found",HttpStatus.NOT_FOUND); } }
[ "sourabha.patra@in.ibm.com" ]
sourabha.patra@in.ibm.com
0cde561cc0eafffffabb22cfc6388a27046b5c75
47cedf3fd4893790dd93a1fe52e9883580b6632f
/src/client/engine/renderPrimitives/Shape.java
1732985b6409c8911a278a13cdbc40f10d4dbd1b
[]
no_license
Pixelatory/Village
fba82c72a181debeed2e7249f1a695b2c62cedbb
cdac3389432fe532240b9c1a55e710432ed1472c
refs/heads/master
2023-05-30T06:59:59.104187
2021-06-18T02:45:31
2021-06-18T02:45:31
246,423,699
0
0
null
null
null
null
UTF-8
Java
false
false
2,824
java
package client.engine.renderPrimitives; import java.awt.*; /** * Class which encompasses everything a Shape object will need. * * @author 6177000 */ class Shape { private int x,y,width,height,radius; private Color colour; private boolean isVisible = true; public Shape(int x, int y, int width, int height, Color colour) { this.x = x; this.y = y; this.width = width; this.height = height; this.colour = colour; } public Shape(int x, int y, int radius, Color colour) { this.x = x; this.y = y; this.radius = radius; this.colour = colour; } /** * Returns the x position of the shape. * * @return int value */ public int getX() { return x; } /** * Returns the y position of the shape. * * @return int value */ public int getY() { return y; } /** * Returns the colour of the shape. * * @return Color object */ public Color getColour() { return colour; } /** * Returns the radius of the shape (mainly used for circles). * * @return int value */ public int getRadius() { if(radius > 0) return radius; return 0; } /** * Returns the width of the shape. * * @return int value */ public int getWidth() { if(width > 0) return width; return 0; } /** * Returns the height of the shape. * * @return int value */ public int getHeight() { if(height > 0) return height; return 0; } /** * Sets the x value of the shape. * * @param x int value */ public void setX(int x) { this.x = x; } /** * Sets the y value of the shape. * * @param y int value */ public void setY(int y) { this.y = y; } /** * Returns if the shape is visible or not. * * @return boolean value */ public boolean isVisible() { return isVisible; } /** * Sets if the shape is visible. * * @param isVisible boolean value */ public void setVisible(boolean isVisible) { this.isVisible = isVisible; } /** * Sets the width of the shape. * * @param width int value */ public void setWidth(int width) { this.width = width; } /** * Sets the height of the shape. * * @param height int value */ public void setHeight(int height) { this.height = height; } /** * Sets the colour of the shape. * * @param colour Color object */ public void setColour(Color colour) { this.colour = colour; } }
[ "nick.aksamit@hotmail.com" ]
nick.aksamit@hotmail.com
2711e38799f63f3f4ff0b1b7e126ae61bdfcb844
fd42e77cd3c9e2a1af6a96d22eb46f2d3bd603f4
/ChatSystemG4/src/org/insa/java/controller/ChatController.java
a28f10fd22047087e2276745e38232f9f9decef8
[]
no_license
aaodiall/chatsystem-4ir-2013-b1
11505d926cb29de048cb500329e608abf157dca9
6ffb08ffcf77cfa9fff7303860592824bcd67b68
refs/heads/master
2021-01-13T01:26:59.530714
2013-12-20T17:01:31
2013-12-20T17:01:31
33,658,429
0
0
null
null
null
null
ISO-8859-13
Java
false
false
5,391
java
package org.insa.java.controller; import java.io.File; import java.io.IOException; import java.net.InetAddress; import java.net.UnknownHostException; import java.util.logging.Level; import org.insa.java.factory.MessageFactory; import org.insa.java.model.ChatModel; import org.insa.java.model.User; import org.insa.java.view.JavaChatGUI; import org.insa.java.view.ReceivedMessageNI; import org.insa.java.view.SendMessageNI; import chatSystemCommon.Goodbye; import chatSystemCommon.Hello; import chatSystemCommon.Message; import chatSystemCommon.Text; import com.sun.istack.internal.logging.Logger; /** * Generic controller. * @author thomas thiebaud * @author unaฤผ sanchez */ public class ChatController { private ChatModel chatModel; private JavaChatGUI chatGUI; private MessageController messageController; private FileController fileController; private Thread receivedThread; /** * Constructor * @param chatGUI Main graphic interface. */ public ChatController(JavaChatGUI chatGUI) { this.chatModel = null; this.chatGUI = chatGUI; } /** * Send a text to a destination user. * @param selectedUser Destination user. * @param message Text to send. */ public void sendTextMessage(User selectedUser, String message) { Message text = new Text(chatModel.getLocalUser().getUsername(),message); chatModel.get(selectedUser).addMessage(text); SendMessageNI.getInstance().sendMessage(text,selectedUser.getAddress()); this.updateTalk(chatModel.indexOf(selectedUser)); } /** * Send a file to a destination user. * @param user Destination user. * @param file File to send */ public void sendFile(User user, File file) { fileController.beginEmissionProtocol(user, file); } /** * Send a hello message. A hello message is the first message you have to send went you are connected. It allows you to know who is connected. * @param localUser A reference to local user. */ public void sendHelloMessage(User localUser) { messageController.sendHelloMessage(MessageFactory.hello(chatModel.getLocalUsername(), false)); } /** * Send a bye message. A bye message is the message you have to send when you leave the application. * @param localUser A reference to local user. */ public void sendGoodbyeMessage(User localUser) { messageController.sendGoodbyeMessage(MessageFactory.bye(chatModel.getLocalUsername())); } /** * Generic method to receive messages. Do some verifications and dispatch the received message between message controller and file controller. * @param inetAddress The IP address where the message is coming. * @param msg The received message * @return -1 if error, 0 if ok. */ public int receivedMessage(InetAddress inetAddress, Message msg){ if(msg.getUsername().equals(chatModel.getLocalUsername())) return -1; User user = new User(inetAddress,msg.getUsername()); Logger.getLogger(ChatController.class).log(Level.INFO, "Message received >> " + msg.toString()); if(msg instanceof Hello || msg instanceof Goodbye || msg instanceof Text) messageController.receivedMessage(user,msg); else { try { fileController.receivedMessage(user,msg); } catch (IOException e) { Logger.getLogger(ChatController.class).log(Level.SEVERE, "", e); } } return 0; } /** * Connect the localUser. */ public void connect() { String localUsername = chatGUI.displayUsernameInputDialog(); this.checkLocalUsername(localUsername); try { chatModel = new ChatModel(new User(InetAddress.getLocalHost(),localUsername)); this.messageController = new MessageController(this,chatGUI,chatModel); this.fileController = new FileController(chatGUI,chatModel); } catch (UnknownHostException e) { Logger.getLogger(JavaChatGUI.class).log(Level.SEVERE, null, e); } this.enableMessageReception(); this.sendHelloMessage(chatModel.getLocalUser()); } /** * Disconnect the localUser. */ public void disconnect() { this.sendGoodbyeMessage(chatModel.getLocalUser()); } /** * Enable message reception by creating a new listening thread. */ public void enableMessageReception() { receivedThread = new Thread(ReceivedMessageNI.getInstance(this)); receivedThread.start(); } /** * Check if the username is correct. Exit the application if no. * @param localUsername Username to be checked */ private void checkLocalUsername(String localUsername) { if ((localUsername == null) || (localUsername.length() <= 0)) System.exit(-1); } /** * Update the talk of the selected user. * @param index The index of the selected user. */ public void updateTalk(int index) { messageController.updateTalk(index); } /** * Return the model. * @return ChatModel. */ public ChatModel getModel() { return chatModel; } /** * Stop emission file transfer. */ public void cancelEmissionTransfer() { fileController.cancelEmissionTransfer(); } /** * Stop reception file transfer. */ public void cancelReceptionTransfer() { fileController.cancelReceptionTransfer(); } /** * Display an error message to the user. * @param s Message to display. */ public void messageError(String s) { chatGUI.showErrorMessage(s); } }
[ "thiebaud.tom@gmail.com@36bdba98-47b0-9e5b-5b9c-1307c8c31073" ]
thiebaud.tom@gmail.com@36bdba98-47b0-9e5b-5b9c-1307c8c31073
d3e1d2da495651e833fe7c8b80370de697ecb5c2
ddbb70f9e2caa272c05a8fa54c5358e2aeb507ad
/rimnotif/src/main/java/com/rimdev/rimnotif/Services/DevicePageServ.java
b67ea8690bfec3408007005a7dd22e43dd04e780
[]
no_license
ahmedhamed105/rimdev
1e1aad2c4266dd20e402c566836b9db1f75d4643
c5737a7463f0b80b49896a52f93acbb1e1823509
refs/heads/master
2023-02-05T15:18:20.829487
2021-04-04T08:10:19
2021-04-04T08:10:19
228,478,954
1
0
null
2023-01-11T19:57:52
2019-12-16T21:27:44
JavaScript
UTF-8
Java
false
false
8,019
java
package com.rimdev.rimnotif.Services; import java.util.ArrayList; import java.util.Date; import java.util.List; import java.util.Optional; import javax.servlet.http.HttpServletRequest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.dao.NonTransientDataAccessException; import org.springframework.dao.RecoverableDataAccessException; import org.springframework.dao.TransientDataAccessException; import org.springframework.jdbc.datasource.init.ScriptException; import org.springframework.stereotype.Service; import com.rimdev.rimnotif.Exception.NooauthException; import com.rimdev.rimnotif.Exception.PopupException; import com.rimdev.rimnotif.Repo.DevicePageRepo; import com.rimdev.rimnotif.Utils.Generate; import com.rimdev.rimnotif.entities.Device; import com.rimdev.rimnotif.entities.DevicePage; import com.rimdev.rimnotif.entities.Pages; import com.rimdev.rimnotif.entities.UserLogin; import com.rimdev.rimnotif.outputobject.pagesdevice; @Service public class DevicePageServ { @Autowired DevicePageRepo devicePageRepo; @Autowired TextConvertionServ textConvertionServ; @Autowired UserLoginServ userLoginServ; @Autowired LogServ logServ; @Autowired GroupWebServ groupWebServ; @Autowired PagesServ pagesServ; @Autowired DevicePageServ devicePageServ; @Autowired DeviceServ deviceServ; @Autowired GroupPagesServ groupPagesServ; public DevicePage check_webservice_external(HttpServletRequest request,String url,String tokean,String username,String pageid,String langcode,String devicecode,List<String> paramter,List<String> values) { DevicePage devpage=getdevicepage(request, tokean, username, pageid, langcode,devicecode); userLoginServ.check_userlogin_without(request, devpage.getDeviceId(), devpage.getPagesID(), username, tokean, langcode); groupPagesServ.check_page(request,devpage, langcode); paramter.add("langcode"); values.add(langcode); groupWebServ.checkpriviledgeexternal(request,url ,devpage,paramter,values); return devpage; } public DevicePage check_webservice(HttpServletRequest request,String tokean,String username,String pageid,String langcode,String devicecode,List<String> paramter,List<String> values) { DevicePage devpage=getdevicepage(request, tokean, username, pageid, langcode,devicecode); userLoginServ.check_userlogin_without(request, devpage.getDeviceId(), devpage.getPagesID(), username, tokean, langcode); groupPagesServ.check_page(request,devpage, langcode); paramter.add("langcode"); values.add(langcode); groupWebServ.checkpriviledge(request, devpage,paramter,values); return devpage; } public DevicePage getdevicepage(HttpServletRequest request,String tokean,String username,String pageid,String langcode,String devicecode) { int pagenumber =Integer.parseInt(pageid); try { Optional<DevicePage> flowid =devicePageRepo.findbytokeanpage(tokean, pagenumber); if (flowid.isPresent()){ return flowid.get(); } else{ // alternative processing.... UserLogin userlogin = userLoginServ.getbyid(1, langcode); Pages p= pagesServ.getbyid(pagenumber); Device dev=deviceServ.checkdevicetwo(devicecode, langcode); DevicePage out=devicePageServ.savedevicepagewithout(request,dev, p,userlogin,langcode); return out; } } catch (Exception se) { UserLogin userlogin = userLoginServ.getbyid(1, langcode); Pages p= pagesServ.getbyid(pagenumber); Device dev=deviceServ.checkdevicetwo(devicecode, langcode); DevicePage out=devicePageServ.savedevicepagewithout(request,dev, p,userlogin,langcode); return out; } } public DevicePage savedevpag(HttpServletRequest request,Device dev,Pages pa,String username,String tokean,String langcode) { try { UserLogin userlogin = null; DevicePage a=new DevicePage(); userlogin = userLoginServ.check_userlogin(request, dev, pa, username, tokean, langcode); if(userlogin == null || userlogin.getId() == 1) { userlogin = userLoginServ.getbyid(1, langcode); Generate gen=new Generate(); String publictokean = gen.token(30); a.setPageTokean(publictokean); }else { a.setPageTokean(userlogin.getUsertokean()); } Date visittime = new Date(); a.setDeviceId(dev); a.setPagesID(pa); a.setVisittime(visittime); a.setUserloginID(userlogin); DevicePage out=devicePageRepo.save(a); return out; } catch (TransientDataAccessException se) { String text= "sql error"+tokean; logServ.errorlog(dev.getDeviceip(),request,text, dev, 0, 2, langcode,se.getMessage()); throw new NullPointerException(textConvertionServ.search("E104", langcode)); } catch (RecoverableDataAccessException se) { String text= "sql error"+tokean; logServ.errorlog(dev.getDeviceip(),request,text, dev, 0, 2, langcode,se.getMessage()); throw new NullPointerException(textConvertionServ.search("E104", langcode)); }catch (ScriptException se) { String text= "sql error"+tokean; logServ.errorlog(dev.getDeviceip(),request,text, dev, 0, 2, langcode,se.getMessage()); throw new NullPointerException(textConvertionServ.search("E104", langcode)); }catch (NonTransientDataAccessException se) { String text= "sql error"+tokean; logServ.errorlog(dev.getDeviceip(),request,text, dev, 0, 2, langcode,se.getMessage()); throw new NullPointerException(textConvertionServ.search("E104", langcode)); } } public DevicePage savedevicepagewithout(HttpServletRequest request,Device dev,Pages pa,UserLogin user,String langcode) { try { Date visittime = new Date(); DevicePage a=new DevicePage(); a.setDeviceId(dev); a.setPagesID(pa); a.setVisittime(visittime); a.setUserloginID(user); a.setPageTokean(user.getUsertokean()); DevicePage out=devicePageRepo.save(a); return out; } catch (TransientDataAccessException se) { String text= "sql error"+se.getMessage(); logServ.errorlog(dev.getDeviceip(),request,text, dev, user.getId(), 2, langcode,se.getMessage()); throw new NullPointerException(textConvertionServ.search("E104", langcode)); } catch (RecoverableDataAccessException se) { String text= "sql error"+se.getMessage(); logServ.errorlog(dev.getDeviceip(),request,text, dev, user.getId(), 2, langcode,se.getMessage()); throw new NullPointerException(textConvertionServ.search("E104", langcode)); }catch (ScriptException se) { String text= "sql error"+se.getMessage(); logServ.errorlog(dev.getDeviceip(),request,text, dev, user.getId(), 2, langcode,se.getMessage()); throw new NullPointerException(textConvertionServ.search("E104", langcode)); }catch (NonTransientDataAccessException se) { String text= "sql error"+se.getMessage(); logServ.errorlog(dev.getDeviceip(),request,text, dev, user.getId(), 2, langcode,se.getMessage()); throw new NullPointerException(textConvertionServ.search("E104", langcode)); } } public List<pagesdevice> getpagesbydevice(int id,String langcode) { System.out.println(id); List<DevicePage> p=new ArrayList<DevicePage>(); try { p= (List<DevicePage>)devicePageRepo.findbydeviceid(id); } catch (TransientDataAccessException se) { throw new PopupException(textConvertionServ.search("E104", langcode)); } catch (RecoverableDataAccessException se) { throw new PopupException(textConvertionServ.search("E104", langcode)); }catch (ScriptException se) { throw new PopupException(textConvertionServ.search("E104", langcode)); }catch (NonTransientDataAccessException se) { throw new PopupException(textConvertionServ.search("E104", langcode)); } if(p.size() <= 0) { throw new PopupException("no pages"); } List<pagesdevice> c= new ArrayList<pagesdevice>(); for(DevicePage dev:p) { pagesdevice pa=new pagesdevice(); pa.setPage_name(dev.getPagesID().getPagename()); pa.setPage_Date(dev.getVisittime()); c.add(pa); } return c; } }
[ "ahmed.elemam@its.ws" ]
ahmed.elemam@its.ws
0da5debbbb889a55768075ea43f851715b6fcfbb
59911fcb0e738a33e85c83a564906e9764a2c24a
/src/main/java/com/mysample/domain/KafkaAckMetadata.java
f4e6bae06b3c9064d960f66478ef8012cd5ff11b
[]
no_license
pilif42/testingTools
acaa052ca79264a6e31c09f492e0903f5f400cba
9d5f8f7ef75f987b509d10861bea05ed77d075c0
refs/heads/master
2023-04-12T19:21:22.930427
2023-04-10T19:55:00
2023-04-10T19:55:00
121,122,018
0
0
null
null
null
null
UTF-8
Java
false
false
415
java
package com.mysample.domain; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.EqualsAndHashCode; import lombok.Getter; import lombok.ToString; import org.apache.kafka.common.TopicPartition; @AllArgsConstructor @Getter @ToString @EqualsAndHashCode @Builder public class KafkaAckMetadata { private String connectionId; private TopicPartition topicPartition; private long offset; }
[ "brossierp@gmail.com" ]
brossierp@gmail.com
044b41b9fe1b8a4303bfef607bf28c3acf372674
5dc7137c47ec767ac9011d863046530aae263d2a
/modules/parser/src/java/com/spoledge/audao/parser/gql/impl/soft/SoftColumn.java
c17f30031f40a96485b17e3e741d299daeef0901
[]
no_license
vbartacek/audao
097e01a411be05b0352d765f7b864be8aabf60cb
f4e0760e1f90dcf384a558166b7f43c9636275fd
refs/heads/master
2016-09-06T18:27:08.732778
2013-08-02T13:54:05
2013-08-02T13:54:05
32,446,889
0
2
null
null
null
null
UTF-8
Java
false
false
2,845
java
/* * Copyright 2010 Spolecne s.r.o. (www.spoledge.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.spoledge.audao.parser.gql.impl.soft; import com.google.appengine.api.datastore.Entity; import com.google.appengine.api.datastore.Key; import static com.spoledge.audao.parser.gql.impl.soft.SoftConstants.__KEY__; public class SoftColumn { private String columnName; private boolean isUnindexed; private boolean isEmpty; //////////////////////////////////////////////////////////////////////////// // Constructors //////////////////////////////////////////////////////////////////////////// public SoftColumn( String columnName ) { this( columnName, false, false ); } public SoftColumn( String columnName, boolean isUnindexed, boolean isEmpty ) { this.columnName = columnName; this.isUnindexed = isUnindexed; this.isEmpty = isEmpty; } //////////////////////////////////////////////////////////////////////////// // Public //////////////////////////////////////////////////////////////////////////// public final Key getValueKey( boolean notNull, Object[] args, Entity ent ) { Object o = getValue( args, ent ); if (o == null) { if (notNull) throw new RuntimeException("Key expr cannot be null"); return null; } if (!(o instanceof Key)) { throw new RuntimeException("Expected Key expr, but got:" + o.getClass() + " - " + o ); } return (Key) o; } public final Object getValue( Object[] args ) { return getValue( args, null ); } public Object getValue( Object[] args, Entity ent ) { String srcName = getSourceColumnName(); return __KEY__.equals( srcName ) ? ent.getKey() : ent.getProperty( srcName ); } public final String getColumnName() { return columnName; } public final boolean isUnindexed() { return isUnindexed; } public final boolean isEmpty() { return isEmpty; } //////////////////////////////////////////////////////////////////////////// // Protected //////////////////////////////////////////////////////////////////////////// protected String getSourceColumnName() { return columnName; } }
[ "vbartacek@dd69fca6-5dc6-bce6-5246-9388fd2d9b91" ]
vbartacek@dd69fca6-5dc6-bce6-5246-9388fd2d9b91
dc7d894d7f59cec27b16911d94b61241730693d4
a6d34439c2f87a1ec71d6c959aa88fcf7e613b4c
/src/com/iopitme/betty/vendor/NewMessageVendorFragment.java
dfaa32aabaff748b8e4afab1591cdab316ceca37
[]
no_license
ioptime/Betty
accb2aa95bc86f2c68767a1cdf5168aeb8bc6000
74d5332b96649f5118752d76d62f912ba2731a1a
refs/heads/master
2021-01-10T10:21:57.571289
2015-12-14T13:08:08
2015-12-14T13:08:08
47,173,908
0
0
null
null
null
null
UTF-8
Java
false
false
8,558
java
package com.iopitme.betty.vendor; import java.util.ArrayList; import org.apache.http.NameValuePair; import org.apache.http.message.BasicNameValuePair; import android.graphics.Color; import android.os.AsyncTask; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.view.inputmethod.EditorInfo; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.AdapterView.OnItemSelectedListener; import android.widget.ArrayAdapter; import android.widget.AutoCompleteTextView; import android.widget.Button; import android.widget.EditText; import android.widget.ImageView; import android.widget.Spinner; import android.widget.TextView; import android.widget.Toast; import com.ioptime.betty.Appconstants; import com.ioptime.betty.NewMessageFragment; import com.ioptime.betty.R; import com.ioptime.extendablelibrary.IoptimeFragment; public class NewMessageVendorFragment extends IoptimeFragment { ImageView ivCross; EditText etMessage, etSubject; AutoCompleteTextView etToSearchView; TextView tvTo; Spinner spinnerTo; Button btSend; ArrayAdapter<String> customerAdapter; ArrayAdapter<String> vendorAdapter; int position = -1; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater .inflate(R.layout.new_message, container, false); etMessage = (EditText) rootView.findViewById(R.id.newmsgETMessage); etSubject = (EditText) rootView.findViewById(R.id.newmsgETSubject); etToSearchView = (AutoCompleteTextView) rootView .findViewById(R.id.newmsgAutoCompleteName); // using imageview with autocomplete textview so that user can only // select a valid recipent and can not change it later. if he later // tries to change it , he wont be , after selecting the image of cross // will be visible and user can only delete it not edit it. ivCross = (ImageView) rootView.findViewById(R.id.newmsgIVCross); ivCross.setVisibility(View.GONE); ivCross.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { etToSearchView.setInputType(EditorInfo.TYPE_CLASS_TEXT); etToSearchView.setText(""); ivCross.setVisibility(View.GONE); position = -1; } }); etToSearchView.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View arg1, int pos, long id) { String selection = (String) parent.getItemAtPosition(pos); if (spinnerTo.getSelectedItemPosition() == 1) { // vendors here for (int i = 0; i <= Appconstants.vendors; i++) { Log.d("selected is " + selection, "" + Appconstants.messageNamesArray.get(i) .getName()); if (Appconstants.messageNamesArray.get(i).getName() .equals(selection)) { position = i; break; } } } else if (spinnerTo.getSelectedItemPosition() == 2) { // customers here for (int i = Appconstants.vendors + 1; i < Appconstants.customers + 1; i++) { if (Appconstants.messageNamesArray.get(i).getName() .equals(selection)) { position = i; break; } } } etToSearchView.setInputType(EditorInfo.TYPE_NULL); ivCross.setVisibility(View.VISIBLE); } }); ArrayList<String> customerName = new ArrayList<String>(); ArrayList<String> vendorName = new ArrayList<String>(); for (int i = 0; i < Appconstants.messageNamesArray.size(); i++) { if (Appconstants.messageNamesArray.get(i).getStore_id() == 0) { // its a customer as shop id=0 customerName.add("" + Appconstants.messageNamesArray.get(i).getName()); } else if (Appconstants.messageNamesArray.get(i).getStore_id() != 0) { // its a vendor as shop id != 0 vendorName.add("" + Appconstants.messageNamesArray.get(i).getName()); } } etToSearchView.showDropDown(); customerAdapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, customerName); vendorAdapter = new ArrayAdapter<String>(getActivity(), android.R.layout.simple_list_item_1, vendorName); tvTo = (TextView) rootView.findViewById(R.id.newmsgTVName); btSend = (Button) rootView.findViewById(R.id.newmsgBtSend); spinnerTo = (Spinner) rootView.findViewById(R.id.newmsgSpinnerType); btSend.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { if (etMessage.getText().toString().equalsIgnoreCase("") && etSubject.getText().toString().equalsIgnoreCase("")) { Toast.makeText(getActivity(), "All fields are required", Toast.LENGTH_SHORT).show(); } else { int reciever_id = 0, reciever = 0; Log.d("pos", Appconstants.messageNamesArray.size() + " pos is " + position); if (spinnerTo.getSelectedItemPosition() == 0) { // Admin is here reciever = 1; reciever_id = 1; new SendMessageBTTask(reciever_id, reciever).execute(); } else if (spinnerTo.getSelectedItemPosition() == 1) { if (ivCross.isShown()) { // vendors here reciever = 2; reciever_id = Appconstants.messageNamesArray.get( position).getUser_id(); new SendMessageBTTask(reciever_id, reciever) .execute(); } else { Toast.makeText(getActivity(), "Please select a valid recipent", Toast.LENGTH_SHORT).show(); } } else if (spinnerTo.getSelectedItemPosition() == 2) { // customers here if (ivCross.isShown()) { reciever = 3; reciever_id = Appconstants.messageNamesArray.get( position).getUser_id(); new SendMessageBTTask(reciever_id, reciever) .execute(); } else { Toast.makeText(getActivity(), "Please select a valid recipent", Toast.LENGTH_SHORT).show(); } } } } }); spinnerTo.setOnItemSelectedListener(new OnItemSelectedListener() { @Override public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { ((TextView) parent.getChildAt(0)).setTextColor(Color.rgb(0, 0, 0)); if (position == 0) { // Admin selected tvTo.setVisibility(View.INVISIBLE); etToSearchView.setVisibility(View.INVISIBLE); } else if (position == 1) { // Vendor selected tvTo.setVisibility(View.VISIBLE); tvTo.setText("Vendor"); etToSearchView.setVisibility(View.VISIBLE); etToSearchView.setAdapter(vendorAdapter); } else if (position == 2) { // customer selected tvTo.setVisibility(View.VISIBLE); tvTo.setText("Customer"); etToSearchView.setVisibility(View.VISIBLE); etToSearchView.setAdapter(customerAdapter); } } @Override public void onNothingSelected(AdapterView<?> parent) { // TODO Auto-generated method stub ((TextView) parent.getChildAt(0)).setTextColor(Color.rgb(0, 0, 0)); } }); return rootView; } private class SendMessageBTTask extends AsyncTask<Void, Void, Void> { String result = "-"; int reciever_id; int reciever; SendMessageBTTask(int recv_id, int recv) { reciever_id = recv_id; reciever = recv; } @Override protected void onPreExecute() { Toast.makeText(getActivity(), "Sending message", Toast.LENGTH_SHORT) .show(); btSend.setClickable(false); } @Override protected Void doInBackground(Void... arg0) { ArrayList<NameValuePair> params = new ArrayList<NameValuePair>(); params.add(new BasicNameValuePair("reciever_id", "" + reciever_id));// params.add(new BasicNameValuePair("receiver", "" + reciever));// params.add(new BasicNameValuePair("sender_id", "" + Appconstants.vendor.getUser_id())); params.add(new BasicNameValuePair("message", "" + etMessage.getText().toString())); params.add(new BasicNameValuePair("subject", "" + etSubject.getText().toString())); result = getJSONfromURL(Appconstants.Server + "messages_send.php", params, 0); if (result.equalsIgnoreCase("") | result.contains("empty") | result.contains("err")) { // not valid } else { } Log.d("result", "--" + result); return null; } @Override protected void onPostExecute(Void params) { btSend.setClickable(true); if (NewMessageVendorFragment.this.isVisible()) { Toast.makeText(getActivity(), "Message sent", Toast.LENGTH_SHORT).show(); } } } }
[ "android.ioptime@gmail.com" ]
android.ioptime@gmail.com
ebd64b37768ad912ba4ace0ad571c0f0781780c7
b34e622b11bc633a75367e154032905f0a283d44
/src/main/java/com/continuuity/internal/kafka/client/KafkaRequestSender.java
959095f4b1783fb68ee925411efbf3c560790f36
[ "Apache-2.0" ]
permissive
nitinmotgi/weave
5a594a3a927785d86e80e85146cd1690c23221c9
6faaf27e868b92dfc24818bec137270031b217f0
refs/heads/master
2021-01-20T23:21:07.597130
2013-04-21T02:04:57
2013-04-21T02:04:57
9,574,123
0
1
null
null
null
null
UTF-8
Java
false
false
751
java
/** * Copyright 2012-2013 Continuuity,Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.continuuity.internal.kafka.client; /** * */ interface KafkaRequestSender { void send(KafkaRequest request); }
[ "terence@continuuity.com" ]
terence@continuuity.com
24c9259cfb3165ee0409fcf04bbcf77279ae52c2
5a6ca39802a30967ac3051552ca8b6862e226bbc
/Coets/Rocket.java
2ae775313292c223465922bdee1cb1b08abb4b5d
[]
no_license
kevhaes/BCN_Activa_BackEnd_Java
d869ebfcdb09ee8d184ab2385922eb7a0caa4b62
fc5a445a726c09969196f9fb7fd21ebbc9ca40b0
refs/heads/master
2022-11-08T18:40:57.954787
2020-06-17T14:27:47
2020-06-17T14:27:47
267,326,902
1
0
null
null
null
null
UTF-8
Java
false
false
1,392
java
import java.util.ArrayList; import java.util.List; /** * @author KevHaes * */ /** * @author KevHaes * */ public class Rocket { /////////////// ATRIBUTES /////////////// private String code; private ArrayList<Thruster> thrusters = new ArrayList<Thruster>(); /////////////// CONSTRUCTORS /////////////// public Rocket(String code, ArrayList<Thruster> thrusters) { this.code = code; this.setThrusters(thrusters); } public Rocket(String code) { this.code = code; } /////////////// GETTERS & SETTERS /////////////// /** * @param code2 * @param asList */ public Rocket(String code2, List<Thruster> thrusters) { // TODO Auto-generated constructor stub } /** * @return the code */ public String getCode() { return code; } /** * @param code the code to set */ public void setCode(String code) { this.code = code; } /** * @return the thrusters */ public ArrayList<Thruster> getThrusters() { return thrusters; } /** * @param thrusters the thrusters to set */ public void setThrusters(ArrayList<Thruster> thrusters) { this.thrusters = thrusters; } /////////////// METHODS /////////////// /////////////// TOSTRING /////////////// @Override public String toString() { return "Rocket [code=" + code + ", thrusters=" + thrusters + "]"; } }
[ "noreply@github.com" ]
kevhaes.noreply@github.com
c3213dcdaff98945a6daa0a1320a634259fac2a9
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/4/4_63132a54fb4c1e0f6d1cb34b57a06e877dadc14b/RSSReader/4_63132a54fb4c1e0f6d1cb34b57a06e877dadc14b_RSSReader_s.java
f8daf26fe71a2ea6b4c7af5176c28b84747251cb
[]
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
5,714
java
/* Copyright ยฉ 2012 Paul Houghton and Futurice on behalf of the Tantalum Project. All rights reserved. Tantalum software shall be used to make the world a better place for everyone. This software is licensed for use under the Apache 2 open source software license, http://www.apache.org/licenses/LICENSE-2.0.html You are kindly requested to return your improvements to this library to the open source community at http://projects.developer.nokia.com/Tantalum The above copyright and license notice 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 org.tantalum.canvasrssreader; import javax.microedition.lcdui.*; import org.tantalum.Task; import org.tantalum.TimeoutException; import org.tantalum.Worker; import org.tantalum.j2me.TantalumMIDlet; import org.tantalum.util.L; /** * @author ssaa */ public class RSSReader extends TantalumMIDlet implements CommandListener { // This is read from the JAD-file public static final String INITIAL_FEED_URL = "http://feeds.bbci.co.uk/news/rss.xml"; private RSSReaderCanvas canvas; private Displayable currentDisplayable; public static int COLOR_BACKGROUND; public static int COLOR_HIGHLIGHTED_BACKGROUND; public static int COLOR_FOREGROUND; public static int COLOR_HIGHLIGHTED_FOREGROUND; public static int COLOR_BORDER; public static int COLOR_HIGHLIGHTED_BORDER; public RSSReader() { super(DEFAULT_NUMBER_OF_WORKER_THREADS); } /** * Switches a current displayable in a display. The * <code>display</code> instance is taken from * <code>getDisplay</code> method. This method is used by all actions in the * design for switching displayable. * * @param alert the Alert which is temporarily set to the display; if * <code>null</code>, then <code>nextDisplayable</code> is set immediately * @param nextDisplayable the Displayable to be set */ public void switchDisplayable(Alert alert, Displayable nextDisplayable) { final Display display = getDisplay(); if (alert == null) { display.setCurrent(nextDisplayable); } else { display.setCurrent(alert, nextDisplayable); } } /** * Called by a system to indicated that a command has been invoked on a * particular displayable. * * @param command the Command that was invoked * @param displayable the Displayable where the command was invoked */ public void commandAction(Command command, Displayable displayable) { if (displayable instanceof Alert) { switchDisplayable(null, currentDisplayable); } } /** * Returns an initiliazed instance of canvas component. * * @return the initialized component instance */ public RSSReaderCanvas getCanvas() { if (canvas == null) { canvas = new RSSReaderCanvas(this); } return canvas; } /** * Shows an error popup * * @param errorMessage */ public void showError(final String errorMessage) { Alert alert = new Alert("Error", errorMessage, null, AlertType.ERROR); alert.addCommand(new Command("Ok", Command.OK, 0)); alert.setCommandListener(this); alert.setTimeout(Alert.FOREVER); currentDisplayable = getDisplay().getCurrent(); switchDisplayable(alert, currentDisplayable); } /** * Returns a display instance. * * @return the display instance. */ public Display getDisplay() { return Display.getDisplay(this); } /** * Called when MIDlet is started. Checks whether the MIDlet have been * already started and initialize/starts or resumes the MIDlet. */ public void startApp() { try { final Task reloadTask = new Task() { public Object exec(final Object params) { getCanvas().getListView().reloadAsync(false); return null; } }; final Display display = getDisplay(); COLOR_BACKGROUND = display.getColor(Display.COLOR_BACKGROUND); COLOR_HIGHLIGHTED_BACKGROUND = display.getColor(Display.COLOR_HIGHLIGHTED_BACKGROUND); COLOR_FOREGROUND = display.getColor(Display.COLOR_FOREGROUND); COLOR_HIGHLIGHTED_FOREGROUND = display.getColor(Display.COLOR_HIGHLIGHTED_FOREGROUND); COLOR_BORDER = display.getColor(Display.COLOR_BORDER); COLOR_HIGHLIGHTED_BORDER = display.getColor(Display.COLOR_HIGHLIGHTED_BORDER); try { reloadTask.fork().join(1000); } catch (TimeoutException ex) { //#debug L.e("Startup reloadAsync timeout", "This is normal if loading from the net", ex); } switchDisplayable(null, canvas); } catch (Exception ex) { //#debug L.e("Startup execption", "", ex); Worker.shutdown(false); } } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
2993a94a026eef84ba63509cbb0eb30868ed3bef
3914f5d9864ad49f5d152c7ee3e20a7b617c6435
/app/src/main/java/com/dace/textreader/adapter/SettingsNewsRecyclerViewAdapter.java
ab7e7742b8936ac245db08e621f76193f8e244f5
[]
no_license
PCchenpeng/TextReader
ad0434eb93030036857fbfbf6919ada61143eb0f
07fbf9fa828698a1d6785ac0b13e49ba8e00bea3
refs/heads/master
2020-04-30T20:27:01.872810
2019-05-27T06:50:41
2019-05-27T06:50:41
177,066,879
2
3
null
null
null
null
UTF-8
Java
false
false
2,983
java
package com.dace.textreader.adapter; import android.content.Context; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import com.dace.textreader.R; import com.dace.textreader.bean.SettingsNews; import java.util.List; /** * ็ณป็ปŸ้€š็Ÿฅๅˆ—่กจ้€‚้…ๅ™จ * Created by 70391 on 2017/9/28. */ public class SettingsNewsRecyclerViewAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> implements View.OnClickListener { private Context mContext; private List<SettingsNews> mList; public SettingsNewsRecyclerViewAdapter(Context context, List<SettingsNews> list) { this.mContext = context; this.mList = list; } @Override public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { View view = LayoutInflater.from(mContext) .inflate(R.layout.item_settings_news_layout, parent, false); view.setOnClickListener(this); ViewHolder holder = new ViewHolder(view); return holder; } @Override public void onBindViewHolder(final RecyclerView.ViewHolder holder, final int position) { SettingsNews settingsNews = mList.get(position); if (settingsNews.getType() == 2) { ((ViewHolder) holder).tv_title.setText("ๆ–ฐ่ฏพ็จ‹ไธŠ็บฟไบ†"); } else if (settingsNews.getType() == 3) { ((ViewHolder) holder).tv_title.setText("ๆ–ฐ็š„ๆดปๅŠจ้€š็Ÿฅ"); } ((ViewHolder) holder).tv_content.setText(settingsNews.getTitle()); ((ViewHolder) holder).tv_time.setText(settingsNews.getTime()); if (settingsNews.isViewOrNot()) { ((ViewHolder) holder).view_status.setVisibility(View.GONE); } } @Override public int getItemCount() { return mList.size(); } @Override public void onClick(View v) { if (mOnSettingsNewsItemClick != null) { mOnSettingsNewsItemClick.onClick(v); } } public interface OnSettingsNewsItemClick { void onClick(View view); } private OnSettingsNewsItemClick mOnSettingsNewsItemClick; public void setOnSettingsNewsItemClickListen(OnSettingsNewsItemClick onSettingsNewsItemClickListen) { this.mOnSettingsNewsItemClick = onSettingsNewsItemClickListen; } class ViewHolder extends RecyclerView.ViewHolder { TextView tv_title; TextView tv_content; TextView tv_time; View view_status; public ViewHolder(View itemView) { super(itemView); tv_title = itemView.findViewById(R.id.tv_title_settings_news_item); tv_content = itemView.findViewById(R.id.tv_content_settings_news_item); tv_time = itemView.findViewById(R.id.tv_time_settings_news_item); view_status = itemView.findViewById(R.id.view_status_settings_news_item); } } }
[ "cheung29@foxmail.com" ]
cheung29@foxmail.com
f8ef2b86aeb81dd01e695cc5b497de92da495e15
be5a4f13d3d2fb8be04b6e89fa09936b6c3b8541
/src/com/tysy/dao/Assessdao.java
5bd79d1e76956a16abd92a5e72323ab29ac5ef30
[ "Apache-2.0" ]
permissive
nzy3869/Adver-Java-Web-SSM
2b6ca35b4d1631e5f5ac2600a4877b502769dccd
d39036e8805d10030e25bb97d0ab833540205735
refs/heads/master
2020-04-22T14:17:16.061360
2018-11-29T15:17:44
2018-11-29T15:17:44
170,438,496
1
0
Apache-2.0
2019-02-13T04:11:06
2019-02-13T04:11:06
null
UTF-8
Java
false
false
283
java
package com.tysy.dao; import java.util.List; import com.tysy.pojo.Assess; public interface Assessdao { public List<Assess> getAssessByComid(Integer comid); public List<Assess> getAssesses(); public int addAssess(Assess ass); public int deleteAssess(Integer id); }
[ "1005642457@qq.com" ]
1005642457@qq.com
2745ead9f9fe33f9cbc239921638495aa95719d1
7c831c4c67cae3f7b1af7dc6ad09c8db7923558f
/app/src/main/java/com/nayem/tourguide/model/modelNearby/Geometry.java
7c03a56a40d7c3bcef83ba06ee891521ff99153d
[]
no_license
nayem6472/TourGuide
e047ff5b7b7e08f2fbb25f8afb19ee0b212f2a8f
eeb1fd11e18f91a15e8ec76a9fe4741ca234e1e2
refs/heads/master
2020-03-24T14:47:33.011250
2018-07-29T16:41:01
2018-07-29T16:41:01
142,777,131
0
0
null
null
null
null
UTF-8
Java
false
false
638
java
package com.nayem.tourguide.model.modelNearby; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class Geometry { @SerializedName("location") @Expose private Location location; @SerializedName("viewport") @Expose private Viewport viewport; public Location getLocation() { return location; } public void setLocation(Location location) { this.location = location; } public Viewport getViewport() { return viewport; } public void setViewport(Viewport viewport) { this.viewport = viewport; } }
[ "haruncse38@gmail.com" ]
haruncse38@gmail.com
cf09b5f8d77e64986cd46d54b34aa831b9becbba
a07609ef34b8552204023d05d13d4ff57985be48
/PostFix2/src/no/hvl/dat102/postfix/PostfixKlient.java
d8352db6df32ca0d621a4f3d7d55825ce3fd1c22
[]
no_license
579673/DAT102Prosjekt
819e1d7f0d9d4de203e257449dabf5d381388e6c
d05d41ab76d441702c29bf05874aacbe3d71f223
refs/heads/master
2020-04-26T14:28:51.379810
2019-03-05T19:03:04
2019-03-05T19:03:04
173,496,431
0
0
null
null
null
null
UTF-8
Java
false
false
726
java
package no.hvl.dat102.postfix; import java.util.Scanner; public class PostfixKlient { public static void main(String[] args) { String uttrykk; String igjen; int resultat; Scanner tastatur = new Scanner(System.in); do { PostfixEvaluator evaluator = new PostfixEvaluator(); System.out.println( "Oppgi et gyldig postfix-uttrykk med en " + "blank mellom hvert tegn " + "Eks 4 5 2 * + som blir 14 "); uttrykk = tastatur.nextLine(); resultat = evaluator.beregn(uttrykk); System.out.println(); System.out.println("Uttrykket er lik " + resultat); System.out.print("Oppgi et nytt uttrykk j/n? "); igjen = tastatur.nextLine(); } while (igjen.equalsIgnoreCase("j")); } }
[ "579673@stud.hvl.no" ]
579673@stud.hvl.no
aad0a9c5f3502ed4505cb56c64bd4a32fcf21c75
af46bf0beca1f548c16140a0d194ea545b33ec1b
/JavaTest/src/com/minsub/dp/mediator/ColleagueButton.java
a4d59308b1ee95b5cd7058e51d270ad359a42454
[]
no_license
Minsub/Practice
db85c9fd67a43b7a414760adb7cc34c4c2577b46
310511ab20023f6a08a26432fd771ff4a2fb89ff
refs/heads/master
2021-01-17T10:32:46.262086
2014-09-23T23:15:23
2014-09-23T23:15:23
17,127,386
0
0
null
null
null
null
UHC
Java
false
false
508
java
package com.minsub.dp.mediator; import java.awt.Button; public class ColleagueButton extends Button implements Colleague { private Mediator mediator; public ColleagueButton(String caption) { super(caption); } public void setMediator(Mediator mediator) { // Mediator์„ ์ €์žฅ this.mediator = mediator; } public void setColleagueEnabled(boolean enabled) { // Mediator์—์„œ ์œ ํšจ/๋ฌดํšจ๋ฅผ ์ง€์‹œ setEnabled(enabled); } }
[ "jiminsub@gmail.com" ]
jiminsub@gmail.com
999016415f98967bc3add2c0af65976f3d86f832
4c4a0adb0b3a5c3dcb1adcf47244ec19dda937dc
/cloud2020/cloud-consumer-order80/src/main/java/com/atguigu/ribbon/SelfRule.java
a283dd7653ee46d3040b301bf6684cc2343328f1
[]
no_license
NuckyD/springcloud2.0
cbbe573925e556a3003ce6de010dbc11efae6d0f
f20cc48bd74c93edde1b585e5119a8bd432ada2c
refs/heads/master
2023-01-07T00:09:07.604399
2020-11-05T06:32:06
2020-11-05T06:32:06
298,535,787
0
0
null
null
null
null
UTF-8
Java
false
false
389
java
package com.atguigu.ribbon; import com.netflix.loadbalancer.IRule; import com.netflix.loadbalancer.RandomRule; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class SelfRule { /** * ้šๆœบ * @return */ @Bean public IRule myRule(){ return new RandomRule(); } }
[ "411853404@qq.com" ]
411853404@qq.com
e64a31e6caabbc94e992f6bc6f4e66dcb6e2d8b4
691ade9db4775b88b86dd96ba08a35e166a3f5a3
/src/com/m7/webserver/test7/core/SimpleLoader.java
8f0cd988e27db782cbddea7220ea4c4dadc2a83c
[]
no_license
AshleyLv/Higanbana
56f97f7a30070b5ac90aeca31eb4ef103bab9661
e8ad717b0e50e2cb32a3d6e06184420e39f385ab
refs/heads/master
2020-03-28T06:03:00.980699
2016-07-12T05:12:37
2016-07-12T05:12:37
63,128,385
0
0
null
null
null
null
UTF-8
Java
false
false
3,006
java
package com.m7.webserver.test7.core; import java.beans.PropertyChangeListener; import java.io.File; import java.io.IOException; import java.net.URL; import java.net.URLClassLoader; import java.net.URLStreamHandler; import org.apache.catalina.Container; import org.apache.catalina.Lifecycle; import org.apache.catalina.LifecycleException; import org.apache.catalina.LifecycleListener; import org.apache.catalina.Loader; import org.apache.catalina.DefaultContext; public class SimpleLoader implements Loader, Lifecycle { public static final String WEB_ROOT = System.getProperty("user.dir") + File.separator + "webroot"; ClassLoader classLoader = null; Container container = null; public SimpleLoader() { try { URL[] urls = new URL[1]; URLStreamHandler streamHandler = null; File classPath = new File(WEB_ROOT); String repository = (new URL("file", null, classPath.getCanonicalPath() + File.separator)).toString() ; urls[0] = new URL(null, repository, streamHandler); classLoader = new URLClassLoader(urls); } catch (IOException e) { System.out.println(e.toString() ); } } @Override public ClassLoader getClassLoader() { return classLoader; } @Override public Container getContainer() { return container; } @Override public void setContainer(Container container) { this.container = container; } @Override public DefaultContext getDefaultContext() { return null; } @Override public void setDefaultContext(DefaultContext defaultContext) { } @Override public boolean getDelegate() { return false; } @Override public void setDelegate(boolean delegate) { } @Override public String getInfo() { return "A simple loader"; } @Override public boolean getReloadable() { return false; } @Override public synchronized void start() throws LifecycleException { System.out.println("Starting SimpleLoader"); } @Override public void stop() throws LifecycleException { } @Override public void addLifecycleListener(LifecycleListener listener) { // TODO Auto-generated method stub } @Override public LifecycleListener[] findLifecycleListeners() { // TODO Auto-generated method stub return null; } @Override public void removeLifecycleListener(LifecycleListener listener) { // TODO Auto-generated method stub } @Override public void setReloadable(boolean reloadable) { // TODO Auto-generated method stub } @Override public void addPropertyChangeListener(PropertyChangeListener listener) { // TODO Auto-generated method stub } @Override public void addRepository(String repository) { // TODO Auto-generated method stub } @Override public String[] findRepositories() { // TODO Auto-generated method stub return null; } @Override public boolean modified() { // TODO Auto-generated method stub return false; } @Override public void removePropertyChangeListener(PropertyChangeListener listener) { // TODO Auto-generated method stub } }
[ "ashley_lyf@icloud.com" ]
ashley_lyf@icloud.com
a33affdf7f528fbdf889293b10bb10b789b11ad9
c2467e446ac7b7d37bcfe7e58c4cdf2755dd6e48
/src/day08/UseExecutors.java
63dbceb498d8d791abcb8a3b9be314394852d1ac
[]
no_license
little666/learningcode
32a1dcc441a2cf0d7f1204d7d6e0f84076a35621
78a75715d46908e8014829dadd5c2d20753cefb0
refs/heads/master
2020-03-07T13:41:19.024554
2018-03-31T16:47:35
2018-03-31T16:47:35
127,507,320
1
0
null
null
null
null
UTF-8
Java
false
false
412
java
package day08; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; public class UseExecutors { public static void main(String[] args) { ExecutorService pool = Executors.newFixedThreadPool(10); ExecutorService pool1 = Executors.newSingleThreadExecutor(); ExecutorService pool2 = Executors.newCachedThreadPool(); Executors.newScheduledThreadPool(10); } }
[ "903909910@qq.com" ]
903909910@qq.com
67d290020f85627bfeb850535217b4c4c2de69fd
674932c8b602ff3836999f606382612ff7dc0827
/src/main/java/cn/bp/scada/controller/scada/Login.java
d835d9811d71ef1b39884349eb2e7219fd717327
[]
no_license
sk4519/scada612-XC
db8645ab1d41aee33444e88f2e1d42140aafdaa8
21d6cd31ff2ddef3cd253f6972de7e278ae62504
refs/heads/master
2023-07-18T04:36:43.902452
2021-09-08T00:55:29
2021-09-08T00:55:29
387,401,503
0
1
null
null
null
null
UTF-8
Java
false
false
2,149
java
package cn.bp.scada.controller.scada; import cn.bp.scada.config.token.JwtInterceptor; import cn.bp.scada.config.token.JwtUtils; import cn.bp.scada.modle.scada.User; import cn.bp.scada.common.utils.redis.RedisUtils; import io.jsonwebtoken.Claims; import org.json.JSONObject; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.util.HashMap; import java.util.Map; @RestController @RequestMapping("/jwt") public class Login { @Autowired private RedisUtils redisUtil; @PostMapping("/login") public String login(User user, HttpServletResponse response) { JSONObject json = new JSONObject(); try { //ไปŽredis่Žทๅ–็”จๆˆทๅๅฏ†็  Object users = redisUtil.get("user"); Object password = redisUtil.get("password"); if(users .equals(user.getUser()) && password .equals(user.getPassword()) ) { Map<String, Object> userInfoMap = new HashMap<>(); userInfoMap.put("userName", users); userInfoMap.put("password", password); String token = JwtUtils.generateToken(userInfoMap); json.put("token",token); json.put("code",0); json.put("msg","็™ปๅฝ•ๆˆๅŠŸ"); }else { json.put("code","401"); json.put("msg","็”จๆˆทๅๆˆ–ๅฏ†็ ้”™่ฏฏ"); } }catch (Exception e) { e.printStackTrace(); json.put("code","501"); } return json.toString(); } @GetMapping("/test") //็”จๆˆทๅช้œ€ๆบๅธฆ้ฆ–ๆฌก็™ปๅฝ•ๆ—ถๆบๅธฆ็š„token่ฎฟ้—ฎๆŽฅๅฃๅณๅฏ public String test(HttpServletRequest request) { // ็™ปๅฝ•ๆˆๅŠŸๅŽ๏ผŒไปŽrequestไธญ่Žทๅ–็”จๆˆทไฟกๆฏ Claims claims = (Claims) request.getAttribute(JwtInterceptor.USER_INFO_KEY); if (null != claims) { return (String) claims.get("userName")+"๏ผŒๅฏ†็ ๏ผš"+(String) claims.get("password"); } else { return "fail"; } } }
[ "yuansenkang@inspur.com" ]
yuansenkang@inspur.com
77e4d3a97eae4c97613d45b7dfe9787b2581a4e4
9575aea4b375a94a05f2d4db65049db8f349f7e3
/rtmp-common/src/main/java/com/karvin/rtmp/common/chunk/ChunkHeader1.java
2be976544e0c994f5a5c1573f084a3d546411b04
[]
no_license
karvin/rtmp
1448be9e31645422c11df029be1a343a2a76bd05
f09506ad6932d49c315724df1316ce1c30d29bf5
refs/heads/master
2021-01-10T08:49:40.943811
2015-12-16T14:16:15
2015-12-16T14:16:15
47,984,751
6
0
null
null
null
null
UTF-8
Java
false
false
1,045
java
package com.karvin.rtmp.common.chunk; /** * Created by karvin on 15/12/15. */ public class ChunkHeader1 implements ChunkData { private int timestampDelta; private int messageLength; private int messageType; public ChunkHeader1(int timestampDelta, int messageLength, int messageType){ if(this.timestampDelta >= 0xffffff){ this.timestampDelta = 0xffffff; }else { this.timestampDelta = timestampDelta; } this.messageLength = messageLength; this.messageType = messageType; } public byte[] getBytes() { byte[] bytes = new byte[7]; bytes[0] = (byte)((this.timestampDelta>>16)&0xff); bytes[1] = (byte)((this.timestampDelta>>8)&0xff); bytes[2] = (byte)(this.timestampDelta&0xff); bytes[3] = (byte)((this.messageLength>>16)&0xff); bytes[4] = (byte)((this.messageLength>>8)&0xff); bytes[5] = (byte)(this.messageLength&0xff); bytes[6] = (byte)(this.messageType&0xff); return bytes; } }
[ "zengmengchun@edaijia-inc.cn" ]
zengmengchun@edaijia-inc.cn
21e3e5b387134bd727069ee6bd57fece5ce31aaa
6f40baeb9b28bb1cb9738ab9624d8da4d07b9db3
/workspace/src/com/looper/work0327/work01/People.java
b7061d87ebc9990be83b29ba33bf7ea06cf8bcb4
[]
no_license
1004032560/Java
cacf3192166dc632e91be1ce4b9600191a37916d
10a84834bd6a300bf6bdcc91acebde351242aa9c
refs/heads/master
2021-04-04T05:09:24.947749
2020-05-31T14:04:34
2020-05-31T14:04:34
248,426,820
1
0
null
null
null
null
UTF-8
Java
false
false
389
java
package com.looper.work0327.work01; import java.io.Serializable; public class People implements Serializable { private int id; private String name; private int age; private String address; public People(int id, String name, int age, String address) { this.id = id; this.name = name; this.age = age; this.address = address; } }
[ "1004032560@qq.com" ]
1004032560@qq.com
10c96f96fcde71fa022a645ef460a6b4f7d69f2b
cea5c922fba58564598af86801def152e332a614
/Car.java
2b5e0874472a0da6bf82317f74173f68e50ce553
[]
no_license
dcgutierrez93/Composition
46c4f64f0dd11378ad214a14a6563e64f37e47f2
353dacfcc1a11ec853d365bf01d2e1657b814524
refs/heads/master
2021-05-06T23:20:12.926913
2017-12-04T16:47:19
2017-12-04T16:47:19
112,963,984
0
0
null
null
null
null
UTF-8
Java
false
false
279
java
// Inheritance for car. public class Car extends Vehicle { private int doors; private int engineCapacity; public Car(String name, int doors, int engineCapacity) { super(name); this.doors = doors; this.engineCapacity = engineCapacity; } }
[ "dcgutierrez93@yahoo.com" ]
dcgutierrez93@yahoo.com
cb16f19d9dd225f15e0ac86905de4ef5291e7496
8652c0388f78726b6add0f6786a95cbc9abff3da
/src/main/java/com/kh/ot/mypage/vo/Address.java
8718cd88f3fd77cca1a401b27ebca9d66a280baa
[]
no_license
Vaan525/ShoppingMall-Project
9c9a6d1939bb4bf10dde4937e0cb42f7414aa7aa
e8c8674e183a788991257e6abd20ef5e82740742
refs/heads/master
2023-01-02T22:24:19.525510
2020-06-07T03:56:16
2020-06-07T03:56:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,635
java
package com.kh.ot.mypage.vo; public class Address { private int adNo; // ๋ฐฐ์†ก์ง€๋ฒˆํ˜ธ private int memNo; // ํšŒ์›๋ฒˆํ˜ธ private String adTitle; // ๋ฐฐ์†ก์ง€๋ช… private String adReceiver; // ๋ฐ›๋Š”์ด private String adAddress; // ๋ฐฐ์†ก์ฃผ์†Œ private String adPhone; // ํœด๋Œ€ํฐ๋ฒˆํ˜ธ public Address() {} public Address(int adNo, int memNo, String adTitle, String adReceiver, String adAddress, String adPhone) { super(); this.adNo = adNo; this.memNo = memNo; this.adTitle = adTitle; this.adReceiver = adReceiver; this.adAddress = adAddress; this.adPhone = adPhone; } public int getAdNo() { return adNo; } public void setAdNo(int adNo) { this.adNo = adNo; } public int getMemNo() { return memNo; } public void setMemNo(int memNo) { this.memNo = memNo; } public String getAdTitle() { return adTitle; } public void setAdTitle(String adTitle) { this.adTitle = adTitle; } public String getAdReceiver() { return adReceiver; } public void setAdReceiver(String adReceiver) { this.adReceiver = adReceiver; } public String getAdAddress() { return adAddress; } public void setAdAddress(String adAddress) { this.adAddress = adAddress; } public String getAdPhone() { return adPhone; } public void setAdPhone(String adPhone) { this.adPhone = adPhone; } @Override public String toString() { return "Address [adNo=" + adNo + ", memNo=" + memNo + ", adTitle=" + adTitle + ", adReceiver=" + adReceiver + ", adAddress=" + adAddress + ", adPhone=" + adPhone + "]"; } }
[ "52619813+wooyejin@users.noreply.github.com" ]
52619813+wooyejin@users.noreply.github.com
3643b736a23bef12ba835989441cba2c1cc55c21
c769888f056bfd8c7e8c07f67db3d1b947689e81
/week8-week8_11.BoxesAndThings/src/Book.java
8357ef90de4a034f1a8ee9837d70cee012a223df
[]
no_license
demciucvictor/Java-learning-part-2
d51cc5f09db6bbf5489d906292eb065837f979ad
facb41ac02a1458f8314e3b7fdf5d846a33e1fbd
refs/heads/master
2020-04-10T18:26:23.387785
2018-12-11T11:01:54
2018-12-11T11:01:54
161,204,329
0
0
null
null
null
null
UTF-8
Java
false
false
450
java
public class Book implements ToBeStored{ private String writter; private String name; private double weight; public Book(String w, String n, double we){ this.writter=w; this.name=n; this.weight=we; } @Override public double weight(){ return this.weight; } @Override public String toString(){ return this.writter+": "+this.name; } }
[ "noreply@github.com" ]
demciucvictor.noreply@github.com
6b9cbd27ca635fd6bf7c30cd661f4a8657968aeb
169f2ee5f59956e0d6d241fa13112eb5fb36b17e
/app/src/main/java/edu/cmu/ssnayak/collage/Pile.java
e27f17dc0525a3ac132b113f7f137f0af54408d3
[]
no_license
sacnayak/collage
b98686085d95cca49bf8b5c5694499a3bf965fea
8b6176908098d0ff3612ef1db6482c059f66ecce
refs/heads/master
2021-01-10T04:34:56.845024
2015-10-17T03:41:56
2015-10-17T03:41:56
43,729,030
0
0
null
null
null
null
UTF-8
Java
false
false
1,044
java
package edu.cmu.ssnayak.collage; import android.graphics.PointF; /** * Created by snayak on 10/16/15. * <p/> * places all of its children at its own top left corner */ public class Pile extends ArtistBase { /** * Constructor for the Pile specialized layout Artist object * as per contract * @param x * @param y * @param w * @param h */ public Pile(float x, float y, float w, float h) { super(); setPosition(x, y); setSize(w, h); } /** * Overriding doLayout of parent class implementation for specialied layout * in a pile */ @Override public void doLayout() { //Pile is a specialized container that lays out all of it's children at it's own top left corner //set all children's X, Y = 0 by defauly for (Artist child : mChildren) { child.setX(0); child.setY(0); //call doLayout for each of it's children to traverse down the tree child.doLayout(); } } }
[ "sachin.nayak101@gmail.com" ]
sachin.nayak101@gmail.com
3d8f24e1da980d2af037b6555e1e2b0f6004bfae
cefc93ac580c77530d230ace37bcd6719c5bb9e0
/src/game/Case.java
0cabf58066d06953bfee36070e775150f2e0a928
[]
no_license
juliencol/robot-turtles
7a05a3cdec5a85561ec6c8d6aca262a0fe570152
686cca8b8deb0b8a711c845efc08b2bfec46c631
refs/heads/master
2021-01-04T14:55:25.589765
2020-02-15T12:36:44
2020-02-15T12:36:44
240,599,766
1
0
null
null
null
null
UTF-8
Java
false
false
741
java
package game; import occupier.Occupier; /** * Type de donnee representant une Case. * * @author LAMY David, COLOMBAIN Julien et HU Dylan * * @version 1.0 */ public class Case { private Occupier occupier; /** * Cree une case contenant un occupant * @param occupier, occupant contenu dans la case */ public Case(Occupier occupier) { this.occupier = occupier; } /** * Fournit l'occupant * @return l'occupant */ public Occupier getOccupier() { return occupier; } /** * Modifie l'occupant se trouvant dans la case par celui sp๏ฟฝcifi๏ฟฝ * @param occupier, le nouvelle occupant */ public void setOccupier(Occupier occupier) { this.occupier = occupier; } }
[ "julien@colombain.com" ]
julien@colombain.com
3adcc3a030f23ff36da8ffaef7b44d4a734229b7
9f8c874ebca18ab65d18f1f4d6a2aad7ff74d37e
/ repsystestbed/RepSysTestbedConsole/src/cu/rst/core/petrinet/Token.java
2bfafce444521454c38096f00ebce1e648e1d1cc
[]
no_license
codeaudit/repsystestbed
d326eed79ed1110cb4245b867a2540bd4b89a2b0
871cf3db52c5288ee038c3d013db8d479f2db475
refs/heads/master
2021-01-23T05:10:35.884092
2015-09-15T02:09:13
2015-09-15T02:09:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,222
java
package cu.rst.core.petrinet; import java.util.ArrayList; /** * Each token contains a list of changes. These changes can be Feedbacks, reputation edges, trust edges. * It also has a reference to a place which can be a FHG, RG, or a TG. It's use is as follows: * In addition to the changes in a graph, an algorithm also needs to the graph itself. This reference is set by: * 1. a user * 2. a transition (See Transition.fire(). for e.g. ET creates tokens, adds the new reputation edges and sets RG as m_place). * * @author partheinstein * */ public class Token implements Comparable { public ArrayList m_changes; public Object m_place; public int m_id; private static int g_id; public Token(ArrayList changes, Object place) { m_changes = changes; m_place = place; m_id = g_id++; } @Override public int compareTo(Object o) { Token t = (Token)o; //yes, cast exception can occur. So caller make sure you catch this if(m_id < t.m_id) return -1; else if(m_id > t.m_id) return 1; return 0; } @Override public boolean equals(Object o) { if(!(o instanceof Token)) return false; Token t = (Token)o; return t.m_id==m_id; } }
[ "partheinstein@gmail.com" ]
partheinstein@gmail.com
cfc1623faf8a25b9e93703ef8c324ea70934a945
4aa1f7dce6fd5494688049ddbf2b49c0e34b05f9
/sample/src/main/java/com/liqi/nohttprxutils/ImageDownloadDemoActivity.java
02bee08d75a30944520a3faa240e3e19ba356895
[]
no_license
291700351/NohttpRxUtils
1b910d6d199ee4115fe1ca8f15d60c0f809c2116
af6da08fdc2212db9bdb2028accf5cf54ae1b322
refs/heads/master
2021-01-22T09:55:06.182391
2017-09-04T07:11:52
2017-09-04T07:11:52
102,331,163
1
0
null
2017-09-04T07:21:16
2017-09-04T07:21:16
null
UTF-8
Java
false
false
1,345
java
package com.liqi.nohttprxutils; import android.graphics.Bitmap; import android.view.View; import android.widget.Button; import android.widget.ImageView; import com.liqi.nohttprxutils.base.BaseActivity; import com.liqi.nohttputils.RxNoHttpUtils; /** * ๅ›พ็‰‡่ฏทๆฑ‚ๆผ”็คบ็•Œ้ข * Created by LiQi on 2016/12/30. */ public class ImageDownloadDemoActivity extends BaseActivity<Bitmap> implements View.OnClickListener { private ImageView mImageView; @Override protected void onCreate() { setContentView(R.layout.image_download_demo_activity); mImageView = $(R.id.imageView); Button imageButton = $(R.id.image_button); imageButton.setOnClickListener(this); imageButton.setAlpha(0.6f); mImageView.setAlpha(0.6f); } @Override public void onNext(Bitmap response) { if (null != response) mImageView.setImageBitmap(response); } @Override public void onClick(View v) { //ๅผ€ๅง‹่ฏทๆฑ‚ RxNoHttpUtils.rxNohttpRequest() .get() .url(StaticHttpUrl.IMAGE_URL) .setDialogGetListener(this) .builder(Bitmap.class, this) .requestRxNoHttp(); } @Override protected String requestHint() { return "ๆญฃๅœจ่ฏทๆฑ‚ๅ›พ็‰‡ไธญ,่ฏท็จๅŽ..."; } }
[ "liqi@qq.com" ]
liqi@qq.com
71acfea878673d0f310e487bf68cc7d76bf834bd
2e180d5ac21d61a0dac1a0a6c42ed64ed3060404
/source/Tools/src/tum0r/test/Main.java
4afe42015578d376e609eb21de4fb0e9a734e99c
[]
no_license
wangxiaokuang/javatools
a74354b552a91e0aa608dac4f57224ee895d50e4
22f565ba6f71f57665d30cd47e2eb648c379e3de
refs/heads/master
2020-03-11T22:52:55.918623
2018-04-20T03:53:11
2018-04-20T03:53:11
130,305,604
0
0
null
null
null
null
UTF-8
Java
false
false
534
java
package tum0r.test; public class Main { public static void main(String[] args) { // SQLTest.test(); // ShellTest.test(); // AddressTest.test(); // TextFileTest.test(); // ExcelTest.test(); // DialogTest.test(); // SortTest.test(); // SearchTest.test(); // PasswordTest.test(); // HTTPTest.test(); // XORTest.test(); // SQLSafeTest.test(); // BinaryTreeTest.test(); // StackTest.test(); // QueueTest.test(); // ComplexCalaulatorTest.test(); // YangHuiTest.test(); // PermutationTest.test(); } }
[ "xiaokuang@live.com" ]
xiaokuang@live.com
ed94ff641911a8bfb6f8854af76485b4370255a5
a2bb60104cda237b0be5395e159afeca6b1e1a0d
/src/test/java/cn/itcast/jpa/springdata/test/SpringdataTest1.java
502836e13ddb034786d0830b092554b02ad9a35f
[]
no_license
polarbear007/JPA-Springdata-maven
d09fa668c776d39a58abebb64a2aa3f7651e49b8
25c0d3c902f80e9b00d8a446dafadc57c8cdac3f
refs/heads/master
2020-04-13T07:15:33.646171
2018-12-28T15:54:31
2018-12-28T15:54:31
163,045,720
0
0
null
null
null
null
UTF-8
Java
false
false
3,616
java
package cn.itcast.jpa.springdata.test; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import cn.itcast.jpa.springdata.entity.Customer; import cn.itcast.jpa.springdata.service.CustomerService; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration("classpath:applicationContext.xml") public class SpringdataTest1 { @Autowired private CustomerService customerService; // ๅ…ˆไฟๅญ˜ไธ€ไบ›ๆ•ฐๆฎ๏ผŒๅŽ้ขๅฅฝๆต‹่ฏ• @Test public void test1() { Customer c1 = new Customer(); c1.setCname("ๅ‘จๆ˜Ÿๆ˜Ÿ"); c1.setBirth(new Date()); customerService.saveCustomer(c1); Customer c2 = new Customer(); c2.setCname("ๅˆ˜ๅพทๅŽ"); c2.setBirth(new Date()); customerService.saveCustomer(c2); Customer c3 = new Customer(); c3.setCname("ๆž—้’้œž"); c3.setBirth(new Date()); customerService.saveCustomer(c3); } // ไฟๅญ˜ไธ€ไธช้›†ๅˆ @Test public void test2() { List<Customer> list = new ArrayList<>(); Customer c1 = new Customer(); c1.setCname("eric"); c1.setBirth(new Date()); list.add(c1); Customer c2 = new Customer(); c2.setCname("rose"); c2.setBirth(new Date()); list.add(c2); Customer c3 = new Customer(); c3.setCname("tom"); c3.setBirth(new Date()); list.add(c3); customerService.saveCustomerList(list); } // ๆต‹่ฏ•ๆŸฅ่ฏข้€š่ฟ‡ cid ๆŸฅ่ฏขcustomerๅฏน่ฑก็š„ๆ–นๆณ• @Test public void test3() { Customer customer = customerService.findByCid(1); System.out.println(customer.getCname() + "---" + customer.getBirth()); } // ๆต‹่ฏ•้€š่ฟ‡ไธ€ไธช cid ้›†ๅˆๆŸฅ่ฏขๅฏนๅบ”็š„ๅฏน่ฑก้›†ๅˆ @Test public void test4() { List<Integer> list = new ArrayList<>(); list.add(1); list.add(4); list.add(5); list.add(500); // ๅฆ‚ๆžœ ๆŸฅ่ฏข็š„ id ไธๅญ˜ๅœจ๏ผŒไนŸไธไผšๆŠฅ้”™ List<Customer> customerList = customerService.findByList(list); if(customerList != null) { for (Customer customer : customerList) { System.out.println(customer); } } } // ๆต‹่ฏ•ๆŸฅ่ฏขๆ‰€ๆœ‰ๅฏน่ฑก @Test public void test5() { List<Customer> list = customerService.findAll(); if(list != null) { for (Customer customer : list) { System.out.println(customer); } } } // ๆต‹่ฏ•ๆ˜ฏๅฆๅญ˜ๅœจ ๆŸไธช id @Test public void test6() { System.out.println(customerService.existsId(4)); System.out.println(customerService.existsId(10)); } // ๆŸฅ่ฏขๆ€ปๅ…ฑๆœ‰ๅคšไธชๆก่ฎฐๅฝ• @Test public void test7() { System.out.println(customerService.getCount()); } // ๆต‹่ฏ•ๆ นๆฎ id ๅˆ ้™ค // ๅˆ ้™คไน‹ๅ‰ไผšๅ…ˆๆ นๆฎ่ฟ™ไธช id ๅŽปๆŸฅ่ฏขไธ€ๆฌก๏ผŒๅฆ‚ๆžœๆŸฅๅˆฐไบ†๏ผŒๅ†ๆ‰ง่กŒๅˆ ้™ค // ๅฆ‚ๆžœๆฒกๆœ‰ๆŸฅๅˆฐไผšๆŠฅ้”™ @Test public void test8() { // customerService.deleteByCid(10); customerService.deleteByCid(6); } // ๆต‹่ฏ•่ƒฝไธ่ƒฝไฟๅญ˜ไธ€ไธชๅธฆๆœ‰ id ็š„ๅฏน่ฑก----> ๅฏไปฅ // ไฟๅญ˜ไธ€ไธช ๅธฆๆœ‰ id ็š„ๅฏน่ฑกๆ—ถ๏ผŒไผšๅ…ˆๆ นๆฎ่ฟ™ไธช id ๆŸฅ่ฏข๏ผŒๅฆ‚ๆžœ่ฟ™ไธช id ๅญ˜ๅœจๅฏน่ฑก๏ผŒ้‚ฃไนˆๆ‰ง่กŒ update ๆ“ไฝœ // ๅฆ‚ๆžœ่ฟ™ไธช id ไธๅญ˜ๅœจ๏ผŒ้‚ฃไนˆๅฐฑๆ‰ง่กŒ insert ๆ“ไฝœ๏ผŒ ไธ่ฟ‡ๆ’ๅ…ฅ็š„ๆ—ถๅ€™ไฝฟ็”จ็š„ไธป้”ฎๅ€ผไธๆ˜ฏๆ นๆฎๆˆ‘ไปฌ่‡ชๅทฑ่ฎพ็ฝฎ็š„ id @Test public void test9() { Customer c = new Customer(); c.setCid(7); c.setCname("lala"); c.setBirth(new Date()); customerService.saveCustomer(c); } }
[ "1479124685@qq.com" ]
1479124685@qq.com
189b7ba1325dddd72de991291a468a550cc3f5c4
e6ba73b1f330e457e441c542e6241740150ea3da
/src/com/sdajava/strategia2/Pracownik.java
b160b31a71bde679c2483777f4f62229df33c74c
[]
no_license
SdaJavaTorun/Strategia_AB
79112cc2f07cac23da721c4fa68544bb6469b891
bc4bc978b25c295961dd2cace4ff29babd046f56
refs/heads/master
2021-01-19T08:29:35.475123
2017-04-08T17:00:35
2017-04-08T17:00:35
87,637,043
0
0
null
null
null
null
UTF-8
Java
false
false
1,366
java
package com.sdajava.strategia2; import com.sdajava.strategia2.czasWolny.Literatura; import com.sdajava.strategia2.czasWolny.Silownia; import com.sdajava.strategia2.dojazd.Rower; import com.sdajava.strategia2.dojazd.Samochod; import com.sdajava.strategia2.praca.Leczenie; import com.sdajava.strategia2.praca.NaprawaSamochodow; import com.sdajava.strategia2.praca.RoznoszenieListow; /** * Created by Andrzej on 08.04.2017. */ public class Pracownik { //Contex private String nazwaCiecia; public Pracownik(String nazwaCiecia) { this.nazwaCiecia = nazwaCiecia; } public void execute () { if(nazwaCiecia.equals("Mechanik")) { System.out.println("\n:: Mechanik ::"); new NaprawaSamochodow().praca(); new Samochod().dojezd(); new Silownia().czsWolny(); } else if(nazwaCiecia.equals("Listonosz")) { System.out.println("\n:: Listonosz ::"); new RoznoszenieListow().praca(); new Rower().dojezd(); new Literatura().czsWolny(); } else if(nazwaCiecia.equals("Lekarz")) { System.out.println("\n:: Lekarz ::"); new Leczenie().praca(); new Samochod().dojezd(); new Literatura().czsWolny(); } } }
[ "abiczyk@gmail.com" ]
abiczyk@gmail.com
cb00e10a7e30ec7bad7a106732c31bc94b3cdc5f
515be9aa8b32764831f58045de1417450807099e
/src/com/mkyong/users/service/Tramite_actualizacion_tranpsService.java
148b58eb84b15c6ff2d88f8b09dfd0d455e9ec98
[]
no_license
charlygg/SMG
fb8228556f69ba9c9fe9e664c408ae8ba0eeb7eb
04d8c5ab0a0c2831318efed2d918b73a9e7358cd
refs/heads/HEAD
2022-12-23T17:54:55.052126
2019-05-24T04:30:33
2019-05-24T04:30:33
188,346,342
0
0
null
2022-12-09T23:48:16
2019-05-24T03:29:22
Java
UTF-8
Java
false
false
838
java
package com.mkyong.users.service; import java.util.List; import com.ixanaui.utils.MensajeBean; import com.ixanaui.utils.WrapperTramite; import com.mkyong.users.model.Tramite_actualizacion_tranps; public interface Tramite_actualizacion_tranpsService { public List<Tramite_actualizacion_tranps> busquedaById(Tramite_actualizacion_tranps nuevo); public List<Tramite_actualizacion_tranps> lista(); public List<Tramite_actualizacion_tranps> lista(String rol); public MensajeBean inserta(Tramite_actualizacion_tranps nuevo); public MensajeBean actualiza(Tramite_actualizacion_tranps nuevo); public MensajeBean elimina(Tramite_actualizacion_tranps nuevo); public Tramite_actualizacion_tranps consulta(Tramite_actualizacion_tranps nuevo, String rol); public List<WrapperTramite> listaTramitesByZona(String municipio,String colonia); }
[ "car_los_garcigarza@hotmail.com" ]
car_los_garcigarza@hotmail.com
8f6f52e2065b4ad505943da51d18798ac2663a76
1ef58d5fec2d57f044bd570619df1b7df669f3ae
/jTorre/src/jcadastropendentes/jFCrecenciados.java
2562e50b8dab04a0d46195cbb9dd64dd9f0a9baa
[]
no_license
lcarrafabr/jtorre
1524038ce3aadc168ddcc06638a6427a47febf81
9d3bfe5025395690ebd3c2bc1ce826c10ee994a4
refs/heads/master
2020-04-23T02:35:41.308845
2019-02-15T11:05:15
2019-02-15T11:05:15
170,851,239
0
0
null
null
null
null
UTF-8
Java
false
false
79,030
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package jcadastropendentes; import Classes.*; import java.sql.ResultSet; import java.sql.SQLException; import java.text.ParseException; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.ImageIcon; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing.table.DefaultTableModel; /** * * @author lcbenfic */ public class jFCrecenciados extends javax.swing.JDialog { /** * Creates new form jFCrecenciados */ public jFCrecenciados() { initComponents(); this.setIconImage(new ImageIcon(getClass().getResource("/resources/radio-tower-32.png")).getImage()); } /** * 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() { jToolBar1 = new javax.swing.JToolBar(); buscarjButton = new javax.swing.JButton(); novojButton = new javax.swing.JButton(); editarjButton = new javax.swing.JButton(); jSeparator3 = new javax.swing.JToolBar.Separator(); salvarjButton = new javax.swing.JButton(); jSeparator2 = new javax.swing.JToolBar.Separator(); alterarjButton = new javax.swing.JButton(); excluirjButton = new javax.swing.JButton(); jSeparator1 = new javax.swing.JToolBar.Separator(); limparjButton = new javax.swing.JButton(); sairjButton = new javax.swing.JButton(); jPanel1 = new javax.swing.JPanel(); jPanel2 = new javax.swing.JPanel(); jScrollPane1 = new javax.swing.JScrollPane(); gradeCredenciadajTable = new javax.swing.JTable(); jTabbedPane1 = new javax.swing.JTabbedPane(); jPanel3 = new javax.swing.JPanel(); jPanel4 = new javax.swing.JPanel(); jLabel1 = new javax.swing.JLabel(); supRegOpjComboBox = new javax.swing.JComboBox(); cadastraSupRegOpjButton = new javax.swing.JButton(); atualizaSupRegOpjButton = new javax.swing.JButton(); jLabel2 = new javax.swing.JLabel(); gerentejComboBox = new javax.swing.JComboBox(); cadastraGerentejButton = new javax.swing.JButton(); atualizaGerentejButton = new javax.swing.JButton(); jLabel3 = new javax.swing.JLabel(); supOperacoesjComboBox = new javax.swing.JComboBox(); cadastraSupOperacoesjButton = new javax.swing.JButton(); atualizaSupOperacoesjButton = new javax.swing.JButton(); jLabel4 = new javax.swing.JLabel(); supVendasjComboBox = new javax.swing.JComboBox(); cadastraSupVendasjButton = new javax.swing.JButton(); atualizaSupVendasjButton = new javax.swing.JButton(); jLabel5 = new javax.swing.JLabel(); monitorjComboBox = new javax.swing.JComboBox(); cadastraMonitorjButton = new javax.swing.JButton(); atualizaMonitorjButton = new javax.swing.JButton(); jLabel6 = new javax.swing.JLabel(); consultorjComboBox = new javax.swing.JComboBox(); cadastraConsultorjButton = new javax.swing.JButton(); atualizaConsultorjButton = new javax.swing.JButton(); jPanel5 = new javax.swing.JPanel(); jLabel7 = new javax.swing.JLabel(); jLabel8 = new javax.swing.JLabel(); jLabel9 = new javax.swing.JLabel(); jLabel10 = new javax.swing.JLabel(); pdvjTextField = new javax.swing.JTextField(); ufjComboBox = new javax.swing.JComboBox(); microRegiaojTextField = new javax.swing.JTextField(); cnpjjFormattedTextField = new javax.swing.JFormattedTextField(); jLabel11 = new javax.swing.JLabel(); codigoCredenciadajTextField = new javax.swing.JTextField(); jLabel12 = new javax.swing.JLabel(); jLabel13 = new javax.swing.JLabel(); jLabel14 = new javax.swing.JLabel(); jPanel6 = new javax.swing.JPanel(); jPanel7 = new javax.swing.JPanel(); jScrollPane2 = new javax.swing.JScrollPane(); gradeTorreGatjTable = new javax.swing.JTable(); cadastrarTorreGatjButton = new javax.swing.JButton(); atualizaGradeTorregatjButton = new javax.swing.JButton(); setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE); setResizable(false); addWindowListener(new java.awt.event.WindowAdapter() { public void windowOpened(java.awt.event.WindowEvent evt) { formWindowOpened(evt); } }); jToolBar1.setFloatable(false); jToolBar1.setRollover(true); buscarjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/buscar.png"))); // NOI18N buscarjButton.setText("Buscar"); buscarjButton.setFocusable(false); buscarjButton.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER); buscarjButton.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM); buscarjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { buscarjButtonActionPerformed(evt); } }); jToolBar1.add(buscarjButton); novojButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/new2.png"))); // NOI18N novojButton.setText("Novo"); novojButton.setFocusable(false); novojButton.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER); novojButton.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM); novojButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { novojButtonActionPerformed(evt); } }); jToolBar1.add(novojButton); editarjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/edit.png"))); // NOI18N editarjButton.setText("Editar"); editarjButton.setFocusable(false); editarjButton.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER); editarjButton.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM); editarjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { editarjButtonActionPerformed(evt); } }); jToolBar1.add(editarjButton); jToolBar1.add(jSeparator3); salvarjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/save.png"))); // NOI18N salvarjButton.setText("Salvar"); salvarjButton.setFocusable(false); salvarjButton.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER); salvarjButton.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM); salvarjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { salvarjButtonActionPerformed(evt); } }); jToolBar1.add(salvarjButton); jToolBar1.add(jSeparator2); alterarjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/save2.png"))); // NOI18N alterarjButton.setText("Alterar"); alterarjButton.setFocusable(false); alterarjButton.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER); alterarjButton.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM); alterarjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { alterarjButtonActionPerformed(evt); } }); jToolBar1.add(alterarjButton); excluirjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/delete.png"))); // NOI18N excluirjButton.setText("Excluir"); excluirjButton.setFocusable(false); excluirjButton.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER); excluirjButton.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM); excluirjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { excluirjButtonActionPerformed(evt); } }); jToolBar1.add(excluirjButton); jToolBar1.add(jSeparator1); limparjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/clear.png"))); // NOI18N limparjButton.setText("Limpar"); limparjButton.setFocusable(false); limparjButton.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER); limparjButton.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM); jToolBar1.add(limparjButton); sairjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/exit.png"))); // NOI18N sairjButton.setText("Sair"); sairjButton.setFocusable(false); sairjButton.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER); sairjButton.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM); sairjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { sairjButtonActionPerformed(evt); } }); jToolBar1.add(sairjButton); jPanel2.setBorder(javax.swing.BorderFactory.createEtchedBorder()); gradeCredenciadajTable.setModel(new javax.swing.table.DefaultTableModel( new Object [][] { }, new String [] { "Id#", "Credenciada", "PDV", "Cรณdigo" } ) { boolean[] canEdit = new boolean [] { true, false, false, true }; public boolean isCellEditable(int rowIndex, int columnIndex) { return canEdit [columnIndex]; } }); gradeCredenciadajTable.addMouseListener(new java.awt.event.MouseAdapter() { public void mouseClicked(java.awt.event.MouseEvent evt) { gradeCredenciadajTableMouseClicked(evt); } }); jScrollPane1.setViewportView(gradeCredenciadajTable); gradeCredenciadajTable.getColumnModel().getColumn(0).setResizable(false); gradeCredenciadajTable.getColumnModel().getColumn(1).setResizable(false); gradeCredenciadajTable.getColumnModel().getColumn(2).setResizable(false); gradeCredenciadajTable.getColumnModel().getColumn(3).setResizable(false); javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2); jPanel2.setLayout(jPanel2Layout); jPanel2Layout.setHorizontalGroup( jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel2Layout.createSequentialGroup() .addContainerGap() .addComponent(jScrollPane1) .addContainerGap()) ); jPanel2Layout.setVerticalGroup( jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel2Layout.createSequentialGroup() .addContainerGap() .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 75, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); jPanel4.setBorder(javax.swing.BorderFactory.createEtchedBorder()); jLabel1.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N jLabel1.setForeground(new java.awt.Color(0, 0, 204)); jLabel1.setText("Supervisor regional de operaรงรตes"); cadastraSupRegOpjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/add_small.png"))); // NOI18N cadastraSupRegOpjButton.setContentAreaFilled(false); cadastraSupRegOpjButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); cadastraSupRegOpjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { cadastraSupRegOpjButtonActionPerformed(evt); } }); atualizaSupRegOpjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/refresh.png"))); // NOI18N atualizaSupRegOpjButton.setContentAreaFilled(false); atualizaSupRegOpjButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); atualizaSupRegOpjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { atualizaSupRegOpjButtonActionPerformed(evt); } }); jLabel2.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N jLabel2.setForeground(new java.awt.Color(0, 0, 204)); jLabel2.setText("Gerente"); cadastraGerentejButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/add_small.png"))); // NOI18N cadastraGerentejButton.setContentAreaFilled(false); cadastraGerentejButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); cadastraGerentejButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { cadastraGerentejButtonActionPerformed(evt); } }); atualizaGerentejButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/refresh.png"))); // NOI18N atualizaGerentejButton.setContentAreaFilled(false); atualizaGerentejButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); atualizaGerentejButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { atualizaGerentejButtonActionPerformed(evt); } }); jLabel3.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N jLabel3.setForeground(new java.awt.Color(0, 0, 204)); jLabel3.setText("Supervidor de operaรงรตes"); cadastraSupOperacoesjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/add_small.png"))); // NOI18N cadastraSupOperacoesjButton.setContentAreaFilled(false); cadastraSupOperacoesjButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); cadastraSupOperacoesjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { cadastraSupOperacoesjButtonActionPerformed(evt); } }); atualizaSupOperacoesjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/refresh.png"))); // NOI18N atualizaSupOperacoesjButton.setContentAreaFilled(false); atualizaSupOperacoesjButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); atualizaSupOperacoesjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { atualizaSupOperacoesjButtonActionPerformed(evt); } }); jLabel4.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N jLabel4.setForeground(new java.awt.Color(0, 0, 204)); jLabel4.setText("Supervisor de vendas"); cadastraSupVendasjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/add_small.png"))); // NOI18N cadastraSupVendasjButton.setContentAreaFilled(false); cadastraSupVendasjButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); cadastraSupVendasjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { cadastraSupVendasjButtonActionPerformed(evt); } }); atualizaSupVendasjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/refresh.png"))); // NOI18N atualizaSupVendasjButton.setContentAreaFilled(false); atualizaSupVendasjButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); atualizaSupVendasjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { atualizaSupVendasjButtonActionPerformed(evt); } }); jLabel5.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N jLabel5.setForeground(new java.awt.Color(0, 0, 204)); jLabel5.setText("Monitor"); cadastraMonitorjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/add_small.png"))); // NOI18N cadastraMonitorjButton.setContentAreaFilled(false); cadastraMonitorjButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); cadastraMonitorjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { cadastraMonitorjButtonActionPerformed(evt); } }); atualizaMonitorjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/refresh.png"))); // NOI18N atualizaMonitorjButton.setContentAreaFilled(false); atualizaMonitorjButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); atualizaMonitorjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { atualizaMonitorjButtonActionPerformed(evt); } }); jLabel6.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N jLabel6.setForeground(new java.awt.Color(0, 0, 204)); jLabel6.setText("Consultor"); cadastraConsultorjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/add_small.png"))); // NOI18N cadastraConsultorjButton.setContentAreaFilled(false); cadastraConsultorjButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); cadastraConsultorjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { cadastraConsultorjButtonActionPerformed(evt); } }); atualizaConsultorjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/refresh.png"))); // NOI18N atualizaConsultorjButton.setContentAreaFilled(false); atualizaConsultorjButton.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR)); atualizaConsultorjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { atualizaConsultorjButtonActionPerformed(evt); } }); javax.swing.GroupLayout jPanel4Layout = new javax.swing.GroupLayout(jPanel4); jPanel4.setLayout(jPanel4Layout); jPanel4Layout.setHorizontalGroup( jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel4Layout.createSequentialGroup() .addContainerGap() .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jLabel1) .addComponent(jLabel2) .addComponent(jLabel3) .addComponent(jLabel4) .addComponent(jLabel5) .addComponent(jLabel6) .addGroup(jPanel4Layout.createSequentialGroup() .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false) .addGroup(javax.swing.GroupLayout.Alignment.LEADING, jPanel4Layout.createSequentialGroup() .addComponent(consultorjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, 205, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(cadastraConsultorjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)) .addGroup(javax.swing.GroupLayout.Alignment.LEADING, jPanel4Layout.createSequentialGroup() .addComponent(monitorjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, 205, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(cadastraMonitorjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)) .addGroup(javax.swing.GroupLayout.Alignment.LEADING, jPanel4Layout.createSequentialGroup() .addComponent(supVendasjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, 205, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(cadastraSupVendasjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)) .addGroup(javax.swing.GroupLayout.Alignment.LEADING, jPanel4Layout.createSequentialGroup() .addComponent(supOperacoesjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, 205, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(cadastraSupOperacoesjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)) .addGroup(javax.swing.GroupLayout.Alignment.LEADING, jPanel4Layout.createSequentialGroup() .addComponent(gerentejComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, 205, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(cadastraGerentejButton, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)) .addGroup(javax.swing.GroupLayout.Alignment.LEADING, jPanel4Layout.createSequentialGroup() .addComponent(supRegOpjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, 204, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(cadastraSupRegOpjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 19, javax.swing.GroupLayout.PREFERRED_SIZE))) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addComponent(atualizaSupRegOpjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(atualizaGerentejButton, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE) .addComponent(atualizaSupOperacoesjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE) .addComponent(atualizaSupVendasjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE) .addComponent(atualizaMonitorjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE) .addComponent(atualizaConsultorjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)))) .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); jPanel4Layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {consultorjComboBox, gerentejComboBox, monitorjComboBox, supOperacoesjComboBox, supRegOpjComboBox, supVendasjComboBox}); jPanel4Layout.setVerticalGroup( jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel4Layout.createSequentialGroup() .addContainerGap() .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(atualizaSupRegOpjButton) .addComponent(cadastraSupRegOpjButton) .addGroup(jPanel4Layout.createSequentialGroup() .addComponent(jLabel1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(supRegOpjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addGroup(jPanel4Layout.createSequentialGroup() .addComponent(jLabel2) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(gerentejComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addComponent(cadastraGerentejButton) .addComponent(atualizaGerentejButton)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addGroup(jPanel4Layout.createSequentialGroup() .addComponent(jLabel3) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(supOperacoesjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addComponent(cadastraSupOperacoesjButton) .addComponent(atualizaSupOperacoesjButton)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addGroup(jPanel4Layout.createSequentialGroup() .addComponent(jLabel4) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(supVendasjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addComponent(cadastraSupVendasjButton) .addComponent(atualizaSupVendasjButton)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addGroup(jPanel4Layout.createSequentialGroup() .addComponent(jLabel5) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(monitorjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addComponent(cadastraMonitorjButton) .addComponent(atualizaMonitorjButton)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(jPanel4Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addGroup(jPanel4Layout.createSequentialGroup() .addComponent(jLabel6) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(consultorjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addComponent(cadastraConsultorjButton) .addComponent(atualizaConsultorjButton)) .addContainerGap(22, Short.MAX_VALUE)) ); jPanel5.setBorder(javax.swing.BorderFactory.createEtchedBorder()); jLabel7.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N jLabel7.setForeground(new java.awt.Color(0, 0, 204)); jLabel7.setText("PDV"); jLabel8.setText("UF"); jLabel9.setText("Micro regiรฃo"); jLabel10.setText("CNPJ"); ufjComboBox.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "SELECIONE", "AC", "AL", "AP", "AM", "BA", "CE", "DF", "ES", "GO", "MA", "MT", "MS", "MG", "PR", "PB", "PA", "PE", "PI", "RJ", "RN", "RS", "RO", "RR", "SC", "SE", "SP", "TO" })); try { cnpjjFormattedTextField.setFormatterFactory(new javax.swing.text.DefaultFormatterFactory(new javax.swing.text.MaskFormatter("##.###.###/####-##"))); } catch (java.text.ParseException ex) { ex.printStackTrace(); } jLabel11.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N jLabel11.setForeground(new java.awt.Color(0, 0, 255)); jLabel11.setText("Cรณdigo"); javax.swing.GroupLayout jPanel5Layout = new javax.swing.GroupLayout(jPanel5); jPanel5.setLayout(jPanel5Layout); jPanel5Layout.setHorizontalGroup( jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel5Layout.createSequentialGroup() .addContainerGap() .addGroup(jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addComponent(jLabel7, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(jLabel8, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(jLabel9, javax.swing.GroupLayout.DEFAULT_SIZE, 71, Short.MAX_VALUE) .addComponent(jLabel10, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(jLabel11, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addGroup(jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addComponent(pdvjTextField) .addComponent(ufjComboBox, 0, 225, Short.MAX_VALUE) .addComponent(microRegiaojTextField) .addComponent(cnpjjFormattedTextField) .addComponent(codigoCredenciadajTextField)) .addContainerGap(21, Short.MAX_VALUE)) ); jPanel5Layout.setVerticalGroup( jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel5Layout.createSequentialGroup() .addContainerGap() .addGroup(jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel7) .addComponent(pdvjTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(18, 18, 18) .addGroup(jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel11) .addComponent(codigoCredenciadajTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(18, 18, 18) .addGroup(jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel8) .addComponent(ufjComboBox, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(18, 18, 18) .addGroup(jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel9) .addComponent(microRegiaojTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGap(18, 18, 18) .addGroup(jPanel5Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel10) .addComponent(cnpjjFormattedTextField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); jLabel12.setText("Hierarquia"); jLabel13.setText("Dados da credenciada"); jLabel14.setText("Torre Gat"); jPanel6.setBorder(javax.swing.BorderFactory.createEtchedBorder()); jPanel7.setBorder(javax.swing.BorderFactory.createEtchedBorder()); gradeTorreGatjTable.setModel(new javax.swing.table.DefaultTableModel( new Object [][] { }, new String [] { "Torre Gat" } ) { Class[] types = new Class [] { java.lang.String.class }; boolean[] canEdit = new boolean [] { false }; public Class getColumnClass(int columnIndex) { return types [columnIndex]; } public boolean isCellEditable(int rowIndex, int columnIndex) { return canEdit [columnIndex]; } }); jScrollPane2.setViewportView(gradeTorreGatjTable); gradeTorreGatjTable.getColumnModel().getColumn(0).setResizable(false); javax.swing.GroupLayout jPanel7Layout = new javax.swing.GroupLayout(jPanel7); jPanel7.setLayout(jPanel7Layout); jPanel7Layout.setHorizontalGroup( jPanel7Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel7Layout.createSequentialGroup() .addContainerGap() .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE) .addContainerGap()) ); jPanel7Layout.setVerticalGroup( jPanel7Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel7Layout.createSequentialGroup() .addContainerGap() .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE) .addContainerGap()) ); cadastrarTorreGatjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/concluido.png"))); // NOI18N cadastrarTorreGatjButton.setText("Cadastrar torre Gat"); cadastrarTorreGatjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { cadastrarTorreGatjButtonActionPerformed(evt); } }); atualizaGradeTorregatjButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/resources/refresh.png"))); // NOI18N atualizaGradeTorregatjButton.setContentAreaFilled(false); atualizaGradeTorregatjButton.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { atualizaGradeTorregatjButtonActionPerformed(evt); } }); javax.swing.GroupLayout jPanel6Layout = new javax.swing.GroupLayout(jPanel6); jPanel6.setLayout(jPanel6Layout); jPanel6Layout.setHorizontalGroup( jPanel6Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jPanel7, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addGroup(jPanel6Layout.createSequentialGroup() .addContainerGap() .addComponent(atualizaGradeTorregatjButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(cadastrarTorreGatjButton)) ); jPanel6Layout.setVerticalGroup( jPanel6Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel6Layout.createSequentialGroup() .addGroup(jPanel6Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(cadastrarTorreGatjButton) .addComponent(atualizaGradeTorregatjButton)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jPanel7, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); javax.swing.GroupLayout jPanel3Layout = new javax.swing.GroupLayout(jPanel3); jPanel3.setLayout(jPanel3Layout); jPanel3Layout.setHorizontalGroup( jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel3Layout.createSequentialGroup() .addContainerGap() .addComponent(jPanel4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(jPanel5, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(jPanel6, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addContainerGap()) .addGroup(jPanel3Layout.createSequentialGroup() .addGap(115, 115, 115) .addComponent(jLabel12, javax.swing.GroupLayout.PREFERRED_SIZE, 96, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(211, 211, 211) .addComponent(jLabel13, javax.swing.GroupLayout.PREFERRED_SIZE, 147, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 208, Short.MAX_VALUE) .addComponent(jLabel14, javax.swing.GroupLayout.PREFERRED_SIZE, 111, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(88, 88, 88)) ); jPanel3Layout.setVerticalGroup( jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel3Layout.createSequentialGroup() .addContainerGap() .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel12) .addComponent(jLabel13) .addComponent(jLabel14)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addGroup(jPanel3Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false) .addComponent(jPanel4, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(jPanel5, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(jPanel6, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) .addContainerGap(20, Short.MAX_VALUE)) ); jTabbedPane1.addTab("Cadastro credenciado", jPanel3); javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1); jPanel1.setLayout(jPanel1Layout); jPanel1Layout.setHorizontalGroup( jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel1Layout.createSequentialGroup() .addContainerGap() .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jTabbedPane1) .addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) .addContainerGap()) ); jPanel1Layout.setVerticalGroup( jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(jPanel1Layout.createSequentialGroup() .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jTabbedPane1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) ); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(jToolBar1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addComponent(jToolBar1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); pack(); }// </editor-fold>//GEN-END:initComponents ClassConecta conecta = new ClassConecta(); int recebe_codigo_regional; int recebe_codigo_pessoa; int codigo_click_credenciado; String recebe_nome_regional; String recebe_usuario_logado; String recebe_nivel_usuario; ComboItem combo_sup_reg_op; ComboItem combo_gerente; ComboItem combo_superv_operacoes; ComboItem combo_superv_vendas; ComboItem combo_monitor_campo; ComboItem combo_consultor; public void getGradeCredenciado() throws ParseException{ //Consultar Pessoas Credenciadas ocreCredenciadas = new Credenciadas(); ResultSet resultSet = null; String[] colunasTabela = new String[]{"Id#", "Credenciada", "PDV", "Cรณdigo"}; DefaultTableModel modeloTabela = new DefaultTableModel(null, colunasTabela) { @Override public boolean isCellEditable(int row, int col) { return false; } }; gradeCredenciadajTable.setModel(modeloTabela); gradeCredenciadajTable.getColumnModel().getColumn(0).setPreferredWidth(10); gradeCredenciadajTable.getColumnModel().getColumn(1).setPreferredWidth(150); gradeCredenciadajTable.getColumnModel().getColumn(2).setPreferredWidth(100); gradeCredenciadajTable.getColumnModel().getColumn(2).setPreferredWidth(100); try { ocreCredenciadas.setCodigo_pessoa_campo(recebe_codigo_pessoa); resultSet = ocreCredenciadas.getConsultar(conecta); if (resultSet.getRow() == 1){ resultSet.first(); } } catch (SQLException ex) { Logger.getLogger(CadastroPendentes.class.getName()).log(Level.SEVERE, null, ex); } try { while (resultSet.next()) { modeloTabela.addRow(new String[]{ Funcoes.getCodigoFormat(resultSet.getInt("CODIGO_CREDENCIADO")), resultSet.getString("PESSOA_CAMPO"), resultSet.getString("PDV"), resultSet.getString("NUMERO_CODIGO") }); } } catch (SQLException ex) { Logger.getLogger(Telefones.class.getName()).log(Level.SEVERE, null, ex); } } //*********************************************** GRADE TORRE GAT ************************************************************************* public void getGradeTorresGat() throws ParseException{ //Consultar Pessoas TorresGat oTorresGat = new TorresGat(); ResultSet resultSet = null; String[] colunasTabela = new String[]{"Torre Gat"}; DefaultTableModel modeloTabela = new DefaultTableModel(null, colunasTabela) { @Override public boolean isCellEditable(int row, int col) { return false; } }; gradeTorreGatjTable.setModel(modeloTabela); gradeTorreGatjTable.getColumnModel().getColumn(0).setPreferredWidth(300); try { oTorresGat.setCodigo_credenciado(codigo_click_credenciado); resultSet = oTorresGat.getConsultar(conecta); if (resultSet.getRow() == 1){ resultSet.first(); } } catch (SQLException ex) { Logger.getLogger(CadastroPendentes.class.getName()).log(Level.SEVERE, null, ex); } try { while (resultSet.next()) { modeloTabela.addRow(new String[]{ resultSet.getString("NOME_TORRE_GAT"), }); } } catch (SQLException ex) { Logger.getLogger(Telefones.class.getName()).log(Level.SEVERE, null, ex); } } public void getFieldCredenciado(int codigo_click_credenciado) throws ParseException{ //Buscar contato Credenciadas oCredenciadas = new Credenciadas(); ResultSet rs = null; oCredenciadas.setCodigo_credenciado(codigo_click_credenciado); try { rs = oCredenciadas.getConsultar(conecta); rs.next(); // Pegar campos ComboItem sup_Reg_OP = new ComboItem(rs.getInt("CODIGO_SUP_REG_OP"), rs.getString("PESSOA_CAMPO")); supRegOpjComboBox.setSelectedItem(sup_Reg_OP); ComboItem gerente = new ComboItem(rs.getInt("CODIGO_GERENTE"), rs.getString("PESSOA_CAMPO")); gerentejComboBox.setSelectedItem(gerente); ComboItem sup_op = new ComboItem(rs.getInt("CODIGO_SUP_OP"), rs.getString("PESSOA_CAMPO")); supOperacoesjComboBox.setSelectedItem(sup_op); ComboItem sup_vendas = new ComboItem(rs.getInt("CODIGO_SUP_VENDAS"), rs.getString("PESSOA_CAMPO")); supVendasjComboBox.setSelectedItem(sup_vendas); ComboItem monitor = new ComboItem(rs.getInt("CODIGO_MONITOR"), rs.getString("PESSOA_CAMPO")); monitorjComboBox.setSelectedItem(monitor); ComboItem consultor = new ComboItem(rs.getInt("CODIGO_CONSULTOR"), rs.getString("PESSOA_CAMPO")); consultorjComboBox.setSelectedItem(consultor); pdvjTextField.setText(rs.getString("PDV")); codigoCredenciadajTextField.setText(rs.getString("NUMERO_CODIGO")); ufjComboBox.setSelectedItem(rs.getString("UF")); microRegiaojTextField.setText(rs.getString("MICRO_REGIAO")); cnpjjFormattedTextField.setText(rs.getString("CNPJ")); } catch (SQLException ex) { Logger.getLogger(CadastroPendentes.class.getName()).log(Level.SEVERE, null, ex); JOptionPane.showMessageDialog(null, "Erro ao preencher os campos\n"+ex, "ATENร‡รƒO", JOptionPane.ERROR_MESSAGE); } } private void formWindowOpened(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_formWindowOpened // TODO add your handling code here: novojButton.setEnabled(true); editarjButton.setEnabled(false); salvarjButton.setEnabled(false); alterarjButton.setEnabled(false); excluirjButton.setEnabled(false); if ("SUPERVISOR".equals(recebe_nivel_usuario)){ excluirjButton.setVisible(true); }else{ excluirjButton.setVisible(false); } cadastrarTorreGatjButton.setVisible(false); try { ClassConecta.getConectaContatosTorreDB(); } catch (Exception e) { JOptionPane.showMessageDialog(null, "Erro ao conectar com o banco de dados.\n"+e, "mensagem do sistema", JOptionPane.ERROR_MESSAGE); } atualizaSupRegOpjButtonActionPerformed(null); atualizaGerentejButtonActionPerformed(null); atualizaSupOperacoesjButtonActionPerformed(null); atualizaSupVendasjButtonActionPerformed(null); atualizaMonitorjButtonActionPerformed(null); atualizaConsultorjButtonActionPerformed(null); buscarjButtonActionPerformed(null); }//GEN-LAST:event_formWindowOpened private void sairjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_sairjButtonActionPerformed // TODO add your handling code here: this.dispose(); }//GEN-LAST:event_sairjButtonActionPerformed private void atualizaSupVendasjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_atualizaSupVendasjButtonActionPerformed // TODO add your handling code here: try { PessoasCampo oPessoasCampo = new PessoasCampo(); ResultSet rs = null; oPessoasCampo.setCodigo_regional(recebe_codigo_regional); rs = oPessoasCampo.getConsultarSupervVendas(conecta); supVendasjComboBox.removeAllItems(); supVendasjComboBox.addItem("SELECIONE"); while (rs.next()) { supVendasjComboBox.addItem(new ComboItem(rs.getInt("CODIGO_PESSOA_CAMPO"), rs.getString("PESSOA_CAMPO"))); } supVendasjComboBox.updateUI(); } catch (SQLException ex) { Logger.getLogger(jFCrecenciados.class.getName()).log(Level.SEVERE, null, ex); } }//GEN-LAST:event_atualizaSupVendasjButtonActionPerformed private void atualizaSupRegOpjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_atualizaSupRegOpjButtonActionPerformed // TODO add your handling code here: try { PessoasCampo oPessoasCampo = new PessoasCampo(); ResultSet rs = null; oPessoasCampo.setCodigo_regional(recebe_codigo_regional); rs = oPessoasCampo.getConsultarSupRegOp(conecta); supRegOpjComboBox.removeAllItems(); supRegOpjComboBox.addItem("SELECIONE"); while (rs.next()) { supRegOpjComboBox.addItem(new ComboItem(rs.getInt("CODIGO_PESSOA_CAMPO"), rs.getString("PESSOA_CAMPO"))); } supRegOpjComboBox.updateUI(); } catch (SQLException ex) { Logger.getLogger(jFCrecenciados.class.getName()).log(Level.SEVERE, null, ex); } }//GEN-LAST:event_atualizaSupRegOpjButtonActionPerformed private void cadastraSupRegOpjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cadastraSupRegOpjButtonActionPerformed // TODO add your handling code here: jFPessoasCampo oFormPessoasCampo = new jFPessoasCampo(); oFormPessoasCampo.nome_regional = recebe_nome_regional; oFormPessoasCampo.operador_menu = 1; oFormPessoasCampo.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE); oFormPessoasCampo.setLocationRelativeTo(null); oFormPessoasCampo.pack(); oFormPessoasCampo.setModal(true); oFormPessoasCampo.setVisible(true); atualizaSupRegOpjButtonActionPerformed(null); }//GEN-LAST:event_cadastraSupRegOpjButtonActionPerformed private void atualizaGerentejButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_atualizaGerentejButtonActionPerformed // TODO add your handling code here: try { PessoasCampo oPessoasCampo = new PessoasCampo(); ResultSet rs = null; oPessoasCampo.setCodigo_regional(recebe_codigo_regional); rs = oPessoasCampo.getConsultarGerente(conecta); gerentejComboBox.removeAllItems(); gerentejComboBox.addItem("SELECIONE"); while (rs.next()) { gerentejComboBox.addItem(new ComboItem(rs.getInt("CODIGO_PESSOA_CAMPO"), rs.getString("PESSOA_CAMPO"))); } gerentejComboBox.updateUI(); } catch (SQLException ex) { Logger.getLogger(jFCrecenciados.class.getName()).log(Level.SEVERE, null, ex); } }//GEN-LAST:event_atualizaGerentejButtonActionPerformed private void cadastraGerentejButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cadastraGerentejButtonActionPerformed // TODO add your handling code here: jFPessoasCampo oFormPessoasCampo = new jFPessoasCampo(); oFormPessoasCampo.nome_regional = recebe_nome_regional; oFormPessoasCampo.operador_menu = 2; oFormPessoasCampo.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE); oFormPessoasCampo.setLocationRelativeTo(null); oFormPessoasCampo.pack(); oFormPessoasCampo.setModal(true); oFormPessoasCampo.setVisible(true); atualizaGerentejButtonActionPerformed(null); }//GEN-LAST:event_cadastraGerentejButtonActionPerformed private void atualizaSupOperacoesjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_atualizaSupOperacoesjButtonActionPerformed // TODO add your handling code here: try { PessoasCampo oPessoasCampo = new PessoasCampo(); ResultSet rs = null; oPessoasCampo.setCodigo_regional(recebe_codigo_regional); rs = oPessoasCampo.getConsultarSupervOperacoes(conecta); supOperacoesjComboBox.removeAllItems(); supOperacoesjComboBox.addItem("SELECIONE"); while (rs.next()) { supOperacoesjComboBox.addItem(new ComboItem(rs.getInt("CODIGO_PESSOA_CAMPO"), rs.getString("PESSOA_CAMPO"))); } supOperacoesjComboBox.updateUI(); } catch (SQLException ex) { Logger.getLogger(jFCrecenciados.class.getName()).log(Level.SEVERE, null, ex); } }//GEN-LAST:event_atualizaSupOperacoesjButtonActionPerformed private void cadastraSupOperacoesjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cadastraSupOperacoesjButtonActionPerformed // TODO add your handling code here: jFPessoasCampo oFormPessoasCampo = new jFPessoasCampo(); oFormPessoasCampo.nome_regional = recebe_nome_regional; oFormPessoasCampo.operador_menu = 3; oFormPessoasCampo.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE); oFormPessoasCampo.setLocationRelativeTo(null); oFormPessoasCampo.pack(); oFormPessoasCampo.setModal(true); oFormPessoasCampo.setVisible(true); atualizaSupOperacoesjButtonActionPerformed(null); }//GEN-LAST:event_cadastraSupOperacoesjButtonActionPerformed private void cadastraSupVendasjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cadastraSupVendasjButtonActionPerformed // TODO add your handling code here: jFPessoasCampo oFormPessoasCampo = new jFPessoasCampo(); oFormPessoasCampo.nome_regional = recebe_nome_regional; oFormPessoasCampo.operador_menu = 4; oFormPessoasCampo.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE); oFormPessoasCampo.setLocationRelativeTo(null); oFormPessoasCampo.pack(); oFormPessoasCampo.setModal(true); oFormPessoasCampo.setVisible(true); atualizaSupVendasjButtonActionPerformed(null); }//GEN-LAST:event_cadastraSupVendasjButtonActionPerformed private void atualizaMonitorjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_atualizaMonitorjButtonActionPerformed // TODO add your handling code here: try { PessoasCampo oPessoasCampo = new PessoasCampo(); ResultSet rs = null; oPessoasCampo.setCodigo_regional(recebe_codigo_regional); rs = oPessoasCampo.getConsultarMonitorCampo(conecta); monitorjComboBox.removeAllItems(); monitorjComboBox.addItem("SELECIONE"); while (rs.next()) { monitorjComboBox.addItem(new ComboItem(rs.getInt("CODIGO_PESSOA_CAMPO"), rs.getString("PESSOA_CAMPO"))); } monitorjComboBox.updateUI(); } catch (SQLException ex) { Logger.getLogger(jFCrecenciados.class.getName()).log(Level.SEVERE, null, ex); } }//GEN-LAST:event_atualizaMonitorjButtonActionPerformed private void cadastraMonitorjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cadastraMonitorjButtonActionPerformed // TODO add your handling code here: jFPessoasCampo oFormPessoasCampo = new jFPessoasCampo(); oFormPessoasCampo.nome_regional = recebe_nome_regional; oFormPessoasCampo.operador_menu = 5; oFormPessoasCampo.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE); oFormPessoasCampo.setLocationRelativeTo(null); oFormPessoasCampo.pack(); oFormPessoasCampo.setModal(true); oFormPessoasCampo.setVisible(true); atualizaMonitorjButtonActionPerformed(null); }//GEN-LAST:event_cadastraMonitorjButtonActionPerformed private void atualizaConsultorjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_atualizaConsultorjButtonActionPerformed // TODO add your handling code here: try { PessoasCampo oPessoasCampo = new PessoasCampo(); ResultSet rs = null; oPessoasCampo.setCodigo_regional(recebe_codigo_regional); rs = oPessoasCampo.getConsultarConsultor(conecta); consultorjComboBox.removeAllItems(); consultorjComboBox.addItem("SELECIONE"); while (rs.next()) { consultorjComboBox.addItem(new ComboItem(rs.getInt("CODIGO_PESSOA_CAMPO"), rs.getString("PESSOA_CAMPO"))); } consultorjComboBox.updateUI(); } catch (SQLException ex) { Logger.getLogger(jFCrecenciados.class.getName()).log(Level.SEVERE, null, ex); } }//GEN-LAST:event_atualizaConsultorjButtonActionPerformed private void cadastraConsultorjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cadastraConsultorjButtonActionPerformed // TODO add your handling code here: jFPessoasCampo oFormPessoasCampo = new jFPessoasCampo(); oFormPessoasCampo.nome_regional = recebe_nome_regional; oFormPessoasCampo.operador_menu = 6; oFormPessoasCampo.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE); oFormPessoasCampo.setLocationRelativeTo(null); oFormPessoasCampo.pack(); oFormPessoasCampo.setModal(true); oFormPessoasCampo.setVisible(true); atualizaConsultorjButtonActionPerformed(null); }//GEN-LAST:event_cadastraConsultorjButtonActionPerformed private void novojButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_novojButtonActionPerformed // TODO add your handling code here: novojButton.setEnabled(false); editarjButton.setEnabled(false); buscarjButton.setEnabled(true); salvarjButton.setEnabled(true); excluirjButton.setEnabled(false); supRegOpjComboBox.grabFocus(); try { ClassConecta.con.setAutoCommit(false); } catch (Exception e) { } }//GEN-LAST:event_novojButtonActionPerformed private void salvarjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_salvarjButtonActionPerformed // TODO add your handling code here: Credenciadas oCredenciadas = new Credenciadas(); //verifica hierarquia if(supRegOpjComboBox.getSelectedItem().equals("SELECIONE") || gerentejComboBox.getSelectedItem().equals("SELECIONE") || supOperacoesjComboBox.getSelectedItem().equals("SELECIONE") || supVendasjComboBox.getSelectedItem().equals("SELECIONE") || monitorjComboBox.getSelectedItem().equals("SELECIONE") || consultorjComboBox.getSelectedItem().equals("SELECIONE")){ JOptionPane.showMessageDialog(null, "Preencha todos os campos do formulรกrio hierarquia", "mensagem do sistema", JOptionPane.WARNING_MESSAGE); }else{ //verifica dados da credenciada if(pdvjTextField.getText().equals("") || codigoCredenciadajTextField.getText().equals("")){ JOptionPane.showMessageDialog(null, "Preencha ao menos o \"PDV\" e \"Cรณdigo\"\n no formulรกrio DADOS DA CREDENCIADA.", "mensagem do sistema", JOptionPane.WARNING_MESSAGE); }else{ try { salvarjButton.setEnabled(false); novojButton.setEnabled(true); editarjButton.setEnabled(true); excluirjButton.setEnabled(false); combo_sup_reg_op = (ComboItem)supRegOpjComboBox.getSelectedItem(); combo_gerente = (ComboItem)gerentejComboBox.getSelectedItem(); combo_superv_operacoes = (ComboItem)supOperacoesjComboBox.getSelectedItem(); combo_superv_vendas = (ComboItem)supVendasjComboBox.getSelectedItem(); combo_monitor_campo = (ComboItem)monitorjComboBox.getSelectedItem(); combo_consultor = (ComboItem) consultorjComboBox.getSelectedItem(); oCredenciadas.setCodigo_pessoa_campo(recebe_codigo_pessoa); oCredenciadas.setCodigo_sup_reg_op(combo_sup_reg_op.getId()); oCredenciadas.setCodigo_gerente(combo_gerente.getId()); oCredenciadas.setCodigo_sup_op(combo_superv_operacoes.getId()); oCredenciadas.setCodigo_sup_vendas(combo_superv_vendas.getId()); oCredenciadas.setCodigo_consultor(combo_consultor.getId()); oCredenciadas.setCodigo_monitor(combo_monitor_campo.getId()); oCredenciadas.setPdv(pdvjTextField.getText().trim().toUpperCase()); oCredenciadas.setNumero_codigo(Integer.parseInt(codigoCredenciadajTextField.getText().trim())); oCredenciadas.setUf(ufjComboBox.getSelectedItem().toString()); oCredenciadas.setMicro_regiao(microRegiaojTextField.getText().trim().toUpperCase()); oCredenciadas.setCnpj(cnpjjFormattedTextField.getText().toString()); oCredenciadas.setCadastrar(); } catch (Exception e) { JOptionPane.showMessageDialog(null, "Erro ao cadastrar.\n"+e, "mensagem do sistema", JOptionPane.WARNING_MESSAGE); } try { getGradeCredenciado(); } catch (Exception e) { JOptionPane.showMessageDialog(null, "Erro ao atualizar grade.\n"+e, "mensagem do sistema", JOptionPane.WARNING_MESSAGE); } } } }//GEN-LAST:event_salvarjButtonActionPerformed private void buscarjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_buscarjButtonActionPerformed // TODO add your handling code here: try { getGradeCredenciado(); } catch (Exception e) { JOptionPane.showMessageDialog(null, "Erro ao atualizar grade.\n"+e, "mensagem do sistema", JOptionPane.WARNING_MESSAGE); } }//GEN-LAST:event_buscarjButtonActionPerformed private void gradeCredenciadajTableMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_gradeCredenciadajTableMouseClicked // TODO add your handling code here: editarjButton.setEnabled(true); cadastrarTorreGatjButton.setVisible(true); codigo_click_credenciado = Integer.parseInt(gradeCredenciadajTable.getValueAt(gradeCredenciadajTable.getSelectedRow(), 0).toString()); try { getFieldCredenciado(codigo_click_credenciado); } catch (ParseException ex) { Logger.getLogger(Credenciadas.class.getName()).log(Level.SEVERE, null, ex); } atualizaGradeTorregatjButtonActionPerformed(null); }//GEN-LAST:event_gradeCredenciadajTableMouseClicked private void editarjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_editarjButtonActionPerformed // TODO add your handling code here: novojButton.setEnabled(false); salvarjButton.setEnabled(false); editarjButton.setEnabled(false); alterarjButton.setEnabled(true); excluirjButton.setEnabled(true); try { ClassConecta.con.setAutoCommit(false); } catch (SQLException ex) { Logger.getLogger(CadastroPendentes.class.getName()).log(Level.SEVERE, null, ex); } }//GEN-LAST:event_editarjButtonActionPerformed private void alterarjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_alterarjButtonActionPerformed // TODO add your handling code here: Credenciadas oCredenciadas = new Credenciadas(); //verifica hierarquia if(supRegOpjComboBox.getSelectedItem().equals("SELECIONE") || gerentejComboBox.getSelectedItem().equals("SELECIONE") || supOperacoesjComboBox.getSelectedItem().equals("SELECIONE") || supVendasjComboBox.getSelectedItem().equals("SELECIONE") || monitorjComboBox.getSelectedItem().equals("SELECIONE") || consultorjComboBox.getSelectedItem().equals("SELECIONE")){ JOptionPane.showMessageDialog(null, "Preencha todos os campos do formulรกrio hierarquia", "mensagem do sistema", JOptionPane.WARNING_MESSAGE); }else{ //verifica dados da credenciada if(pdvjTextField.getText().equals("") || codigoCredenciadajTextField.getText().equals("")){ JOptionPane.showMessageDialog(null, "Preencha ao menos o \"PDV\" e \"Cรณdigo\"\n no formulรกrio DADOS DA CREDENCIADA.", "mensagem do sistema", JOptionPane.WARNING_MESSAGE); }else{ try { alterarjButton.setEnabled(false); editarjButton.setEnabled(true); novojButton.setEnabled(true); excluirjButton.setEnabled(false); combo_sup_reg_op = (ComboItem)supRegOpjComboBox.getSelectedItem(); combo_gerente = (ComboItem)gerentejComboBox.getSelectedItem(); combo_superv_operacoes = (ComboItem)supOperacoesjComboBox.getSelectedItem(); combo_superv_vendas = (ComboItem)supVendasjComboBox.getSelectedItem(); combo_monitor_campo = (ComboItem)monitorjComboBox.getSelectedItem(); combo_consultor = (ComboItem) consultorjComboBox.getSelectedItem(); oCredenciadas.setCodigo_credenciado(codigo_click_credenciado); oCredenciadas.setCodigo_pessoa_campo(recebe_codigo_pessoa); oCredenciadas.setCodigo_sup_reg_op(combo_sup_reg_op.getId()); oCredenciadas.setCodigo_gerente(combo_gerente.getId()); oCredenciadas.setCodigo_sup_op(combo_superv_operacoes.getId()); oCredenciadas.setCodigo_sup_vendas(combo_superv_vendas.getId()); oCredenciadas.setCodigo_consultor(combo_consultor.getId()); oCredenciadas.setCodigo_monitor(combo_monitor_campo.getId()); oCredenciadas.setPdv(pdvjTextField.getText().trim().toUpperCase()); oCredenciadas.setNumero_codigo(Integer.parseInt(codigoCredenciadajTextField.getText().trim())); oCredenciadas.setUf(ufjComboBox.getSelectedItem().toString()); oCredenciadas.setMicro_regiao(microRegiaojTextField.getText().trim().toUpperCase()); oCredenciadas.setCnpj(cnpjjFormattedTextField.getText().toString()); oCredenciadas.setAlterar(conecta); } catch (Exception e) { JOptionPane.showMessageDialog(null, "Erro ao cadastrar.\n"+e, "mensagem do sistema", JOptionPane.WARNING_MESSAGE); } try { getGradeCredenciado(); } catch (Exception e) { JOptionPane.showMessageDialog(null, "Erro ao atualizar grade.\n"+e, "mensagem do sistema", JOptionPane.WARNING_MESSAGE); } } } }//GEN-LAST:event_alterarjButtonActionPerformed private void excluirjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_excluirjButtonActionPerformed // TODO add your handling code here: Object[] options = {"Sim", "Nรฃo"}; int sd = JOptionPane.showOptionDialog( null, "Deseja realmente EXCLUIR esse registro?", "Confirmaรงรฃo!", JOptionPane.DEFAULT_OPTION, JOptionPane.WARNING_MESSAGE, null, options, options[0]); if (sd != 0) { return; } alterarjButton.setEnabled(false); editarjButton.setEnabled(true); excluirjButton.setEnabled(false); novojButton.setEnabled(true); Credenciadas oCredenciadas = new Credenciadas(); oCredenciadas.setCodigo_credenciado(codigo_click_credenciado); oCredenciadas.setExcluir(conecta); try { getGradeCredenciado(); } catch (Exception e) { } atualizaGradeTorregatjButtonActionPerformed(null); }//GEN-LAST:event_excluirjButtonActionPerformed private void cadastrarTorreGatjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cadastrarTorreGatjButtonActionPerformed // TODO add your handling code here: jFTorreGat oFormTorreGat = new jFTorreGat(); oFormTorreGat.recebe_codigo_credenciado = codigo_click_credenciado; oFormTorreGat.recebe_login = recebe_usuario_logado; oFormTorreGat.recebe_nivel_usuario = recebe_nivel_usuario; oFormTorreGat.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE); oFormTorreGat.setLocationRelativeTo(null); oFormTorreGat.pack(); oFormTorreGat.setModal(true); oFormTorreGat.setVisible(true); atualizaGradeTorregatjButtonActionPerformed(null); }//GEN-LAST:event_cadastrarTorreGatjButtonActionPerformed private void atualizaGradeTorregatjButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_atualizaGradeTorregatjButtonActionPerformed // TODO add your handling code here: try { getGradeTorresGat(); } catch (Exception e) { JOptionPane.showMessageDialog(null, "Erro ao atualizar grade.\n"+e, "mensagem do sistema", JOptionPane.WARNING_MESSAGE); } }//GEN-LAST:event_atualizaGradeTorregatjButtonActionPerformed /** * @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(jFCrecenciados.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(jFCrecenciados.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(jFCrecenciados.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(jFCrecenciados.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> /* * Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { @Override public void run() { new jFCrecenciados().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton alterarjButton; private javax.swing.JButton atualizaConsultorjButton; private javax.swing.JButton atualizaGerentejButton; private javax.swing.JButton atualizaGradeTorregatjButton; private javax.swing.JButton atualizaMonitorjButton; private javax.swing.JButton atualizaSupOperacoesjButton; private javax.swing.JButton atualizaSupRegOpjButton; private javax.swing.JButton atualizaSupVendasjButton; private javax.swing.JButton buscarjButton; private javax.swing.JButton cadastraConsultorjButton; private javax.swing.JButton cadastraGerentejButton; private javax.swing.JButton cadastraMonitorjButton; private javax.swing.JButton cadastraSupOperacoesjButton; private javax.swing.JButton cadastraSupRegOpjButton; private javax.swing.JButton cadastraSupVendasjButton; private javax.swing.JButton cadastrarTorreGatjButton; private javax.swing.JFormattedTextField cnpjjFormattedTextField; private javax.swing.JTextField codigoCredenciadajTextField; private javax.swing.JComboBox consultorjComboBox; private javax.swing.JButton editarjButton; private javax.swing.JButton excluirjButton; private javax.swing.JComboBox gerentejComboBox; private javax.swing.JTable gradeCredenciadajTable; private javax.swing.JTable gradeTorreGatjTable; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel10; private javax.swing.JLabel jLabel11; private javax.swing.JLabel jLabel12; private javax.swing.JLabel jLabel13; private javax.swing.JLabel jLabel14; private javax.swing.JLabel jLabel2; private javax.swing.JLabel jLabel3; private javax.swing.JLabel jLabel4; private javax.swing.JLabel jLabel5; private javax.swing.JLabel jLabel6; private javax.swing.JLabel jLabel7; private javax.swing.JLabel jLabel8; private javax.swing.JLabel jLabel9; private javax.swing.JPanel jPanel1; private javax.swing.JPanel jPanel2; private javax.swing.JPanel jPanel3; private javax.swing.JPanel jPanel4; private javax.swing.JPanel jPanel5; private javax.swing.JPanel jPanel6; private javax.swing.JPanel jPanel7; private javax.swing.JScrollPane jScrollPane1; private javax.swing.JScrollPane jScrollPane2; private javax.swing.JToolBar.Separator jSeparator1; private javax.swing.JToolBar.Separator jSeparator2; private javax.swing.JToolBar.Separator jSeparator3; private javax.swing.JTabbedPane jTabbedPane1; private javax.swing.JToolBar jToolBar1; private javax.swing.JButton limparjButton; private javax.swing.JTextField microRegiaojTextField; private javax.swing.JComboBox monitorjComboBox; private javax.swing.JButton novojButton; private javax.swing.JTextField pdvjTextField; private javax.swing.JButton sairjButton; private javax.swing.JButton salvarjButton; private javax.swing.JComboBox supOperacoesjComboBox; private javax.swing.JComboBox supRegOpjComboBox; private javax.swing.JComboBox supVendasjComboBox; private javax.swing.JComboBox ufjComboBox; // End of variables declaration//GEN-END:variables }
[ "lcarrafa.br@gmail.com" ]
lcarrafa.br@gmail.com
a149ee51ced47cbf259a344c9a2beedafd88c686
44d225841fca1a0ddbb05498c3247599b1838756
/Later/Spring_Later/34_Springboot_error_page/4/SpringBootDemo/src/main/java/com/example/Application.java
0cc6700a34a0646e28614e14b68382db6ecb1c3b
[]
no_license
pavanganeshbhagathi/Java_Spring_2019
a33df6379e02e7804e8238acdef5137681ee0d8a
4607a94a455cbc858690ffb11d408006f9798e93
refs/heads/master
2020-12-06T23:40:37.396996
2020-01-08T13:35:10
2020-01-08T13:35:10
232,581,578
2
0
null
2020-01-08T14:26:35
2020-01-08T14:26:34
null
UTF-8
Java
false
false
292
java
package com.example; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }
[ "ramram_43210@yahoo.com" ]
ramram_43210@yahoo.com
2c837ddb4633fbac1f2404cbd34f6d8c031d586e
7be29a8521eb475c6598fd8292fcd4dd5478d25c
/graphy/src/main/java/com/example/training/graphy/Graphied.java
e64517445ecdc9a7e4501e4cde12916da475e559
[]
no_license
vitascherry/d2-mentoring-program
ffb68a77d8eee06e0db078aa8c005ef09b9889f0
16efd0d0dc2df934b08c77e0591378ff6b3cd6d1
refs/heads/master
2022-11-24T21:43:18.362094
2020-08-06T07:57:21
2020-08-06T07:57:31
155,205,787
0
0
null
2022-11-15T23:29:59
2018-10-29T12:10:12
Java
UTF-8
Java
false
false
971
java
package com.example.training.graphy; import com.example.training.graphy.annotation.WithModules; import com.example.training.graphy.module.Module; import lombok.SneakyThrows; import java.util.LinkedHashSet; import java.util.Set; import static com.example.training.graphy.Graphy.graphy; public interface Graphied { @SneakyThrows({InstantiationException.class, IllegalAccessException.class}) default ObjectGraph getObjectGraph() { Class<?> currentClass = getClass(); Set<Module> modules = new LinkedHashSet<>(); while (currentClass != null) { WithModules withModules = currentClass.getAnnotation(WithModules.class); if (withModules != null) { for (Class<? extends Module> clazz : withModules.value()) { modules.add(clazz.newInstance()); } } currentClass = currentClass.getSuperclass(); } return graphy(modules); } }
[ "vitas.cherry@gmail.com" ]
vitas.cherry@gmail.com
19409bff5538459c97dbd26a4332d1859cb3d16f
c0445b0b9e0f6b5fe9b1d13737f4afb25d9ece21
/test/net/strasnet/kids/test/streaming/OWLAPIPrefixTest.java
510fb848476901c8b0179162ef3b0c2d6fb90421
[]
no_license
jinksunk/KIDSDevelopment
4b4c191140bea8cb56d5d3a85b2a69d249c36250
39a1e0036125d182746283d001c6e55dd6b887cd
refs/heads/master
2021-05-01T04:21:20.734657
2017-04-21T00:56:47
2017-04-21T00:56:47
12,691,183
0
0
null
2017-04-21T00:56:48
2013-09-09T02:07:38
Web Ontology Language
UTF-8
Java
false
false
4,917
java
/** * */ package net.strasnet.kids.test.streaming; import static org.junit.Assert.*; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.util.Map; import org.coode.owlapi.turtle.TurtleOntologyFormat; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import org.semanticweb.owlapi.apibinding.OWLManager; import org.semanticweb.owlapi.formats.PrefixDocumentFormat; import org.semanticweb.owlapi.formats.TurtleDocumentFormat; import org.semanticweb.owlapi.model.IRI; import org.semanticweb.owlapi.model.OWLAxiom; import org.semanticweb.owlapi.model.OWLClass; import org.semanticweb.owlapi.model.OWLDataFactory; import org.semanticweb.owlapi.model.OWLOntology; import org.semanticweb.owlapi.model.OWLOntologyCreationException; import org.semanticweb.owlapi.model.OWLOntologyManager; import org.semanticweb.owlapi.model.OWLOntologyStorageException; import org.semanticweb.owlapi.vocab.PrefixOWLOntologyFormat; /** * @author cstras * */ public class OWLAPIPrefixTest { private OWLOntologyManager om = null; private OWLDataFactory dfact = null; private OWLOntology a_onto = null; private OWLOntology b_onto = null; String a_prefString = "kids"; String b_prefString = "abox"; IRI aIRI = IRI.create("http://www.semantiknit.com/ontologies/a.owl"); IRI bIRI = IRI.create("http://www.semantiknit.com/ontologies/b.owl"); IRI aPrefIRI = IRI.create(aIRI.toString() + "#"); IRI bPrefIRI = IRI.create(bIRI.toString() + "#"); /** * @throws java.lang.Exception */ @BeforeClass public static void setUpBeforeClass() throws Exception { } /** * @throws java.lang.Exception */ @Before public void setUp() throws Exception { // Create two ontologies, a and b om = OWLManager.createOWLOntologyManager(); dfact = om.getOWLDataFactory(); a_onto = om.createOntology(aIRI); b_onto = om.createOntology(bIRI); } @Test public void test() { System.out.println("Testing prefixes for ontology."); OWLClass cat = dfact.getOWLClass(IRI.create(aIRI.toString() + "#" + "Cat")); OWLClass dog = dfact.getOWLClass(IRI.create(bIRI.toString() + "#" + "Dog")); OWLAxiom ax = dfact.getOWLDeclarationAxiom(cat); OWLAxiom ax2 = dfact.getOWLDeclarationAxiom(dog); OWLAxiom ax3 = dfact.getOWLSubClassOfAxiom(cat, dog); om.addAxiom(a_onto, ax); om.addAxiom(b_onto, ax2); om.addAxiom(a_onto, ax3); om.addAxiom(b_onto, ax3); PrefixDocumentFormat turtleFormatA = new TurtleDocumentFormat(); turtleFormatA.setDefaultPrefix(aIRI.toString() + "#"); turtleFormatA.setPrefix("ontb", bIRI.toString() + "#"); PrefixDocumentFormat turtleFormatB = new TurtleDocumentFormat(); turtleFormatB.setDefaultPrefix(bIRI.toString() + "#"); turtleFormatB.setPrefix("onta", aIRI.toString() + "#"); System.out.println("Axiom 3: " + ax3); System.out.println(String.format("OWLClass toString(): %s", cat.toString())); System.out.println(String.format("OWLClass getNamespace(): %s", cat.getIRI().getNamespace())); System.out.println(String.format("OWLClass getScheme(): %s", cat.getIRI().getScheme())); System.out.println(String.format("OWLClass getShortForm(): %s", cat.getIRI().getShortForm())); System.out.println(String.format("OWLClass prefixedBy(kids:): %s", cat.getIRI().prefixedBy("kids:"))); ByteArrayOutputStream abaos = new ByteArrayOutputStream(); String adoc = ""; ByteArrayOutputStream bbaos = new ByteArrayOutputStream(); String bdoc = ""; try { om.saveOntology(a_onto, turtleFormatA, abaos); adoc = abaos.toString(); om.saveOntology(b_onto, turtleFormatB, bbaos); bdoc = bbaos.toString(); System.out.println(adoc); //System.out.println(bbaos.toString()); } catch (OWLOntologyStorageException e) { // TODO Auto-generated catch block e.printStackTrace(); } try { OWLOntologyManager om2 = OWLManager.createOWLOntologyManager(); OWLDataFactory dfact2 = om2.getOWLDataFactory(); OWLOntology aontotwo = om2.loadOntologyFromOntologyDocument(new ByteArrayInputStream(adoc.getBytes())); PrefixDocumentFormat fa = (PrefixDocumentFormat) om2.getOntologyFormat(aontotwo); Map<String, String> famap = fa.getPrefixName2PrefixMap(); System.out.println(String.format("Prefix map has %d elements.", famap.size())); System.out.println(String.format("Reloaded ontology has %d elements.",aontotwo.getAxiomCount())); for (String key : famap.keySet()){ System.out.println(String.format("Format prefix %s => %s", key, famap.get(key))); } String dIRI; if (fa.getPrefixIRI(IRI.create(bIRI.toString() + "#")) != null){ dIRI = dog.getIRI().prefixedBy(fa.getPrefixIRI(bIRI)); } else { dIRI = dog.getIRI().toString(); } System.out.println(String.format("Dog class in ontology a: %s ",dIRI)); } catch (OWLOntologyCreationException e) { // TODO Auto-generated catch block e.printStackTrace(); } fail("Not yet implemented"); } }
[ "cstras@miniu" ]
cstras@miniu
72237ed89ee7a8b8f345f7e843cdfad0be14dcab
b45683d3130a937cd0262c960e1155a327ef4872
/firebase/ios-google-mobile-ads/src/main/java/org/robovm/pods/google/mobileads/GADSearchBannerView.java
20e4a873aa5ea75d88a277014ac86b314bf1feaa
[]
no_license
CoderBaron/robovm-robopods
33324ccb54dcbf54c3716c7ec6e049a330261df9
346437b7b90798e4c9671cad2bae62b7e07b88a2
refs/heads/master
2023-08-04T08:55:11.971573
2023-07-23T00:36:21
2023-07-23T00:36:21
66,114,160
0
0
null
2016-08-19T21:42:07
2016-08-19T21:42:07
null
UTF-8
Java
false
false
3,566
java
/* * Copyright (C) 2013-2015 RoboVM AB * * 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.robovm.pods.google.mobileads; /*<imports>*/ import java.io.*; import java.nio.*; import java.util.*; import org.robovm.objc.*; import org.robovm.objc.annotation.*; import org.robovm.objc.block.*; import org.robovm.rt.*; import org.robovm.rt.annotation.*; import org.robovm.rt.bro.*; import org.robovm.rt.bro.annotation.*; import org.robovm.rt.bro.ptr.*; import org.robovm.apple.foundation.*; import org.robovm.apple.coregraphics.*; import org.robovm.apple.storekit.*; import org.robovm.apple.uikit.*; import org.robovm.apple.coreanimation.*; import org.robovm.apple.webkit.*; /*</imports>*/ /*<javadoc>*/ /*</javadoc>*/ /*<annotations>*/@Library(Library.INTERNAL) @NativeClass/*</annotations>*/ /*<visibility>*/public/*</visibility>*/ class /*<name>*/GADSearchBannerView/*</name>*/ extends /*<extends>*/GADBannerView/*</extends>*/ /*<implements>*//*</implements>*/ { /*<ptr>*/public static class GADSearchBannerViewPtr extends Ptr<GADSearchBannerView, GADSearchBannerViewPtr> {}/*</ptr>*/ /*<bind>*/static { ObjCRuntime.bind(GADSearchBannerView.class); }/*</bind>*/ /*<constants>*//*</constants>*/ /*<constructors>*/ public GADSearchBannerView() {} protected GADSearchBannerView(Handle h, long handle) { super(h, handle); } protected GADSearchBannerView(SkipInit skipInit) { super(skipInit); } @Method(selector = "initWithAdSize:origin:") public GADSearchBannerView(@ByVal GADAdSize adSize, @ByVal CGPoint origin) { super(adSize, origin); } @Method(selector = "initWithAdSize:") public GADSearchBannerView(@ByVal GADAdSize adSize) { super(adSize); } @Method(selector = "initWithFrame:") public GADSearchBannerView(@ByVal CGRect frame) { super(frame); } @Method(selector = "initWithCoder:") public GADSearchBannerView(NSCoder coder) { super(coder); } /*</constructors>*/ /*<properties>*/ @Property(selector = "adSizeDelegate") public native GADAdSizeDelegate getAdSizeDelegate(); @Property(selector = "setAdSizeDelegate:", strongRef = true) public native void setAdSizeDelegate(GADAdSizeDelegate v); @WeaklyLinked @Property(selector = "layerClass") public static native Class<? extends CALayer> getLayerClass(); /*</properties>*/ /*<members>*//*</members>*/ /*<methods>*/ /** * @since Available in iOS 9.0 and later. */ @Method(selector = "userInterfaceLayoutDirectionForSemanticContentAttribute:") public static native UIUserInterfaceLayoutDirection getUserInterfaceLayoutDirection(UISemanticContentAttribute attribute); /** * @since Available in iOS 10.0 and later. */ @Method(selector = "userInterfaceLayoutDirectionForSemanticContentAttribute:relativeToLayoutDirection:") public static native UIUserInterfaceLayoutDirection getUserInterfaceLayoutDirection(UISemanticContentAttribute semanticContentAttribute, UIUserInterfaceLayoutDirection layoutDirection); /*</methods>*/ }
[ "demyan.kimitsa@gmail.com" ]
demyan.kimitsa@gmail.com
264ccaf489b97abc5eae62a3901539b97fdced69
a7f63607901e1dd96d85e8928e22f6a894321d8d
/app/src/main/java/example/com/BranchListActvity.java
5a8d9d76f37ea87001ce70e5ec159b335189f1bb
[]
no_license
haroon-ahmad/BBVA
3beda2ba5f65366adae3b97604179cd48269fe0c
dd082449d0b28063889fd83a2dad5bbbe1ac2a67
refs/heads/master
2020-04-03T09:06:39.238116
2018-10-29T05:04:12
2018-10-29T05:04:12
155,150,424
0
0
null
null
null
null
UTF-8
Java
false
false
1,410
java
package example.com.bbva; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.Menu; import android.view.MenuItem; import android.widget.ListView; import java.util.ArrayList; public class BranchListActvity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.branch_list_view); getSupportActionBar().setTitle("BBVA ATM & Branch Locator "); Intent intent = getIntent(); ArrayList<BbvaBranches> list = intent.getExtras().getParcelableArrayList("List"); ListAdapter adapter = new ListAdapter(this,list); ListView listView = (ListView) findViewById(R.id.listview); listView.setAdapter(adapter); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.detail_menu,menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()){ case R.id.list: Intent intent = new Intent(this,MapActivity.class); startActivity(intent); return true; default: return super.onOptionsItemSelected(item); } } }
[ "noreply@github.com" ]
haroon-ahmad.noreply@github.com
99e04b0fc1073ef6d9e968a32cdb026d2df4cb8f
c5567af7ed17cc722bda9435e35a343e9f5c4042
/src/main/java/designpatterns/builder/with_classic_builder_inner_class/App.java
72ee7b0b37576ea17866cd5ebd6b6c8a21dba7d3
[]
no_license
talgreen1/Automation-Course-AssertJ-Selenium-REST-Assured
46336a16712af6d37504ed004187c7154d45bc0b
595840aa9d7420112cd773a844e39804c24b8674
refs/heads/master
2021-10-23T22:08:49.003604
2019-03-20T11:17:50
2019-03-20T11:17:50
110,507,462
2
0
null
null
null
null
UTF-8
Java
false
false
343
java
package designpatterns.builder.with_classic_builder_inner_class; public class App { public static void main(String[] args) { Computer comp1 = Computer.getBuilder("Intel", 2048).build(); Computer comp2 = Computer.getBuilder("Intel", 2048) .withDiskSize(4000) .withBluetoothEnalbed(true).build(); } }
[ "tg4920@intl.att.com" ]
tg4920@intl.att.com
a9752587dca90de127990eff9e58415ad36fb72e
75efe519f948fdc9e0bed63980b52c91d2465d58
/iRun/app/src/main/java/com/example/kayna/irun/LoginActivity.java
e1199dcf25b557457b94d1c9f6af050ee12b2181
[]
no_license
youqinSUN/iRun-run-keeper-APP
1c9e03d0c3ffdbc906b164930a943be7fae6b714
573ee0a026e6757ef92d1cb4a8bfc2bea107514d
refs/heads/master
2020-12-04T16:05:11.979480
2018-11-04T16:10:06
2018-11-04T16:10:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,042
java
package com.example.kayna.irun; import android.app.ProgressDialog; import android.content.Intent; import android.support.annotation.NonNull; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import android.widget.Toast; import com.google.android.gms.tasks.OnCompleteListener; import com.google.android.gms.tasks.Task; import com.google.firebase.auth.AuthResult; import com.google.firebase.auth.FirebaseAuth; import com.google.firebase.auth.FirebaseUser; public class LoginActivity extends AppCompatActivity { private EditText Email; private EditText Password; private Button Loginbtn; private Button Signupbtn; private FirebaseAuth firebaseAuth; private ProgressDialog progressDialog; private TextView forgotPassword; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.login); Email = (EditText) findViewById(R.id.email); Password = (EditText) findViewById(R.id.password); Loginbtn = (Button) findViewById(R.id.login); Signupbtn = (Button) findViewById(R.id.signupbtn); forgotPassword = (TextView) findViewById(R.id.forgotpasstxt); firebaseAuth = FirebaseAuth.getInstance(); progressDialog = new ProgressDialog(this); FirebaseUser user = firebaseAuth.getCurrentUser(); //checks if user is already in database, then logs them in if (user != null) { finish(); startActivity(new Intent(LoginActivity.this, MainActivity.class)); } Loginbtn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { validate(Email.getText().toString(), Password.getText().toString()); //it's done already in validate() ==> startActivity(new Intent(LoginActivity.this, MainActivity.class)); } }); Signupbtn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { startActivity(new Intent(LoginActivity.this, signup.class)); } }); forgotPassword.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { startActivity(new Intent(LoginActivity.this, PasswordActivity.class)); } }); } private void validate(String userName, String userPassword) { progressDialog.setMessage("Logging in..."); progressDialog.show(); firebaseAuth.signInWithEmailAndPassword(userName, userPassword).addOnCompleteListener(new OnCompleteListener<AuthResult>() { @Override public void onComplete(@NonNull Task<AuthResult> task) { if (task.isSuccessful()) { progressDialog.dismiss(); Toast.makeText(LoginActivity.this, "Login Successful", Toast.LENGTH_SHORT).show(); checkEmailVerification(); } else { Toast.makeText(LoginActivity.this, "Login Failed", Toast.LENGTH_SHORT).show(); progressDialog.dismiss(); startActivity(new Intent(LoginActivity.this, LoginActivity.class)); } } }); } private void checkEmailVerification() { FirebaseUser firebaseUser = firebaseAuth.getInstance().getCurrentUser(); Boolean emailflag = firebaseUser.isEmailVerified(); startActivity(new Intent(LoginActivity.this, MainActivity.class)); if(emailflag){ finish(); startActivity(new Intent(LoginActivity.this, MainActivity.class)); }else{ Toast.makeText(this, "Verify your email", Toast.LENGTH_SHORT).show(); firebaseAuth.signOut(); } } }
[ "33859677+YouqinS@users.noreply.github.com" ]
33859677+YouqinS@users.noreply.github.com
0f846261b90cdff9008274b8b75a87ce570f2677
b6b173a3653c1d7bdf0108c03a10d8c371a3c4fa
/src/charmatch/Main.java
f03652e248aaf51d34f4c85e63e93603205575d7
[]
no_license
githubxyh/data_structure
6f6ec48daf1611af89657c27011d7bb2ff2138a8
a29ddbf42fdc37793fa8abdc230c830b25dc1e23
refs/heads/master
2021-05-25T07:58:34.139785
2020-06-06T04:34:04
2020-06-06T04:34:04
253,729,209
0
0
null
null
null
null
UTF-8
Java
false
false
459
java
package charmatch; public class Main { public static void main(String[] args) { char[] c = {'f','b','a','c','d','a','b','c','a','c'}; char[] d = {'a','b','c','c'}; //bm็ฎ—ๆณ•็š„ๅๅญ—็ฌฆ่ง„ๅˆ™ //BMBadChar bm = new BMBadChar(); //int i = bm.bm(c,c.length,d,d.length); //System.out.println(i); BruteForce bf = new BruteForce(); int i = bf.bf(c,d); System.out.println(i); } }
[ "xyh930929@163.com" ]
xyh930929@163.com
a1f906611b2faddaa47b892f7560cc3b020efc7c
ce6adf4b87ff9b9378146128ca01c908eb4955bd
/j2me_application/src/startform.java
4a8d5206e500ae783f2067a1a0ebe6dbb0f2e680
[]
no_license
wasonganelson/app_engine_py_j2me_code_samples
c8bee8b14f9c8fd1d30baf5a63221c847b2215f0
f4c34fb3921952b3a1f79af5e01106e82b97eb36
refs/heads/master
2021-05-26T12:39:06.112427
2013-03-27T10:58:59
2013-03-27T10:58:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,430
java
import com.sun.lwuit.Form; import com.sun.lwuit.Container; import com.sun.lwuit.Button; import com.sun.lwuit.Label; import com.sun.lwuit.Command; import com.sun.lwuit.layouts.GridLayout; import com.sun.lwuit.plaf.UIManager; import com.sun.lwuit.animations.CommonTransitions; import com.sun.lwuit.events.ActionListener; import com.sun.lwuit.events.ActionEvent; class startform { private int formid; private Form f; private Container g; private Button stockquote,stockanalysis,rss; public startform(int x) { formid = 1; try { UIManager.getInstance().setThemeProps(mStockQuote.r.getTheme(mStockQuote.r.getThemeResourceNames()[0])); } catch (java.lang.Exception e){} f = new Form(mStockQuote.ticker); g = new Container(); g = f.getContentPane(); g.setLayout(new GridLayout(2,2)); //creating option buttons stockquote = new Button("stock quotes"); stockquote.setIcon(mStockQuote.stockquotes); stockquote.setTextPosition(Button.BOTTOM); stockquote.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { selectstock a = new selectstock(formid); } }); stockanalysis = new Button("stock analysis"); stockanalysis.setIcon(mStockQuote.stockanalysis); stockanalysis.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { selectstockanalysis a = new selectstockanalysis(formid); } }); stockanalysis.setTextPosition(Button.BOTTOM); final Button forexrate = new Button("forex rates"); forexrate.setIcon(mStockQuote.forexrate); forexrate.setTextPosition(Button.BOTTOM); forexrate.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { selectforexrate a = new selectforexrate(); } }); rss = new Button("news feeds"); rss.setIcon(mStockQuote.exit); rss.setTextPosition(Button.BOTTOM); rss.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { Label label = new Label(); canvas a = new canvas(); label.setPreferredH(a.getWidth()/3); label.setPreferredW(a.getWidth()/3); g.addComponent(label); stockquote.setEnabled(false); stockanalysis.setEnabled(false); forexrate.setEnabled(false); rss.setEnabled(false); Thread t = new Thread(new getfeeds()); t.start(); f.repaint(); } }); g.addComponent(stockquote); g.addComponent(stockanalysis); g.addComponent(forexrate); g.addComponent(rss); Command exit = new Command("Quit"); f.addCommand(exit); f.addCommandListener(new ActionListener() { public void actionPerformed(ActionEvent e) { mStockQuote.x.notifyDestroyed(); } }); f.setTransitionInAnimator(CommonTransitions.createSlide(CommonTransitions.SLIDE_HORIZONTAL,x>formid,500)); f.show(); } }
[ "wasonganelson@gmail.com" ]
wasonganelson@gmail.com
d4b879c2310c409ac34eee92ffe6ba59fb93d812
456a2c06f16400bc224f5bfc9ed087289b6b41c2
/app/src/main/java/com/example/shuactivity/view/NoScrollViewPager.java
70eb2c7796ada71abda39d0d6f9e8e2b0b7703aa
[ "Apache-2.0" ]
permissive
xyxx2333/ShuActivity
71ec562207f4cb164f79012994659231d70eeb36
18c7d27c5f318e041c37df82daa6066e69e13d86
refs/heads/main
2023-03-09T22:41:30.473902
2021-02-22T11:51:52
2021-02-22T11:51:52
340,624,189
0
0
null
null
null
null
UTF-8
Java
false
false
2,038
java
package com.example.shuactivity.view; import android.content.Context; import android.util.AttributeSet; import android.view.MotionEvent; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.viewpager.widget.ViewPager; public class NoScrollViewPager extends ViewPager { private boolean isScroll = false; public NoScrollViewPager(@NonNull Context context) { super(context); } public NoScrollViewPager(@NonNull Context context, @Nullable AttributeSet attrs) { super(context, attrs); } /** * 1.dispatchTouchEventไธ€่ˆฌๆƒ…ๅ†ตไธๅšๅค„็† * ๅฆ‚ๆžœไฟฎๆ”นไบ†้ป˜่ฎค็š„่ฟ”ๅ›žๅ€ผ๏ผŒๅญ็บฟ็จ‹้ƒฝๆ— ๆณ•ๆ”ถๅˆฐไบ‹ไปถ */ @Override public boolean dispatchTouchEvent(MotionEvent ev) { return super.dispatchTouchEvent(ev); //return true;ไธ่กŒ } /** * ๆ˜ฏๅฆๆ‹ฆๆˆช * ๆ‹ฆๆˆช๏ผšไผš่ตฐๅˆฐ่‡ชๅทฑ็š„onTouchEventๆ–นๆณ•้‡Œ้ขๆฅ * ไธๆ‹ฆๆˆช:ไบ‹ไปถไผ ้€’็ป™ๅญ็บฟ็จ‹ */ @Override public boolean onInterceptTouchEvent(MotionEvent ev) { // return false; ๅฏ่กŒ,ไธๆ‹ฆๆˆชไบ‹ไปถ // return true; ไธ่กŒ,็บฟ็จ‹ๆ— ๆณ•ๅค„็†ไบ‹ไปถ // return super.onInterceptTouchEvent(ev); ไธ่กŒ๏ผŒไผšๆœ‰็ป†ๅพฎ็งปๅŠจ if (isScroll){ return super.onInterceptTouchEvent(ev); }else { return false; } } /** * ๆ˜ฏๅฆ้”€ๆฏไบ‹ไปถ * ้”€ๆฏ๏ผšไบ‹ไปถๅฐฑ็ป“ๆŸ * ไธ้”€ๆฏ๏ผšๅพ€็ˆถๆŽงไปถไผ  */ @Override public boolean onTouchEvent(MotionEvent ev) { //return false; ๅฏ่กŒ๏ผŒไธ้”€ๆฏ๏ผŒไผ ็ป™็ˆถๆŽงไปถ //return true; ๅฏ่กŒ๏ผŒ้”€ๆฏ๏ผŒๆ‹ฆๆˆชไบ‹ไปถ //return super.onTouchEvent(ev); ไธ่กŒ //ไฝ†ๅฆ‚ๆžœviewpage้‡Œ้ขๅญๆŽงไปถไธๆ˜ฏviewgroup๏ผŒ่ฟ˜ๆ˜ฏไผš่ฐƒ็”จ่ฟ™ไธชๆ–นๆณ• if(isScroll){ return super.onTouchEvent(ev); }else { return true; //ๅฏ่กŒ๏ผŒ้”€ๆฏ๏ผŒๆ‹ฆๆˆชไบ‹ไปถ } } public void setScroll(boolean scroll){ isScroll = scroll; } }
[ "61933037+xyxx2333@users.noreply.github.com" ]
61933037+xyxx2333@users.noreply.github.com
63e92ba177a033d6205ef4f19f94ce075c56d7ec
c40bb3e195988ebd1d17b3e17f458f40a6f83613
/src/samples/demo/BalloonLayoutDemo.java
4592659d5268d96caf1107f897972b728a1b5cef
[]
no_license
xuzhikethinker/sample-project
8184cb4bdcd06da13bbf7396f481e26783949400
2570661e86055fad500ad743e1d5e249b3c089b7
refs/heads/master
2020-12-25T16:02:51.437181
2012-07-17T14:16:45
2012-07-17T14:16:45
null
0
0
null
null
null
null
UTF-8
Java
false
false
12,007
java
/* * Copyright (c) 2003, the JUNG Project and the Regents of the University of * California All rights reserved. * * This software is open-source under the BSD license; see either "license.txt" * or http://jung.sourceforge.net/license.txt for a description. * */ package edu.uci.ics.jung.samples; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Container; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.GridLayout; import java.awt.Shape; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.ItemEvent; import java.awt.event.ItemListener; import java.awt.geom.AffineTransform; import java.awt.geom.Ellipse2D; import java.awt.geom.Point2D; import javax.swing.BorderFactory; import javax.swing.JApplet; import javax.swing.JButton; import javax.swing.JComboBox; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JRadioButton; import javax.swing.JToggleButton; import org.apache.commons.collections15.Factory; import org.apache.commons.collections15.functors.ConstantTransformer; import edu.uci.ics.jung.algorithms.layout.BalloonLayout; import edu.uci.ics.jung.algorithms.layout.TreeLayout; import edu.uci.ics.jung.graph.DirectedGraph; import edu.uci.ics.jung.graph.DirectedSparseMultigraph; import edu.uci.ics.jung.graph.Forest; import edu.uci.ics.jung.graph.DelegateForest; import edu.uci.ics.jung.graph.DelegateTree; import edu.uci.ics.jung.graph.Tree; import edu.uci.ics.jung.visualization.GraphZoomScrollPane; import edu.uci.ics.jung.visualization.Layer; import edu.uci.ics.jung.visualization.VisualizationServer; import edu.uci.ics.jung.visualization.VisualizationViewer; import edu.uci.ics.jung.visualization.control.CrossoverScalingControl; import edu.uci.ics.jung.visualization.control.DefaultModalGraphMouse; import edu.uci.ics.jung.visualization.control.ModalGraphMouse; import edu.uci.ics.jung.visualization.control.ModalLensGraphMouse; import edu.uci.ics.jung.visualization.control.ScalingControl; import edu.uci.ics.jung.visualization.decorators.EdgeShape; import edu.uci.ics.jung.visualization.decorators.ToStringLabeller; import edu.uci.ics.jung.visualization.layout.LayoutTransition; import edu.uci.ics.jung.visualization.transform.LensSupport; import edu.uci.ics.jung.visualization.transform.MutableTransformer; import edu.uci.ics.jung.visualization.transform.MutableTransformerDecorator; import edu.uci.ics.jung.visualization.transform.shape.HyperbolicShapeTransformer; import edu.uci.ics.jung.visualization.transform.shape.ViewLensSupport; import edu.uci.ics.jung.visualization.util.Animator; /** * Demonstrates the visualization of a Tree using TreeLayout * and BalloonLayout. An examiner lens performing a hyperbolic * transformation of the view is also included. * * @author Tom Nelson * */ @SuppressWarnings("serial") public class BalloonLayoutDemo extends JApplet { /** * the graph */ Forest<String,Integer> graph; Factory<DirectedGraph<String,Integer>> graphFactory = new Factory<DirectedGraph<String,Integer>>() { public DirectedGraph<String, Integer> create() { return new DirectedSparseMultigraph<String,Integer>(); } }; Factory<Tree<String,Integer>> treeFactory = new Factory<Tree<String,Integer>> () { public Tree<String, Integer> create() { return new DelegateTree<String,Integer>(graphFactory); } }; Factory<Integer> edgeFactory = new Factory<Integer>() { int i=0; public Integer create() { return i++; }}; Factory<String> vertexFactory = new Factory<String>() { int i=0; public String create() { return "V"+i++; }}; /** * the visual component and renderer for the graph */ VisualizationViewer<String,Integer> vv; VisualizationServer.Paintable rings; String root; TreeLayout<String,Integer> layout; BalloonLayout<String,Integer> radialLayout; /** * provides a Hyperbolic lens for the view */ LensSupport hyperbolicViewSupport; public BalloonLayoutDemo() { // create a simple graph for the demo graph = new DelegateForest<String,Integer>(); createTree(); layout = new TreeLayout<String,Integer>(graph); radialLayout = new BalloonLayout<String,Integer>(graph); radialLayout.setSize(new Dimension(900,900)); vv = new VisualizationViewer<String,Integer>(layout, new Dimension(600,600)); vv.setBackground(Color.white); vv.getRenderContext().setEdgeShapeTransformer(new EdgeShape.Line()); vv.getRenderContext().setVertexLabelTransformer(new ToStringLabeller()); // add a listener for ToolTips vv.setVertexToolTipTransformer(new ToStringLabeller()); vv.getRenderContext().setArrowFillPaintTransformer(new ConstantTransformer(Color.lightGray)); rings = new Rings(radialLayout); Container content = getContentPane(); final GraphZoomScrollPane panel = new GraphZoomScrollPane(vv); content.add(panel); final DefaultModalGraphMouse graphMouse = new DefaultModalGraphMouse(); vv.setGraphMouse(graphMouse); vv.addKeyListener(graphMouse.getModeKeyListener()); hyperbolicViewSupport = new ViewLensSupport<String,Integer>(vv, new HyperbolicShapeTransformer(vv, vv.getRenderContext().getMultiLayerTransformer().getTransformer(Layer.VIEW)), new ModalLensGraphMouse()); graphMouse.addItemListener(hyperbolicViewSupport.getGraphMouse().getModeListener()); JComboBox modeBox = graphMouse.getModeComboBox(); modeBox.addItemListener(graphMouse.getModeListener()); graphMouse.setMode(ModalGraphMouse.Mode.TRANSFORMING); final ScalingControl scaler = new CrossoverScalingControl(); vv.scaleToLayout(scaler); JButton plus = new JButton("+"); plus.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { scaler.scale(vv, 1.1f, vv.getCenter()); } }); JButton minus = new JButton("-"); minus.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { scaler.scale(vv, 1/1.1f, vv.getCenter()); } }); JToggleButton radial = new JToggleButton("Balloon"); radial.addItemListener(new ItemListener() { public void itemStateChanged(ItemEvent e) { if(e.getStateChange() == ItemEvent.SELECTED) { LayoutTransition<String,Integer> lt = new LayoutTransition<String,Integer>(vv, layout, radialLayout); Animator animator = new Animator(lt); animator.start(); vv.getRenderContext().getMultiLayerTransformer().getTransformer(Layer.LAYOUT).setToIdentity(); vv.addPreRenderPaintable(rings); } else { LayoutTransition<String,Integer> lt = new LayoutTransition<String,Integer>(vv, radialLayout, layout); Animator animator = new Animator(lt); animator.start(); vv.getRenderContext().getMultiLayerTransformer().getTransformer(Layer.LAYOUT).setToIdentity(); vv.removePreRenderPaintable(rings); } vv.repaint(); }}); final JRadioButton hyperView = new JRadioButton("Hyperbolic View"); hyperView.addItemListener(new ItemListener(){ public void itemStateChanged(ItemEvent e) { hyperbolicViewSupport.activate(e.getStateChange() == ItemEvent.SELECTED); } }); JPanel scaleGrid = new JPanel(new GridLayout(1,0)); scaleGrid.setBorder(BorderFactory.createTitledBorder("Zoom")); JPanel controls = new JPanel(); scaleGrid.add(plus); scaleGrid.add(minus); controls.add(radial); controls.add(scaleGrid); controls.add(modeBox); controls.add(hyperView); content.add(controls, BorderLayout.SOUTH); } class Rings implements VisualizationServer.Paintable { BalloonLayout<String,Integer> layout; public Rings(BalloonLayout<String,Integer> layout) { this.layout = layout; } public void paint(Graphics g) { g.setColor(Color.gray); Graphics2D g2d = (Graphics2D)g; Ellipse2D ellipse = new Ellipse2D.Double(); for(String v : layout.getGraph().getVertices()) { Double radius = layout.getRadii().get(v); if(radius == null) continue; Point2D p = layout.transform(v); ellipse.setFrame(-radius, -radius, 2*radius, 2*radius); AffineTransform at = AffineTransform.getTranslateInstance(p.getX(), p.getY()); Shape shape = at.createTransformedShape(ellipse); MutableTransformer viewTransformer = vv.getRenderContext().getMultiLayerTransformer().getTransformer(Layer.VIEW); if(viewTransformer instanceof MutableTransformerDecorator) { shape = vv.getRenderContext().getMultiLayerTransformer().transform(shape); } else { shape = vv.getRenderContext().getMultiLayerTransformer().transform(Layer.LAYOUT,shape); } g2d.draw(shape); } } public boolean useTransform() { return true; } } /** * */ private void createTree() { graph.addVertex("A0"); graph.addEdge(edgeFactory.create(), "A0", "B0"); graph.addEdge(edgeFactory.create(), "A0", "B1"); graph.addEdge(edgeFactory.create(), "A0", "B2"); graph.addEdge(edgeFactory.create(), "B0", "C0"); graph.addEdge(edgeFactory.create(), "B0", "C1"); graph.addEdge(edgeFactory.create(), "B0", "C2"); graph.addEdge(edgeFactory.create(), "B0", "C3"); graph.addEdge(edgeFactory.create(), "C2", "H0"); graph.addEdge(edgeFactory.create(), "C2", "H1"); graph.addEdge(edgeFactory.create(), "B1", "D0"); graph.addEdge(edgeFactory.create(), "B1", "D1"); graph.addEdge(edgeFactory.create(), "B1", "D2"); graph.addEdge(edgeFactory.create(), "B2", "E0"); graph.addEdge(edgeFactory.create(), "B2", "E1"); graph.addEdge(edgeFactory.create(), "B2", "E2"); graph.addEdge(edgeFactory.create(), "D0", "F0"); graph.addEdge(edgeFactory.create(), "D0", "F1"); graph.addEdge(edgeFactory.create(), "D0", "F2"); graph.addEdge(edgeFactory.create(), "D1", "G0"); graph.addEdge(edgeFactory.create(), "D1", "G1"); graph.addEdge(edgeFactory.create(), "D1", "G2"); graph.addEdge(edgeFactory.create(), "D1", "G3"); graph.addEdge(edgeFactory.create(), "D1", "G4"); graph.addEdge(edgeFactory.create(), "D1", "G5"); graph.addEdge(edgeFactory.create(), "D1", "G6"); graph.addEdge(edgeFactory.create(), "D1", "G7"); // uncomment this to make it a Forest: graph.addVertex("K0"); graph.addEdge(edgeFactory.create(), "K0", "K1"); graph.addEdge(edgeFactory.create(), "K0", "K2"); graph.addEdge(edgeFactory.create(), "K0", "K3"); graph.addVertex("J0"); graph.addEdge(edgeFactory.create(), "J0", "J1"); graph.addEdge(edgeFactory.create(), "J0", "J2"); graph.addEdge(edgeFactory.create(), "J1", "J4"); graph.addEdge(edgeFactory.create(), "J2", "J3"); graph.addEdge(edgeFactory.create(), "J2", "J5"); graph.addEdge(edgeFactory.create(), "J4", "J6"); graph.addEdge(edgeFactory.create(), "J4", "J7"); graph.addEdge(edgeFactory.create(), "J3", "J8"); graph.addEdge(edgeFactory.create(), "J6", "B9"); } /** * a driver for this demo */ public static void main(String[] args) { JFrame frame = new JFrame(); Container content = frame.getContentPane(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); content.add(new BalloonLayoutDemo()); frame.pack(); frame.setVisible(true); } }
[ "Ivan.Paez_Anaya@irisa.fr" ]
Ivan.Paez_Anaya@irisa.fr
c1e882c87f62b46ca84ba01dd5836e3c7ecf807f
757b7e12929956ce0da6178ab422f73ec0202966
/src/main/java/com/sap/rest/utils/ResponseCreator.java
29a3e6d694484404bdc6862a423b54075b612d0a
[ "Apache-2.0" ]
permissive
timurgen/olingo-jersey
23605ae6a6566c94d59a888f3f8a68364484fdb8
2db7517af9a5eaa7913faf5b2b3a7f816b03f813
refs/heads/master
2020-03-25T20:11:53.162827
2018-08-09T09:31:00
2018-08-09T09:31:00
144,120,300
0
0
Apache-2.0
2018-08-09T08:02:38
2018-08-09T08:02:38
null
UTF-8
Java
false
false
618
java
package com.sap.rest.utils; import com.sap.rest.support.ResponseWrapper; import javax.ws.rs.core.Response; import javax.ws.rs.core.StreamingOutput; public class ResponseCreator extends ResponseWrapper { public ResponseCreator(Response delegate) { super(delegate); } public static ResponseCreator OK(StreamingOutput entity) { Response.ResponseBuilder responseBuilder = Response.status(200); responseBuilder = responseBuilder.header("Content-Type", "application/json"); responseBuilder.entity(entity); return new ResponseCreator(responseBuilder.build()); } }
[ "subhobrata.dey@sap.com" ]
subhobrata.dey@sap.com
2a59b4b6bbdc10372e46e44e64c7ed9d55722669
8e67fdab6f3a030f38fa127a79050b8667259d01
/JavaStudyHalUk/src/TECHNOSTUDY_ISMETBY/Gun37JavaAccessModifiers/classModifiers/packageOne/DefaultModifierClass.java
9b7d655d259ee567c8e01c1cfa35d299f81cd209
[]
no_license
mosmant/JavaStudyHalUk
07e38ade6c7a31d923519a267a63318263c5910f
a41e16cb91ef307b50cfc497535126aa1e4035e5
refs/heads/master
2023-07-27T13:31:11.004490
2021-09-12T14:59:25
2021-09-12T14:59:25
405,671,965
0
0
null
null
null
null
UTF-8
Java
false
false
207
java
package TECHNOSTUDY_ISMETBY.Gun37JavaAccessModifiers.classModifiers.packageOne; //Default yani hiรงbirลŸey yazฤฑlmadฤฑฤŸฤฑnda //Sadece kendi paketinin iรงinden eriลŸilebilir class DefaultModifierClass { }
[ "mottnr@gmail.com" ]
mottnr@gmail.com
170b2cd082f7ed6ed43f39a25fad96ab9d486d09
0339f3051084761e9ad5ac1a75bc0fbdc0fd20c4
/MetadataStorage/src/main/java/eu/supersede/mdm/storage/bdi/mdm/constructs/MDMLavMapping.java
fba13528bd02fc3cd7dd4b9c34c9357d4f87a2ff
[ "Apache-2.0" ]
permissive
Kashif-Rabbani/ODIN
0a83ec049fea0c47c9de39c8a6b4db4d4a2805a8
122209fa82dcd6951429f1daba11e5036790eb98
refs/heads/master
2020-06-28T13:34:11.926328
2019-08-15T20:05:17
2019-08-15T20:05:17
198,456,142
0
0
null
null
null
null
UTF-8
Java
false
false
19,978
java
package eu.supersede.mdm.storage.bdi.mdm.constructs; import com.google.common.collect.ImmutableMap; import com.mongodb.MongoClient; import com.mongodb.client.MongoCursor; import eu.supersede.mdm.storage.bdi.extraction.Namespaces; import eu.supersede.mdm.storage.model.metamodel.GlobalGraph; import eu.supersede.mdm.storage.resources.LAVMappingResource; import eu.supersede.mdm.storage.resources.WrapperResource; import eu.supersede.mdm.storage.util.MongoCollections; import eu.supersede.mdm.storage.util.RDFUtil; import eu.supersede.mdm.storage.util.Tuple3; import eu.supersede.mdm.storage.util.Utils; import net.minidev.json.JSONArray; import net.minidev.json.JSONObject; import net.minidev.json.JSONValue; import org.apache.jena.graph.Triple; import org.apache.jena.rdf.model.impl.PropertyImpl; import org.apache.jena.rdf.model.impl.ResourceImpl; import org.bson.Document; import org.semarglproject.vocab.OWL; import org.semarglproject.vocab.RDF; import org.semarglproject.vocab.RDFS; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.logging.Logger; /** * Created by Kashif-Rabbani in June 2019 */ public class MDMLavMapping { private static final Logger LOGGER = Logger.getLogger(MDMLavMapping.class.getName()); private String mdmGlobalGraphIri; private String mdmGgId; private JSONArray wrappersMongoInformation = new JSONArray(); private JSONArray wrappersCoveringGlobalGraph; //private List<Tuple2<String, String>> lavMappings = new ArrayList<>(); private JSONObject lavMapping; private JSONArray featureAndAttributes; /*Map<feature, List< Tuple3<localName, sourceName, IRI>, Tuple3<,,>,....*/ private Map<String, List<Tuple3<String, String, String>>> features = new HashMap<>(); HashMap<String, String> nodesIds; public MDMLavMapping(String mdmGlobalGraphIri, HashMap<String, String> nodesIds) { this.mdmGlobalGraphIri = mdmGlobalGraphIri; this.nodesIds = nodesIds; run(); } public MDMLavMapping(String mdmGlobalGraphIri) { this.mdmGlobalGraphIri = mdmGlobalGraphIri; run(); } private void run() { getFeaturesWithSameAsEdges(); System.out.println("FEATURES:"); System.out.println(features); getWrapperInfoFromGg(); initLavMapping(); initViewOfSourceGraphsOverGlobalGraph(); } /** * This method is to extract all the features from the MDM global Graph which was generated automatically from Metadata Traceability graph * It fills a map with values like this: * {feature, [tuple3< _1:LocalName, _2: Source Name, _3: IRI>, tuple3<>, ...]} e.g. one of the real example is shown below: * {http://www.BDIOntology.com/global/uKHAoVbK-kphiyJAL/Registration_Number= * [ * Tuple3{_1=Registration_Number, _2=Bicycles, _3=http://www.BDIOntology.com/schema/Bicycles/Bicycle/Registration_Number}, * Tuple3{_1=Registration_Number, _2=Bikes, _3=http://www.BDIOntology.com/schema/Bikes/Bike/Registration_Number} * ], http://www.BDIOntology.com/schema/Bicycles/Bicing_Details/Total_Clients=[]} * In the above example, a feature with a global IRI is pointing to two other features with a sameAs relationship. * Note that the features having localIRIs are not pointing to any other features * e.g. in the above example, the feature ..../Total_Clients has empty list for sameAs features. Which states that it does not have any relationship with any other feature. * As MDM does not support features to features relationships in its global graph. We need to subsume these intelligently */ private void getFeaturesWithSameAsEdges() { String SPARQL = "SELECT * WHERE { GRAPH <" + mdmGlobalGraphIri + "> { ?f rdf:type <" + GlobalGraph.FEATURE.val() + "> . OPTIONAL {?f G:sameAs ?o.} } }"; RDFUtil.runAQuery(RDFUtil.sparqlQueryPrefixes + SPARQL, mdmGlobalGraphIri).forEachRemaining(triple -> { //System.out.print(triple.getResource("f") + "\t"); //System.out.print(triple.get("o") + "\n"); //String featureName = triple.get("f").toString().split("/")[triple.get("f").toString().split("/").length - 1]; String featureName = triple.get("f").toString(); List<Tuple3<String, String, String>> sameAsfeatures = new ArrayList<>(); if (triple.get("o") != null) sameAsfeatures.add(new Tuple3<>(getLastElementOfIRI(triple.get("o").toString()), getSourceFromIRI(triple.get("o").toString()), triple.get("o").toString())); if (features.containsKey(featureName)) { //System.out.println("Printing value of the key : " + features.get(featureName)); List<Tuple3<String, String, String>> tempList = features.get(featureName); if (triple.get("o") != null) tempList.add(new Tuple3<>(getLastElementOfIRI(triple.get("o").toString()), getSourceFromIRI(triple.get("o").toString()), triple.get("o").toString())); features.put(featureName, tempList); } else { features.put(featureName, sameAsfeatures); } }); //System.out.println(features); } /** * This method is to know that the generated MDM global graph is merger of how many sources e.g. BikesBicyclesCycles Metadata traceability graph is a result of * 3 sources. So there must be 3 wrappers associated for the generated MDM global graph. * Let's get the ids of the associated wrappers and store them in JsonArray named wrappersCoveringGlobalGraph */ private void getWrapperInfoFromGg() { MongoClient client = Utils.getMongoDBClient(); MongoCursor<Document> cursor = MongoCollections.getGlobalGraphCollection(client).find(new Document("namedGraph", mdmGlobalGraphIri)).iterator(); JSONObject ggInfo = (JSONObject) JSONValue.parse(MongoCollections.getMongoObject(client, cursor)); wrappersCoveringGlobalGraph = (JSONArray) ggInfo.get("wrappers"); mdmGgId = ggInfo.getAsString("globalGraphID"); client.close(); } /** * This method is to create LAV mappings i.e. feature sameAs attribute relationships */ private void initLavMapping() { //Let's iterate over all the wrappers wrappersCoveringGlobalGraph.forEach(wrapperId -> { MongoClient client = Utils.getMongoDBClient(); MongoCursor<Document> wrapperCursor = MongoCollections.getWrappersCollection(client). find(new Document("wrapperID", wrapperId)).iterator(); JSONObject wrapperInfo = (JSONObject) JSONValue.parse(MongoCollections.getMongoObject(client, wrapperCursor)); //For each wrapper call this method to get the job done createLavMappings(wrapperInfo.getAsString("iri")); lavMapping = new JSONObject(); lavMapping.put("wrapperID", wrapperId.toString()); lavMapping.put("isModified", "false"); lavMapping.put("globalGraphID", mdmGgId); lavMapping.put("sameAs", featureAndAttributes); //System.out.println(lavMapping.toJSONString()); LOGGER.info("FeaturesAndAttributes for this wrapper: "); LOGGER.info(featureAndAttributes.toJSONString()); // Call LAV Mapping Resource to save the LAV mapping info accordingly JSONObject lavMappingResourceInfo = LAVMappingResource.createLAVMappingMapsTo(lavMapping.toJSONString()); //System.out.println(lavMappingResourceInfo); wrapperInfo.put("LAVMappingID", lavMappingResourceInfo.getAsString("LAVMappingID")); wrappersMongoInformation.add(wrapperInfo); client.close(); }); } private void createLavMappings(String wrapperIri) { //Get attributes of all the wrappers JSONArray wrapperAttributes = WrapperResource.getWrapperAttributes(wrapperIri); //System.out.println(wrapperAttributes.toJSONString()); featureAndAttributes = new JSONArray(); // iterate over all the wrapper attributes wrapperAttributes.forEach(attr -> { String attribute = getLastElementOfIRI(attr.toString()); // Now consider the map containing features as explained above features.forEach((key, list) -> { //Check if the list is empty or not, if it is empty it means the current feature does not have any sameAs edge to other features //It also indicates that the current feature is not the one having global IRI (MOST PROBABLY) if (list.isEmpty()) { /*Check the type of the feature and the attribute*/ if (attribute.equals(getLastElementOfIRI(key)) && getSourceFromIRI(key).equals(getWrapperSourceFromIRI(attr.toString()))) { //System.out.println("Key: " + key); //lavMappings.add(new Tuple2<>(attr.toString(), key)); JSONObject temp = new JSONObject(); temp.put("feature", key); temp.put("attribute", attr.toString()); featureAndAttributes.add(temp); } } else { /*For Schema IRI, source type can be checked*/ list.forEach(tuple -> { if (tuple._1.equals(attribute) && tuple._2.equals(getWrapperSourceFromIRI(attr.toString()))) { //System.out.println("Key: " + key + " LocalName: " + tuple._1 + " Source: " + tuple._2); //lavMappings.add(new Tuple2<>(attr.toString(), key)); JSONObject temp = new JSONObject(); temp.put("feature", key); temp.put("attribute", attr.toString()); featureAndAttributes.add(temp); } }); } }); }); } private void initViewOfSourceGraphsOverGlobalGraph() { /*Create a list containing Schema IRIs of all the sources/wrappers involved in the creation of GG*/ HashMap<String, String> sourceSchemasIRIs = new HashMap<>(); wrappersMongoInformation.forEach(wrapper -> { sourceSchemasIRIs.put(getDataSourceSchemaIRI((JSONObject) wrapper), getDataSourceSchemaIRI((JSONObject) wrapper)); }); ImmutableMap<String, String> immutableMap = ImmutableMap.copyOf(sourceSchemasIRIs); wrappersMongoInformation.forEach(wrapper -> { drawCovering((JSONObject) wrapper, immutableMap); }); } private void drawCovering(JSONObject wrapperInfo, ImmutableMap<String, String> sourceSchemasIRIs) { LOGGER.info("[Create LAV Covering for Wrapper: " + wrapperInfo.getAsString("name") + " ]"); /*Using dataSourceID for the wrapper, get the Schema IRI of the source*/ String dataSourceSchemaIri = getDataSourceSchemaIRI(wrapperInfo); HashMap<String, String> temp = new HashMap<>(); sourceSchemasIRIs.forEach(temp::put); temp.remove(dataSourceSchemaIri); List<Triple> triples = new ArrayList<>(); RDFUtil.runAQuery(RDFUtil.sparqlQueryPrefixes + " SELECT ?s ?p ?o WHERE { GRAPH <" + mdmGlobalGraphIri + "> { ?s ?p ?o . }}", mdmGlobalGraphIri).forEachRemaining(res -> { //System.out.println(res.get("s").toString() + "\t" + res.get("p").toString() + "\t" + res.get("o").toString()); triples.add(new Triple(new ResourceImpl(res.get("s").toString()).asNode(), new PropertyImpl(res.get("p").asResource().toString()).asNode(), new ResourceImpl(res.get("o").toString()).asNode())); }); JSONObject lavMappingSubGraph = new JSONObject(); JSONArray selectionArray = new JSONArray(); JSONArray graphicalGraphArray = new JSONArray(); triples.forEach(triple -> { if (triple.getSubject().getURI().contains(dataSourceSchemaIri) || triple.getObject().getURI().contains(dataSourceSchemaIri) || triple.getSubject().getURI().contains(Namespaces.G.val())) { /*Avoiding other sources IRIs*/ if (!temp.containsKey(getSourceIRIFromIRI(triple.getObject().getURI()))) { //System.out.println(triple.getSubject().toString() + " " + triple.getPredicate().toString() + " " + triple.getObject().toString()); //System.out.println(triple.toString()); //Filter features if (triple.getObject().getURI().equals(GlobalGraph.FEATURE.val())) { //System.out.println("Feature: "+ triple); selectionArray.add(createObject(triple.getSubject().getURI(), triple.getSubject().getURI(), triple.getObject().getURI())); graphicalGraphArray.add(nodesIds.get(triple.getSubject().getURI())); } //Filter concepts if (triple.getObject().getURI().equals(GlobalGraph.CONCEPT.val())) { //System.out.println("Concept: "+ triple); selectionArray.add(createObject(triple.getSubject().getURI(), triple.getSubject().getURI(), triple.getObject().getURI())); graphicalGraphArray.add(nodesIds.get(triple.getSubject().getURI())); } /*Create source and target i.e. edges, for same as relationship */ if (triple.getPredicate().getURI().equals(GlobalGraph.SAME_AS.val())) { //System.out.println("SAME AS: "+ triple); //selectionArray.add( createObject(triple.getObject().getURI() , triple.getObject().getURI(), GlobalGraph.FEATURE.val() )); //graphicalGraphArray.add(nodesIds.get(triple.getObject().getURI())); JSONObject obj = new JSONObject(); obj.put("source", createObject(triple.getSubject().getURI(), triple.getSubject().getURI(), GlobalGraph.FEATURE.val())); obj.put("target", createObject(triple.getObject().getURI(), triple.getObject().getURI(), GlobalGraph.FEATURE.val())); obj.put("name", GlobalGraph.SAME_AS.val()); obj.put("iri", GlobalGraph.SAME_AS.val()); selectionArray.add(obj); } /*Create source and target i.e. edges, by connecting Concepts with Features*/ if (triple.getPredicate().getURI().equals(GlobalGraph.HAS_FEATURE.val())) { //System.out.println(triple); JSONObject obj = new JSONObject(); obj.put("source", createObject(triple.getSubject().getURI(), triple.getSubject().getURI(), GlobalGraph.CONCEPT.val())); obj.put("target", createObject(triple.getObject().getURI(), triple.getObject().getURI(), GlobalGraph.FEATURE.val())); obj.put("name", GlobalGraph.HAS_FEATURE.val()); obj.put("iri", GlobalGraph.HAS_FEATURE.val()); selectionArray.add(obj); } /*Create source and target i.e. edges, for subClassOf relationship i.e. Connect Concept with Concept*/ if (triple.getPredicate().getURI().equals(RDFS.SUB_CLASS_OF)) { //System.out.println(" SUB CLASS OF: "+ triple); JSONObject obj = new JSONObject(); obj.put("source", createObject(triple.getSubject().getURI(), triple.getSubject().getURI(), GlobalGraph.CONCEPT.val())); obj.put("target", createObject(triple.getObject().getURI(), triple.getObject().getURI(), GlobalGraph.CONCEPT.val())); obj.put("name", RDFS.SUB_CLASS_OF); obj.put("iri", GlobalGraph.HAS_RELATION.val()); selectionArray.add(obj); } /*Connecting concepts with concepts which are not subClasses*/ if (!triple.getPredicate().getURI().equals(RDFS.SUB_CLASS_OF) && !triple.getPredicate().getURI().equals(OWL.SAME_AS) && !triple.getPredicate().getURI().equals(RDF.TYPE) && !triple.getPredicate().getURI().equals(GlobalGraph.HAS_FEATURE.val())) { //System.out.println(triple); JSONObject obj = new JSONObject(); obj.put("source", createObject(triple.getSubject().getURI(), triple.getSubject().getURI(), GlobalGraph.CONCEPT.val())); obj.put("target", createObject(triple.getObject().getURI(), triple.getObject().getURI(), GlobalGraph.CONCEPT.val())); obj.put("name", triple.getPredicate().getURI()); obj.put("iri", GlobalGraph.HAS_RELATION.val()); selectionArray.add(obj); } } } }); lavMappingSubGraph.put("selection", selectionArray); lavMappingSubGraph.put("graphicalSubGraph", graphicalGraphArray); lavMappingSubGraph.put("LAVMappingID", wrapperInfo.getAsString("LAVMappingID")); //System.out.println(lavMappingSubGraph); LAVMappingResource.createLAVMappingSubgraph(lavMappingSubGraph.toJSONString()); } private JSONObject createObject(String iri, String name, String namespace) { JSONObject temp = new JSONObject(); temp.put("id", nodesIds.get(iri)); temp.put("iri", iri); temp.put("name", name); temp.put("namespace", namespace); return temp; } private String getDataSourceSchemaIRI(JSONObject obj) { String iri = ""; MongoClient client = Utils.getMongoDBClient(); MongoCursor<Document> dataSourceCursor = MongoCollections.getDataSourcesCollection(client). find(new Document("dataSourceID", obj.getAsString("dataSourceID"))).iterator(); JSONObject dataSourceInfo = (JSONObject) JSONValue.parse(MongoCollections.getMongoObject(client, dataSourceCursor)); iri = dataSourceInfo.getAsString("schema_iri"); client.close(); return iri; } private String getLastElementOfIRI(String iri) { return iri.split("/")[iri.split("/").length - 1]; } private String getWrapperSourceFromIRI(String iri) { return iri.split("/")[iri.split("/").length - 2]; } private String getSourceFromIRI(String iri) { // If the global IRI is of a source, e.g. http://www.BDIOntology.com/schema/Bicycles/Bicycle_Manufacturer then // the word after http://www.BDIOntology.com/schema/ is the name of the source. However, if the global IRI is from global // instances (created while aligning) e.g. http://www.BDIOntology.com/global/ermaElU0-QbtrOURF/Model, then we can not identify the source from this IRI, String source = ""; if (iri.contains(Namespaces.G.val())) { source = "global"; } if (iri.contains(Namespaces.Schema.val())) { /*Extract the source name from the IRI*/ /*Source Name is Bicycle in this IRI http://www.BDIOntology.com/schema/Bicycles/Bicycle_Manufacturer */ source = iri.split(Namespaces.Schema.val())[1].split("/")[0]; } return source; } private String getSourceIRIFromIRI(String iri) { String sourceIri = iri; if (iri.contains(Namespaces.Schema.val())) { sourceIri = Namespaces.Schema.val() + iri.split(Namespaces.Schema.val())[1].split("/")[0]; } return sourceIri; } }
[ "ch.kashirabbani@gmail.com" ]
ch.kashirabbani@gmail.com
3104b866ea144898d87ff4279fe019d797a6380d
720db01f34d68ed093b887ffb3bd54355edf9316
/HelloWorld.java
4ceef93cd43723b8ceeb9c16a1cd9ec1b6b21279
[]
no_license
yukching20/HelloWorld
9edb9038153bef4dad03e8bb2df9f38af389a407
5ebae40938fd3e975d62f9f73ab2a7cf67ca7afe
refs/heads/master
2021-05-08T22:03:54.244677
2018-01-31T09:03:05
2018-01-31T09:03:05
119,662,150
0
0
null
null
null
null
UTF-8
Java
false
false
158
java
public class HelloWorld{ public static void main(String[] args){ for(int i=1;i<=10;i++){ System.out.println("Hello World ..." + i); } } }
[ "jane.tsang@tfh.com.hk" ]
jane.tsang@tfh.com.hk
df12f1a25171359e14421a72390cbf75c9fbe373
10cd2a2f1011dbcfdb555cce11dc5c132597a443
/proyecto/src/test/java/bravo/webapp/controller/UserFormControllerTest.java
ccaf25c63a8f251b76e710267afa1b1c1a718f33
[]
no_license
ana-26/ProyectoFinal
d4fb7670bf6127709da45aeb5531457f09adb2b7
ade514d61a4027e8fe09ade0ae6bc02ff0055ca6
refs/heads/master
2021-01-10T14:30:44.722575
2015-11-18T04:17:51
2015-11-18T04:17:51
46,392,621
0
0
null
2015-11-18T04:17:52
2015-11-18T03:26:27
null
UTF-8
Java
false
false
7,685
java
package bravo.webapp.controller; import org.appfuse.model.User; import org.appfuse.service.UserManager; import org.junit.Before; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.mock.web.MockHttpSession; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.web.WebAppConfiguration; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.web.context.WebApplicationContext; import org.springframework.web.servlet.view.InternalResourceViewResolver; import javax.servlet.Filter; import javax.servlet.http.HttpSession; import javax.transaction.Transactional; import static org.hamcrest.Matchers.*; import static org.junit.Assert.assertNotNull; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*; @ContextConfiguration(locations = { "classpath:/applicationContext-resources.xml", "classpath:/applicationContext-dao.xml", "classpath:/applicationContext-service.xml", "/WEB-INF/applicationContext*.xml", "/WEB-INF/dispatcher-servlet.xml", "/WEB-INF/security.xml"}) @Transactional @WebAppConfiguration public class UserFormControllerTest extends BaseControllerTestCase { @Autowired private WebApplicationContext context; @Autowired private Filter springSecurityFilterChain; private MockMvc mockMvc; @Before public void setUp() { mockMvc = MockMvcBuilders.webAppContextSetup(context) .addFilters(springSecurityFilterChain).build(); } @Test public void testAdd() throws Exception { log.debug("testing add new user..."); HttpSession session = mockMvc.perform(post("/j_security_check") .param("j_username", "admin").param("j_password", "admin")) .andExpect(status().is(HttpStatus.FOUND.value())) .andExpect(redirectedUrl("/")) .andReturn() .getRequest() .getSession(); mockMvc.perform((get("/userform").session((MockHttpSession) session)) .param("method", "Add")) .andExpect(status().isOk()) .andExpect(model().attributeExists("user")) .andExpect(model().attribute("user", hasProperty("username", nullValue()))); } @Test public void testAddWithoutPermission() throws Exception { log.debug("testing add new user..."); HttpSession session = mockMvc.perform(post("/j_security_check") .param("j_username", "user").param("j_password", "user")) .andExpect(status().is(HttpStatus.FOUND.value())) .andExpect(redirectedUrl("/")) .andReturn() .getRequest() .getSession(); mockMvc.perform((get("/userform").session((MockHttpSession) session)) .param("method", "Add")) .andExpect(status().is(HttpStatus.FORBIDDEN.value())); } @Test public void testCancel() throws Exception { log.debug("testing cancel..."); mockMvc.perform((post("/userform") .param("cancel", ""))) .andExpect(redirectedUrl("/home")); } @Test public void testEdit() throws Exception { log.debug("testing edit..."); HttpSession session = mockMvc.perform(post("/j_security_check") .param("j_username", "admin").param("j_password", "admin")) .andExpect(status().is(HttpStatus.FOUND.value())) .andExpect(redirectedUrl("/")) .andReturn() .getRequest() .getSession(); mockMvc.perform((get("/userform").session((MockHttpSession) session) .param("id", "-1"))) .andExpect(model().attributeExists("user")) .andExpect(model().attribute("user", hasProperty("fullName", is("Tomcat User")))); } @Test public void testEditWithoutPermission() throws Exception { log.debug("testing edit..."); HttpSession session = mockMvc.perform(post("/j_security_check") .param("j_username", "user").param("j_password", "user")) .andExpect(status().is(HttpStatus.FOUND.value())) .andExpect(redirectedUrl("/")) .andReturn() .getRequest() .getSession(); mockMvc.perform((get("/userform").session((MockHttpSession) session)) .param("id", "-1")) .andExpect(status().is(HttpStatus.FORBIDDEN.value())); } @Test public void testEditProfile() throws Exception { log.debug("testing edit profile..."); HttpSession session = mockMvc.perform(post("/j_security_check") .param("j_username", "user").param("j_password", "user")) .andExpect(status().is(HttpStatus.FOUND.value())) .andExpect(redirectedUrl("/")) .andReturn() .getRequest() .getSession(); mockMvc.perform((get("/userform").session((MockHttpSession) session))) .andExpect(status().isOk()) .andExpect(model().attribute("user", hasProperty("fullName", is("Tomcat User")))); } @Test public void testSave() throws Exception { // set updated properties first since adding them later will // result in multiple parameters with the same name getting sent User user = ((UserManager) context.getBean("userManager")).getUser("-1"); user.setConfirmPassword(user.getPassword()); user.setLastName("Updated Last Name"); HttpSession session = mockMvc.perform(post("/j_security_check") .param("j_username", "user").param("j_password", "user")) .andExpect(status().is(HttpStatus.FOUND.value())) .andExpect(redirectedUrl("/")) .andReturn() .getRequest() .getSession(); mockMvc.perform((post("/userform") .param("id", user.getId().toString()) .param("username", user.getUsername()) .param("firstName", user.getFirstName()) .param("lastName", user.getLastName()) .param("email", user.getEmail()) .param("passwordHint", user.getPasswordHint()) .session((MockHttpSession) session))) .andExpect(status().is3xxRedirection()) .andExpect(model().hasNoErrors()); } @Test public void testAddWithMissingFields() throws Exception { mockMvc.perform((post("/userform").param("firstName", "Jack"))) .andExpect(status().isOk()) .andExpect(model().hasErrors()) .andExpect(model().errorCount(4)); } @Test public void testRemove() throws Exception { HttpSession session = mockMvc.perform(post("/j_security_check") .param("j_username", "admin").param("j_password", "admin")) .andExpect(status().is(HttpStatus.FOUND.value())) .andExpect(redirectedUrl("/")) .andReturn() .getRequest() .getSession(); session = mockMvc.perform((post("/userform")) .session((MockHttpSession) session) .param("delete", "").param("id", "-2")) .andExpect(status().is3xxRedirection()) .andExpect(model().hasNoErrors()) .andReturn().getRequest().getSession(); assertNotNull(session.getAttribute("successMessages")); } }
[ "anasr93@gmail.com" ]
anasr93@gmail.com
a5037ef5246dc283be1cdee1288688e547906f7d
819c870d4a5e16ef21e9c91f1f7496f79ba71e06
/app/src/main/java/com/annekay/android/cryptoconvert/view/FeaturedCoinsFragment.java
013889a1d0fa173cc291dced3f1437df498524c0
[]
no_license
anneKay/cryptoconvert
d73e0bea5a89e0a89921acfadccfa1294dfa1d0b
57dfb02ffe1c1bfe6ff74e466c767720441f92b2
refs/heads/master
2021-08-10T17:11:42.579194
2017-11-12T20:40:04
2017-11-12T20:40:04
109,623,733
0
0
null
null
null
null
UTF-8
Java
false
false
6,069
java
package com.annekay.android.cryptoconvert.view; import android.app.Activity; import android.app.ProgressDialog; import android.arch.lifecycle.Observer; import android.arch.lifecycle.ViewModel; import android.arch.lifecycle.ViewModelProviders; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.support.v4.widget.SwipeRefreshLayout; import android.support.v7.widget.DefaultItemAnimator; import android.support.v7.widget.DividerItemDecoration; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.view.inputmethod.InputMethodManager; import android.widget.EditText; import android.widget.ProgressBar; import android.widget.TextView; import android.widget.Toast; import com.android.volley.VolleyError; import com.annekay.android.cryptoconvert.R; import com.annekay.android.cryptoconvert.adapter.CurrencyAdapter; import com.annekay.android.cryptoconvert.model.ApiResponse; import com.annekay.android.cryptoconvert.model.Crypto; import com.annekay.android.cryptoconvert.service.CryptoApiService; import com.annekay.android.cryptoconvert.service.CryptoUtil; import com.annekay.android.cryptoconvert.viewmodel.ValuesViewModel; import java.util.ArrayList; import java.util.List; import static android.content.ContentValues.TAG; import static android.icu.lang.UCharacter.GraphemeClusterBreak.T; /** * A simple {@link Fragment} subclass. */ public class FeaturedCoinsFragment extends Fragment implements SwipeRefreshLayout.OnRefreshListener{ private RecyclerView mRecyclerView; private final String CRYPTO_URL= "https://min-api.cryptocompare.com/data/pricemulti?fsyms=BTC,ETH&tsyms=USD,EUR,NGN,BRL,BWP,GHC,HKD,JPY,KPW,CNY,DKK&extraParams=cryptocon"; private TextView mErrorMessageDisplay; private ProgressBar mLoadingIndicator; private TextView feedBackView; private SwipeRefreshLayout mSwipeRefreshLayout; private CurrencyAdapter mAdapter; public static final String LOG_TAG = MainActivity.class.getSimpleName(); CryptoApiService mApiService = null; CryptoUtil mCryptoUtil; List<Crypto> cryptoValues = new ArrayList<>(); public FeaturedCoinsFragment() { // Required empty public constructor } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.featured_layout, container, false); mRecyclerView = rootView.findViewById(R.id.recyclerView); mErrorMessageDisplay = rootView.findViewById(R.id.tv_error_message_display); feedBackView = rootView.findViewById(R.id.feed_back); mSwipeRefreshLayout = rootView.findViewById(R.id.swipe_container); //apply different colors to the swipe refresh layout mSwipeRefreshLayout.setColorSchemeResources(R.color.orange, R.color.green, R.color.blue); mLoadingIndicator = rootView.findViewById(R.id.pb_loading_indicator); mLoadingIndicator.setVisibility(View.VISIBLE); mSwipeRefreshLayout.setOnRefreshListener(this); detectNetworkState(); setupView(); return rootView; } @Override public void onDestroy() { super.onDestroy(); mLoadingIndicator.setVisibility(View.GONE); } @Override public void onRefresh() { detectNetworkState(); } public void initVolleyCallback(){ showCryptoDataView(); mApiService = new CryptoApiService() { @Override public void notifySuccess(List<Crypto> mCryptoValues) { mLoadingIndicator.setVisibility(View.GONE); cryptoValues = mCryptoValues; mAdapter.addValues(cryptoValues); mSwipeRefreshLayout.post(new Runnable() { @Override public void run() { if (mSwipeRefreshLayout.isRefreshing()) { mSwipeRefreshLayout.setRefreshing(false); } } }); } @Override public void notifyError(String requestType,VolleyError error) { showErrorMessage(); } }; } // method to detect network connectivity public void detectNetworkState() { ConnectivityManager cm = (ConnectivityManager) getActivity().getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo activeNetwork = cm.getActiveNetworkInfo(); boolean isConnected = activeNetwork != null && activeNetwork.isConnectedOrConnecting(); if (isConnected) { initVolleyCallback(); mCryptoUtil = new CryptoUtil(mApiService,getContext()); mCryptoUtil.getDataVolley("GETCALL", CRYPTO_URL); } else { showNetworkMessage(); } } private void setupView() { mRecyclerView.setLayoutManager(new LinearLayoutManager( getActivity(), LinearLayoutManager.VERTICAL, false) ); mRecyclerView.hasFixedSize(); mAdapter = new CurrencyAdapter(getLayoutInflater()); mRecyclerView.setAdapter(mAdapter); } private void showCryptoDataView() { mErrorMessageDisplay.setVisibility(View.GONE); mRecyclerView.setVisibility(View.VISIBLE); } private void showErrorMessage() { mRecyclerView.setVisibility(View.GONE); mErrorMessageDisplay.setVisibility(View.VISIBLE); } private void showNetworkMessage(){ mRecyclerView.setVisibility(View.GONE); mLoadingIndicator.setVisibility(View.GONE); feedBackView.setVisibility(View.VISIBLE); feedBackView.setText(R.string.feedback); } }
[ "nwannauk@gmail.com" ]
nwannauk@gmail.com
16e493980345afbcc98be8789e01d43fa4efe729
058c46ceb010dda9ff02c385c94be1d5167fef5b
/app/src/main/java/com/theandroiddeveloper/bakersworld/CommonUtil.java
c5a8546c6d99114d9079a866d984965bb6e3cdd9
[]
no_license
pawarprasad37/udacity_baking_app
5be236c448ba1bff5964ad69e35df4d7ff07001e
e654cf6f67f9d287970c0969df43fc39b0d06b4c
refs/heads/master
2020-04-30T03:58:19.999299
2019-03-22T19:29:01
2019-03-22T19:29:01
176,599,739
0
0
null
null
null
null
UTF-8
Java
false
false
1,478
java
package com.theandroiddeveloper.bakersworld; import android.app.Activity; import android.content.Context; import android.graphics.Point; import android.net.ConnectivityManager; import android.os.Handler; import android.os.Looper; import android.view.Display; import android.widget.Toast; public class CommonUtil { public static void showToast(final Context context, final String s, final int duration) { new Handler(Looper.getMainLooper()).post(new Runnable() { @Override public void run() { Toast.makeText(context, s, duration) .show(); } }); } public static boolean hasNetworkConnectivity(Context context) { final ConnectivityManager connectivityManager = ((ConnectivityManager) context .getSystemService(Context.CONNECTIVITY_SERVICE)); return connectivityManager.getActiveNetworkInfo() != null && connectivityManager.getActiveNetworkInfo().isConnected(); } public static int getDeviceHeight(Activity activity) { Display display = activity.getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); return size.y; } public static int getDeviceWidth(Activity activity) { Display display = activity.getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); return size.x; } }
[ "prasad@Prasads-MacBook-Air.local" ]
prasad@Prasads-MacBook-Air.local
049d83c815e69dda2c62e934d9a012acd530d9fe
4ed2224bd49999b00581206e9c29fe831be4112c
/EXAMENES/2016/A/Ex05mmbv01/escalera.java
1e0310d7ac393453d75bb4f7bad5003f1a3550ff
[]
no_license
MMARGARITARBV/ejercicios-java
b22425f9b5ee914ed9e5c2fd123f491e46981157
89b86efc96ce52f7a3d2163d1a38c4921c394f8c
refs/heads/master
2021-01-24T10:34:04.553422
2017-02-06T17:02:18
2017-02-06T17:02:18
69,348,890
7
0
null
null
null
null
UTF-8
Java
false
false
2,224
java
/* * escalera.java * * Copyright 2016 FPMARGA <fpmarga@fpmarga> * * Realiza un programa que pinte una escalera que va descendiendo de izquierda a derecha. * * El programa pedirรก el nรบmero de escalones y la altura de cada escalรณn. * * La anchura de los escalones siempre es la misma: 4 asteriscos. * * */ public class escalera { public static void main (String args[]) { System.out.println("ESTE PROGRAMA PINTA UNA ESCALERA"); System.out.println("---------------------------------\n"); System.out.print("Introduce el nรบmero de escalones: "); int numEscalonesIntroducidos = Integer.parseInt(System.console().readLine()); System.out.print("Introduce la altura de cada escalรณn: "); int alturaEscalon = Integer.parseInt(System.console().readLine()); System.out.print("Introduzca la anchura de cada escalรณn: "); int anchuraEscalon = Integer.parseInt(System.console().readLine()); System.out.println("\nIntroduciendo altura y numero de escalones: \n"); for(int z = 0; z < numEscalonesIntroducidos; z++){ // sin tener en cuenta la altura del escalรณn for (int y = 0 ; y < alturaEscalon ; y++){ for (int x = 0; x < 4 + 4 * z ; x++) { System.out.print("*"); } System.out.println(); } } System.out.println("\nIntroduciendo altura y numero de escalones: \n"); for(int escalon = 0; escalon < numEscalonesIntroducidos; escalon++){ // teniendo en cuenta la altura y el numero de escalones for (int y = 0 ; y < alturaEscalon ; y++){ for (int x = 0; x < 4 + numEscalonesIntroducidos * escalon ; x++) { System.out.print("*"); } System.out.println();// salto de linea } } System.out.println("\nIntroduciendo todos los datos: \n"); for(int z = 0; z < numEscalonesIntroducidos; z ++){ // introduciendo todos los datos for(int y = 0 ; y < alturaEscalon; y++){ for (int x = 0 ; x < anchuraEscalon + anchuraEscalon * z; x++) {//ancho de los escalones System.out.print("*"); } System.out.print("\n"); } } } }
[ "mmargaritarbv@gmail.com" ]
mmargaritarbv@gmail.com
20c9954568d66c90759ca88a516f916b4e818694
30fcfdd955c4b84ad5a7e49320a81fdee1c80bfc
/app/src/main/java/com/seventyseven/internetspeedindicator/Utils/DataInfo.java
8a1bed8bede4c8e37c844cdff341d2c1b0e609e0
[]
no_license
parth99savani/InternetSpeedIndicator
3d6f4c33b84339c202a3ff5c3e32842ce3cbfc98
79e6d31986aa444e46570a8d56547daba161b1a9
refs/heads/master
2022-12-23T16:06:42.381249
2020-10-01T13:18:55
2020-10-01T13:18:55
300,169,544
0
0
null
null
null
null
UTF-8
Java
false
false
294
java
package com.seventyseven.internetspeedindicator.Utils; import android.content.Context; public class DataInfo { Context context; public String date; public String mobile; public String total; public String wifi; public double mobileData; public double wifiData; }
[ "parth99savani@gmail.com" ]
parth99savani@gmail.com
5c25cd38cebe11211c34793eaa5d299e1434c4a2
72ba2b18bc0b300f617d69a891c864d251176ad3
/src/main/java/com/example/SpringBootSecurityJwaMysql/dao/UserDao.java
ec7b4d72eb5a7789a3ca7ac6ceb130376398a917
[]
no_license
prosenjitinno/SpringBootSecurityJwaMysql
a9ddc42ee62c38550ed5abab1dc700b7eacfcc0f
2bce44b9b5d664fbc60195210749dd0567b6b48f
refs/heads/master
2020-09-05T04:25:17.980704
2019-11-06T11:36:27
2019-11-06T11:36:27
219,981,985
0
0
null
null
null
null
UTF-8
Java
false
false
401
java
package com.example.SpringBootSecurityJwaMysql.dao; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; import com.example.SpringBootSecurityJwaMysql.model.Employee; import java.lang.String; import java.util.List; @Repository public interface UserDao extends JpaRepository<Employee, Integer> { Employee findByEmpName(String empname); }
[ "prosenjit.innovious@gmail.com" ]
prosenjit.innovious@gmail.com
cc17c26a5bbef397c489a8ce3110d726ee4eb533
041c5fc9ca26e6c3a67114e295ef5cf773d840f7
/test/aop/aop01_answer_with_aop_config/TargetServiceImpl.java
fe2a6cf55dfb8ae551e9b1cb90ce2e0226513700
[]
no_license
EnterKey/spring-tutorial
8728f6147e40eb6c93c7c62d74171a0c36099767
b74ed9432dd20ed89f5b4fa3703a1e58d0768302
refs/heads/master
2021-01-23T01:51:37.043045
2015-05-08T08:48:17
2015-05-08T08:48:21
null
0
0
null
null
null
null
UTF-8
Java
false
false
245
java
package aop.aop01_answer_with_aop_config; import org.springframework.stereotype.Service; @Service public class TargetServiceImpl implements TargetService { public void doSomething() { System.out.println("do something"); } }
[ "keesun.baik@navercorp.com" ]
keesun.baik@navercorp.com
52a01d1f30494148bcbcc81387fa04df70e3c62b
8af1164bac943cef64e41bae312223c3c0e38114
/results-java/apache--kafka/0cf7708007b01faac5012d939f3c50db274f858d/after/HeartbeatResponse.java
21f55246c089090e7e5c39499a988d01191687ef
[]
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
2,982
java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.kafka.common.requests; import org.apache.kafka.common.protocol.ApiKeys; import org.apache.kafka.common.protocol.Errors; import org.apache.kafka.common.protocol.types.Schema; import org.apache.kafka.common.protocol.types.Struct; import java.nio.ByteBuffer; import static org.apache.kafka.common.protocol.CommonFields.ERROR_CODE; import static org.apache.kafka.common.protocol.CommonFields.THROTTLE_TIME_MS; public class HeartbeatResponse extends AbstractResponse { private static final Schema HEARTBEAT_RESPONSE_V0 = new Schema( ERROR_CODE); private static final Schema HEARTBEAT_RESPONSE_V1 = new Schema( THROTTLE_TIME_MS, ERROR_CODE); public static Schema[] schemaVersions() { return new Schema[] {HEARTBEAT_RESPONSE_V0, HEARTBEAT_RESPONSE_V1}; } /** * Possible error codes: * * GROUP_COORDINATOR_NOT_AVAILABLE (15) * NOT_COORDINATOR (16) * ILLEGAL_GENERATION (22) * UNKNOWN_MEMBER_ID (25) * REBALANCE_IN_PROGRESS (27) * GROUP_AUTHORIZATION_FAILED (30) */ private final Errors error; private final int throttleTimeMs; public HeartbeatResponse(Errors error) { this(DEFAULT_THROTTLE_TIME, error); } public HeartbeatResponse(int throttleTimeMs, Errors error) { this.throttleTimeMs = throttleTimeMs; this.error = error; } public HeartbeatResponse(Struct struct) { this.throttleTimeMs = struct.getOrElse(THROTTLE_TIME_MS, DEFAULT_THROTTLE_TIME); error = Errors.forCode(struct.get(ERROR_CODE)); } public int throttleTimeMs() { return throttleTimeMs; } public Errors error() { return error; } @Override protected Struct toStruct(short version) { Struct struct = new Struct(ApiKeys.HEARTBEAT.responseSchema(version)); struct.setIfExists(THROTTLE_TIME_MS, throttleTimeMs); struct.set(ERROR_CODE, error.code()); return struct; } public static HeartbeatResponse parse(ByteBuffer buffer, short version) { return new HeartbeatResponse(ApiKeys.HEARTBEAT.parseResponse(version, buffer)); } }
[ "fraczwojciech@gmail.com" ]
fraczwojciech@gmail.com
59ceca51ec00e59492ea67409d738a7d4be96da7
d1a6d1e511df6db8d8dd0912526e3875c7e1797d
/genny_JavaWithoutLambdasApi21_ReducedClassCount/applicationModule/src/test/java/applicationModulepackageJava1/Foo164Test.java
3a41ade3c7cad7556076198043ef4d33572511e5
[]
no_license
NikitaKozlov/generated-project-for-desugaring
0bc1443ab3ddc84cd289331c726761585766aea7
81506b3711004185070ca4bb9a93482b70011d36
refs/heads/master
2020-03-20T00:35:06.996525
2018-06-12T09:30:37
2018-06-12T09:30:37
137,049,317
0
0
null
null
null
null
UTF-8
Java
false
false
741
java
package applicationModulepackageJava1; import org.junit.Test; public class Foo164Test { @Test public void testFoo0() { new Foo164().foo0(); } @Test public void testFoo1() { new Foo164().foo1(); } @Test public void testFoo2() { new Foo164().foo2(); } @Test public void testFoo3() { new Foo164().foo3(); } @Test public void testFoo4() { new Foo164().foo4(); } @Test public void testFoo5() { new Foo164().foo5(); } @Test public void testFoo6() { new Foo164().foo6(); } @Test public void testFoo7() { new Foo164().foo7(); } @Test public void testFoo8() { new Foo164().foo8(); } @Test public void testFoo9() { new Foo164().foo9(); } }
[ "nikita.e.kozlov@gmail.com" ]
nikita.e.kozlov@gmail.com
e86fc173a9955054d2dfe134f7ecb922ab09c5c8
12f0b4fc1ac698afbc29d339c60b47caa1cf348b
/app/src/main/java/com/example/administrator/yanshi/FrmTab1.java
b64e75e17ed670fe4d906432930771eb1037becc
[]
no_license
smoonb/YanShi
2793767b07b3ff435650687c36dd34c9bc6a7504
745431ded06b1642f177e844a324b51a259f7a16
refs/heads/master
2021-01-16T21:41:29.769451
2016-08-12T07:18:42
2016-08-12T07:18:42
65,453,527
0
0
null
null
null
null
UTF-8
Java
false
false
5,580
java
package com.example.administrator.yanshi; import android.support.design.widget.FloatingActionButton; import android.support.design.widget.Snackbar; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentPagerAdapter; import android.support.v4.view.ViewPager; import android.os.Bundle; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; public class FrmTab1 extends AppCompatActivity { /** * The {@link android.support.v4.view.PagerAdapter} that will provide * fragments for each of the sections. We use a * {@link FragmentPagerAdapter} derivative, which will keep every * loaded fragment in memory. If this becomes too memory intensive, it * may be best to switch to a * {@link android.support.v4.app.FragmentStatePagerAdapter}. */ private SectionsPagerAdapter mSectionsPagerAdapter; /** * The {@link ViewPager} that will host the section contents. */ private ViewPager mViewPager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_frm_tab1); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); // Create the adapter that will return a fragment for each of the three // primary sections of the activity. mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager()); // Set up the ViewPager with the sections adapter. mViewPager = (ViewPager) findViewById(R.id.container); mViewPager.setAdapter(mSectionsPagerAdapter); FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab); fab.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) .setAction("Action", null).show(); } }); } @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_frm_tab1, 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); } /** * A placeholder fragment containing a simple view. */ public static class PlaceholderFragment extends Fragment { /** * The fragment argument representing the section number for this * fragment. */ private static final String ARG_SECTION_NUMBER = "section_number"; public PlaceholderFragment() { } /** * Returns a new instance of this fragment for the given section * number. */ public static PlaceholderFragment newInstance(int sectionNumber) { PlaceholderFragment fragment = new PlaceholderFragment(); Bundle args = new Bundle(); args.putInt(ARG_SECTION_NUMBER, sectionNumber); fragment.setArguments(args); return fragment; } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_frm_tab1, container, false); TextView textView = (TextView) rootView.findViewById(R.id.section_label); textView.setText(getString(R.string.section_format, getArguments().getInt(ARG_SECTION_NUMBER))); return rootView; } } /** * A {@link FragmentPagerAdapter} that returns a fragment corresponding to * one of the sections/tabs/pages. */ public class SectionsPagerAdapter extends FragmentPagerAdapter { public SectionsPagerAdapter(FragmentManager fm) { super(fm); } @Override public Fragment getItem(int position) { // getItem is called to instantiate the fragment for the given page. // Return a PlaceholderFragment (defined as a static inner class below). return PlaceholderFragment.newInstance(position + 1); } @Override public int getCount() { // Show 3 total pages. return 3; } @Override public CharSequence getPageTitle(int position) { switch (position) { case 0: return "SECTION 1"; case 1: return "SECTION 2"; case 2: return "SECTION 3"; } return null; } } }
[ "sunbo_1987821@163.com" ]
sunbo_1987821@163.com
7701c7dc7c1c6ed942a0ba7a5f185fbb36812a2d
e97460f2b9df277a0f15e3c993d19c224bc0dd48
/evaluation/src/main/java/com/buguagaoshu/homework/evaluation/vo/ForgetPasswordVo.java
2c5b88edb962774b67ce0074f99ed60be7953c78
[ "MIT" ]
permissive
jack1981/HomeworkEvaluation
6eb8a4878179d2c242829d5195ff9b4ea6689535
30ec78e4c2a8020ee17ce2aeff29c49555a66ea2
refs/heads/master
2023-06-02T07:09:48.364292
2021-05-05T11:29:27
2021-05-05T11:29:27
null
0
0
null
null
null
null
UTF-8
Java
false
false
666
java
package com.buguagaoshu.homework.evaluation.vo; import lombok.Data; import org.hibernate.validator.constraints.Length; import javax.validation.constraints.Email; /** * @author Pu Zhiwei {@literal puzhiweipuzhiwei@foxmail.com} * create 2021-04-12 21:00 */ @Data public class ForgetPasswordVo { @Email(message = "้‚ฎ็ฎฑๆ ผๅผ้”™่ฏฏ") private String email; private String oldEmailCode; private String verifyCode; private String code; @Length(max = 25, min = 6, message = "ๅฏ†็ ้•ฟๅบฆ้”™่ฏฏ๏ผ") private String newPassword; @Length(max = 25, min = 6, message = "ๅฏ†็ ้•ฟๅบฆ้”™่ฏฏ๏ผ") private String password; }
[ "948805382@qq.com" ]
948805382@qq.com
753ee274785d2d1d8f44e2b7955d427edb0e0b4e
ed5159d056e98d6715357d0d14a9b3f20b764f89
/test/irvine/oeis/a245/A245227Test.java
3dc0c8e49601b3bcf1feaab0d534ba42d3a940d1
[]
no_license
flywind2/joeis
c5753169cf562939b04dd246f8a2958e97f74558
e5efd6971a0062ac99f4fae21a7c78c9f9e74fea
refs/heads/master
2020-09-13T18:34:35.080552
2019-11-19T05:40:55
2019-11-19T05:40:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
195
java
package irvine.oeis.a245; import irvine.oeis.AbstractSequenceTest; /** * Tests the corresponding class. * @author Sean A. Irvine */ public class A245227Test extends AbstractSequenceTest { }
[ "sean.irvine@realtimegenomics.com" ]
sean.irvine@realtimegenomics.com
00900c90864c93875dc19ca0bdd0bca0442f02ad
96f8d42c474f8dd42ecc6811b6e555363f168d3e
/baike/sources/qsbk/app/slide/QHAdFragment.java
5d81669580208f88f38dc485086e0c18b02ce899
[]
no_license
aheadlcx/analyzeApk
050b261595cecc85790558a02d79739a789ae3a3
25cecc394dde4ed7d4971baf0e9504dcb7fabaca
refs/heads/master
2020-03-10T10:24:49.773318
2018-04-13T09:44:45
2018-04-13T09:44:45
129,332,351
6
2
null
null
null
null
UTF-8
Java
false
false
941
java
package qsbk.app.slide; import android.os.Bundle; import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import qsbk.app.ad.feedsad.FeedsAd; import qsbk.app.ad.feedsad.qhad.QhAdItemData; import qsbk.app.fragments.BaseFragment; import qsbk.app.utils.ReportAdForMedalUtil.AD_PROVIDER; public class QHAdFragment extends BaseFragment { private QhAdItemData a; public QHAdFragment(QhAdItemData qhAdItemData) { this.a = qhAdItemData; } public View onCreateView(LayoutInflater layoutInflater, ViewGroup viewGroup, Bundle bundle) { if (this.a == null) { return null; } FeedsAd.getInstance().setAdShowed(this.a, AD_PROVIDER.QH); return this.a.getAdView().getView(null); } public void onViewCreated(View view, @Nullable Bundle bundle) { super.onViewCreated(view, bundle); } }
[ "aheadlcxzhang@gmail.com" ]
aheadlcxzhang@gmail.com
7e9cdb1d5ce89ba91ab5917a9f7fa20636b466e6
9b49df60114709712d465615d097e0a160ce6695
/src/main/java/com/malex/lecture_7_Date/example01/InstantExample.java
1213545ff404f8310df8feb1cd1c954d5b1cb1fe
[]
no_license
MAlexJ/example
6077d8795d9474823711b19b2a437cd9e10d370b
463c472d3d1a3f1dbe919b81b37ec5cc596b3170
refs/heads/master
2023-06-21T21:32:56.443524
2023-01-06T12:00:50
2023-01-06T12:00:50
30,040,333
1
0
null
2023-06-14T22:51:22
2015-01-29T20:43:53
Java
UTF-8
Java
false
false
771
java
package com.malex.lecture_7_Date.example01; import lombok.extern.java.Log; import java.time.Duration; import java.time.Instant; /** * Instant * * <p>Instant class is used to work with machine readable time format, it stores date time in unix * timestamp. */ @Log public class InstantExample { public static void main(String[] args) { // Current timestamp Instant timestamp = Instant.now(); log.info("Current Timestamp = " + timestamp); // Instant from timestamp Instant specificTime = Instant.ofEpochMilli(timestamp.toEpochMilli()); log.info("Specific Time = " + specificTime); // Duration example Duration thirtyDay = Duration.ofDays(30); log.info("Duration: " + thirtyDay); } }
[ "alexmaximovj@gmail.com" ]
alexmaximovj@gmail.com
b6f465e9a83801ff61e00cfd4ba69922d112e7f2
a61f8e55d77a98ea5f064af94e15e00dbd0483ad
/SafeFoodSpring/src/main/java/com/ssafy/service/IMemberService.java
ba1ff133d2d6b8754d5f040524ca34d7e06e7127
[]
no_license
Minnaldo/Spring_work
64220187281f6ed4a51d91f768305a5fe62f75fa
579fae1129c9994af055a7c388fd5232ab082cb8
refs/heads/master
2022-12-25T06:53:42.272539
2019-11-08T00:16:11
2019-11-08T00:16:11
215,254,575
0
0
null
2022-12-16T09:58:49
2019-10-15T09:06:00
Java
UTF-8
Java
false
false
483
java
package com.ssafy.service; import java.util.List; import com.ssafy.vo.MemVO; public interface IMemberService { public void insert(String id, String pw, String name, String addr, String email, String tel, String alinfo); public void update(String id, String pw, String name, String addr, String email, String tel, String alinfo); public void delete(String id); public MemVO selectOne(String id); public List<MemVO> selectList(); public MemVO login(MemVO m); }
[ "minnaldo6602@gmail.com" ]
minnaldo6602@gmail.com
e3beca350683702dd4d28b46f9aa519224fe7eb9
db7f1e7e25e98ed7c6f7d9c02f320aec6218fa48
/Day0404/src/aop02/PersonAspect.java
ebe0ef71e9d99dce1eb524640068538d7d96097f
[]
no_license
Leegilsun/SaveCode
d0776b097a1ac2eb1a395be8906c2a2c53451184
4bc4ab0aafc6bc97249c24815047e7271821eba3
refs/heads/master
2021-01-22T20:02:55.491050
2017-04-06T04:38:27
2017-04-06T04:38:27
85,278,566
0
0
null
null
null
null
UTF-8
Java
false
false
1,003
java
package aop02; import org.aspectj.lang.annotation.After; import org.aspectj.lang.annotation.AfterReturning; import org.aspectj.lang.annotation.AfterThrowing; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.springframework.stereotype.Component; @Component //bean์œผ๋กœ ๋“ฑ๋กํ•˜๊ฒ ์Œ @Aspect //Aspect๋กœ ์‚ฌ์šฉํ•˜๊ฒ ์Œ public class PersonAspect { @Before("execution(public * aop02.*.doSomeThing(..))") public void doBefore(){ System.out.println("๋ฌธ์„ ์—ด๊ณ  ์ง‘์— ๋“ค์–ด๊ฐ„๋‹ค."); } @AfterReturning("execution(public * aop02.*.doSomeThing(..))") public void doAfterReuturning(){ System.out.println("๋ถˆ์„ ๋„๊ณ  ์ž”๋‹ค."); } @AfterThrowing("execution(public * aop02.*.doSomeThing(..))") public void doAfterThrowing(){ System.out.println("119์— ์‹ ๊ณ ํ•œ๋‹ค."); } @After("execution(public * aop02.*.doSomeThing(..))") public void doAfter(){ System.out.println("์ง‘์—์„œ ๋‚˜๊ฐ„๋‹ค"); } }
[ "dlrlftjs12@gmail.com" ]
dlrlftjs12@gmail.com
5b465018a3ccf65321cb31ca9d8ed60c174fc855
d6fcbf4c5fd3adac8702f5e57530329e7144efd7
/corejava/ch2/practice test/PT7Test33.java
57af4be84e3f202e2e6406c00813623c3721f3e9
[]
no_license
prabhatsingh2408/jlc
6d46c5556a999c9a83aec869a6381bf723ee867a
213bf35bb25cff69bc03bb4f488723678ccfd784
refs/heads/master
2021-01-20T18:58:06.596400
2016-07-04T09:04:13
2016-07-04T09:04:13
62,547,129
0
0
null
null
null
null
UTF-8
Java
false
false
140
java
class PT7Test33 { public static void main(String as[]) { for(int i=1;i<2;i++){ int a=99; System.out.println(a); } System.out.println(a); } }
[ "prabhatsingh2408@gmail.com" ]
prabhatsingh2408@gmail.com
959e3a2bc2aa171bf8c7b827abae1461b1f73939
b5c5e5d28d2efa2638c427c98d43a935b012a88f
/MSO/app/src/main/java/de/ema/mso_test/dto/MedikamentDTO.java
8282eac60715415dbd1488f5464e97d47ce495ac
[]
no_license
balerevi/MSO-Android
cfff06199449d96d669f8c41c162eb1164dbca34
479d448c01ac9d920cb0ce7eb1e1ac969251900e
refs/heads/master
2020-09-25T18:06:22.392406
2020-02-03T13:45:43
2020-02-03T13:45:43
226,060,199
0
0
null
2020-01-30T16:36:32
2019-12-05T09:06:16
Java
UTF-8
Java
false
false
342
java
package de.ema.mso_test.dto; import java.io.Serializable; /** * Reprรคsentiert ein Medikament, enthรคlt Informationen รผber Art, Dauer, Doszierung, usw. */ public class MedikamentDTO implements Serializable { private String name; private String dosierung; private NotfallkontaktDTO arzt; private String informationen; }
[ "evelyn.holtkamp@gmail.com" ]
evelyn.holtkamp@gmail.com
ff65f625ab082b0ba4bc2f014b62f17d210492ad
e2d8e34a831db2202f9deaa9e67712517ad5d105
/AndroidUtils/src/com/sababado/utils/UtilText.java
0c6f65cd9170da04ce16ba81a9225eb5835ba33e
[]
no_license
sababado/AndroidUtils
d85992c48d3c6ace735fa5803607b2111f1c048b
f18657a56c2879ae570c1ba703313443d882bf38
refs/heads/master
2021-01-01T19:55:15.213357
2013-05-12T16:56:00
2013-05-12T16:56:00
7,736,653
1
1
null
null
null
null
UTF-8
Java
false
false
1,729
java
/* * Copyright [2012] [Robert James Szabo] 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.sababado.utils; import android.text.SpannableString; import android.text.style.UnderlineSpan; /** * Text related Utility functions * @author Robert J. Szabo * @since 08/27/2012 * @version 1.0 */ public class UtilText { /** * Return a <code>String</code> as underlined. * @param text * @return */ public static SpannableString getUnderlinedContent(String text) { SpannableString content = new SpannableString(text); content.setSpan(new UnderlineSpan(), 0, content.length(), 0); return content; } /** * Trim empty space from the left of the the string.<br/> * <b>Example:</b> <i>" string "</i> will become <i>"string "</i> * @param s The string to trim * @return The trimmed string */ public static String trimLeft(String s) { return s.replaceAll("^\\s+", ""); } /** * Trim empty space from the right of the the string.<br/> * <b>Example:</b> <i>" string "</i> will become <i>" string"</i> * @param s The string to trim * @return The trimmed string */ public static String trimRight(String s) { return s.replaceAll("\\s+$", ""); } }
[ "robert.james.szabo@gmail.com" ]
robert.james.szabo@gmail.com
ebd2938d4f70110ccff10c564ea7c6430b12984d
478e36615ae742fecfcff6ef154499dcd0352240
/Ex16_Operator.java
ab0abcb6d39787153a14bbb2e17be1538938f591
[]
no_license
cjy-code/SSan_Yong
37d274a9a80d590650d2007a290018d80c085b61
e19a3de07f7add399a260a4a729f2e9237b6204a
refs/heads/master
2023-01-13T05:10:30.945477
2020-11-08T13:56:18
2020-11-08T13:56:18
null
0
0
null
null
null
null
UHC
Java
false
false
1,553
java
package com.test.java; public class Ex16_Operator { public static void main(String[] args) { //์—ฐ์‚ฐ์ž, Operator // - ํ”ผ์—ฐ์‚ฐ์ž (Operand)๋ฅผ ๋Œ€์ƒ์œผ๋กœ ๋ฏธ๋ฆฌ ์ •ํ•ด์ง„ ์—ฐ์‚ฐ(๊ณ„์‚ฐ, ํ–‰๋™)์„ ํ•œ ํ›„์— ๊ฒฐ๊ณผ๊ฐ’์„ ๋ฐ˜ํ™˜ํ•˜๋Š” ์š”์†Œ // - ์ฃผ๋กœ ๊ธฐํ˜ธ๋ฅผ ์‚ฌ์šฉํ•ด์„œ ํ‘œํ˜„ //1. ๋ฌธ์žฅ(Statement) //2. ํ‘œํ˜„์‹(Expression) //3. ์—ฐ์‚ฐ์ž //4. ํ”ผ์—ฐ์‚ฐ์ž //5. ์—ฐ์‚ฐ์ž ์šฐ์„ ์ˆœ์œ„ //6. ์—ฐ์‚ฐ ๋ฐฉํ–ฅ //์—ฐ์‚ฐ์ž์˜ ์ข…๋ฅ˜ //1. ์‚ฐ์ˆ  ์—ฐ์‚ฐ์ž //- +, -, *, /, % (๋‚˜๋จธ์ง€, mod) //- 2ํ•ญ ์—ฐ์‚ฐ์ž //- ํ”ผ์—ฐ์‚ฐ์ž๋ฅผ ์ˆซ์ž๋กœ ๊ฐ€์ง„๋‹ค. (์ •์ˆ˜, ์‹ค์ˆ˜) //1 + 2 * 3 + 4 // int a = 10; int b =3; System.out.println(a + b);// 13 System.out.println(a - b);// 7 System.out.println(a * b);// 30 System.out.println(a / b);// 3 System.out.println(a % b);// 1 System.out.println(); //๋‚˜๋ˆ„๊ธฐ ์—ฐ์‚ฐ์ž // -์ •์ˆ˜/์ •์ˆ˜ = ์ •์ˆ˜ // -์‹ค์ˆ˜/์ •์ˆ˜ = ์‹ค์ˆ˜ // -์ •์ˆ˜/์‹ค์ˆ˜ = ์‹ค์ˆ˜ // -์‹ค์ˆ˜/์‹ค์ˆ˜ = ์‹ค์ˆ˜ // ***** ๋ชจ๋“  ์‚ฐ์ˆ  ์—ฐ์‚ฐ์˜ ๊ฒฐ๊ณผ ์ž๋ฃŒํ˜•์€ ๋‘ ํ”ผ์—ฐ์‚ฐ์ž์˜ ์ž๋ฃŒํ˜• ์ค‘ ๋” ํฐ ์ž๋ฃŒํ˜•์œผ๋กœ ๋ฐ˜ํ™˜๋œ๋‹ค. System.out.println(10 / 3); System.out.println(10.0 / 3); System.out.println(10 / 3.0); System.out.println(10.0 / 3.0); int n1 = 2000000000;//20์–ต int n2 = 2000000000; int n3; n3 = n1 + n2; System.out.println("n3: " + n3); //int + int = int //long + int = long System.out.println(2000000000L + 2000000000); } }
[ "wls1514@gmail.com" ]
wls1514@gmail.com
f4a5eaaba98356240ed01cca7c8e325d157cb0b5
db7369dc6d99caac47c80e55c9f71ce26f4efaef
/freemarker-test/src/main/java/com/freemarker/test/Model.java
e3bcb21d9c7310f522668be293fe5802daadb620
[]
no_license
shazin/templatesrd
9bec677202c19a3cd503797055283fe2f7222228
8ed8bfc8da715d969134e908e959326b5be7f06f
refs/heads/master
2020-04-09T07:14:18.582364
2015-08-27T11:05:24
2015-08-27T11:05:24
41,481,800
0
0
null
null
null
null
UTF-8
Java
false
false
811
java
package com.freemarker.test; public class Model { private Integer propertyId; private String propertyName; private Double propertyPrice; public Model(Integer propertyId, String propertyName, Double propertyPrice) { super(); this.propertyId = propertyId; this.propertyName = propertyName; this.propertyPrice = propertyPrice; } public Integer getPropertyId() { return propertyId; } public void setPropertyId(Integer propertyId) { this.propertyId = propertyId; } public String getPropertyName() { return propertyName; } public void setPropertyName(String propertyName) { this.propertyName = propertyName; } public Double getPropertyPrice() { return propertyPrice; } public void setPropertyPrice(Double propertyPrice) { this.propertyPrice = propertyPrice; } }
[ "shazin.sadakath@team6.cms.lk" ]
shazin.sadakath@team6.cms.lk
5450bf563f9f61a35024d040d7da15e94e344953
fa043cb0f5aae7da8faedb8f21acb19862005f00
/src/FuzzyLogic/Line.java
b1ff3555824dd41855eb27517fd684c32e2c8541
[]
no_license
ahmeddrawy/team-formation-fuzzy-logic
0ab3fa6c39582d713aa1411bcf361278504b0be3
b4990b710e0fa88f08d972be84285d67ef5b6151
refs/heads/master
2023-02-08T23:49:47.885842
2020-12-31T13:29:53
2020-12-31T13:29:53
324,808,475
1
0
null
null
null
null
UTF-8
Java
false
false
724
java
package FuzzyLogic; public class Line { Point first; Point second ; double C = 0.0 ; double slope = 0.0 ; Line(Point first , Point second ){ this.first = first; this.second = second ; calculateSlope(); calculateC(); } public double solveY(double x ){ return slope*x + C ; } private void calculateSlope(){ slope = (1.0*second.getY() -first.getY())/(second.getX()-first.getX() ); return; } void calculateC(){ C = first.getY() - slope * first.getX(); } public double getSlope() { return slope; } public boolean inRange(double x ){ return first.getX()<= x && second.getX()>=x; } }
[ "ahmedhanfy1111@gmail.com" ]
ahmedhanfy1111@gmail.com
ac09ff8f4eb59c3134711bc063d0e9aa8adda12d
a77f79b44bf422baa1602019377ed40543f3921d
/InputCheck.java
dd6b272277f4f9ad02f26561b4b142519a5280cc
[]
no_license
ochiai00/-RPG
da849d4fa84bfa5f9f43c61f8413dd723e14b19d
c7c8f6e3263bf16bd7c80683f63aea20187d3832
refs/heads/master
2020-06-04T22:08:02.639840
2019-06-16T22:04:58
2019-06-16T22:04:58
192,209,387
0
0
null
null
null
null
UTF-8
Java
false
false
1,670
java
import java.util.InputMismatchException; import java.util.Scanner; public class InputCheck { public int isNum() { Scanner sc = new Scanner(System.in); while(true) { try { int a = sc.nextInt(); //System.out.println("ๆ•ฐๅญ—ใŒๅ…ฅๅŠ›ใ•ใ‚Œใพใ—ใŸใ€‚OK"); try { if(a > 0 && a < 3) { return a; }else{ System.out.println("1~2ใง้ธๆŠžใ—ใฆใใ ใ•ใ„ใ€‚"); return isNum(); } }catch(InputMismatchException e){ System.out.println("ๆŒ‡ๅฎšใ•ใ‚ŒใŸ็ฏ„ๅ›ฒใง้ธๆŠžใ—ใฆใใ ใ•ใ„ใ€‚"); return isNum(); } }catch(InputMismatchException e){ System.out.println("ๆŒ‡ๅฎšใ•ใ‚ŒใŸ็ฏ„ๅ›ฒใง้ธๆŠžใ—ใฆใใ ใ•ใ„ใ€‚"); return isNum(); } } } public int isNum2() { Scanner sc = new Scanner(System.in); while(true) { try { int pact = sc.nextInt(); //System.out.println("ๆ•ฐๅญ—ใŒๅ…ฅๅŠ›ใ•ใ‚Œใพใ—ใŸใ€‚OK"); try { if(pact > 0 && pact < 5) { return pact; }else{ System.out.println("1~4ใง้ธๆŠžใ—ใฆใใ ใ•ใ„ใ€‚"); return isNum2(); } }catch(InputMismatchException e){ System.out.println("ๆŒ‡ๅฎšใ•ใ‚ŒใŸ็ฏ„ๅ›ฒใง้ธๆŠžใ—ใฆใใ ใ•ใ„ใ€‚"); return isNum2(); } }catch(InputMismatchException e){ System.out.println("ๆŒ‡ๅฎšใ•ใ‚ŒใŸ็ฏ„ๅ›ฒใง้ธๆŠžใ—ใฆใใ ใ•ใ„ใ€‚"); return isNum2(); } } } }
[ "noreply@github.com" ]
ochiai00.noreply@github.com
c22f986e1f38e14d14011efaa9e8a9081a3547b2
cd6bc29206ec949ff92d8d651c40e84a117ae900
/src/main/java/com/zombieproject/ZombieTown/model/prison/JsonPrisonResponse.java
5b954c4fd74604e87736c8f3959f3bdd2f16432c
[]
no_license
allisonfarr24/ZombieTown
97a78083e3816d27bde171c0f13a763f675a6aa5
cabe0005f0124cd015f748f051d9d678c4d73933
refs/heads/master
2020-03-20T14:34:12.520302
2018-06-28T15:13:38
2018-06-28T15:13:38
137,489,155
0
0
null
null
null
null
UTF-8
Java
false
false
726
java
package com.zombieproject.ZombieTown.model.prison; import java.util.Arrays; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonProperty; @JsonIgnoreProperties(ignoreUnknown = true) public class JsonPrisonResponse { @JsonProperty("Locations") private Prison[] locations; public JsonPrisonResponse() { } public JsonPrisonResponse(Prison[] locations) { super(); this.locations = locations; } public Prison[] getLocations() { return locations; } public void setLocations(Prison[] locations) { this.locations = locations; } @Override public String toString() { return "JsonPrisonResponse [locations=" + Arrays.toString(locations) + "]"; } }
[ "allisonfarr24@gmail.com" ]
allisonfarr24@gmail.com
b77119b865880b57230c1946732a824edffc27f9
b568c36b9dc4d2b8d937b040479fc46fec0b5404
/blchina-card/src/main/java/com/blchina/card/controller/AdviceController.java
3c1b2c9a0f196a0e9d757332c1904c2228632371
[]
no_license
ScofieldYu/githubcbp
2a0439865f7321d5bfd44d44d026d40c47717919
caad3ad9b43ab40ee6e6db61cff021b61d6d3fba
refs/heads/master
2020-03-19T09:06:40.235863
2018-06-06T02:34:56
2018-06-06T02:34:56
136,260,661
0
0
null
null
null
null
UTF-8
Java
false
false
894
java
/* * @(#)AdviceController.java Nov 2, 2017 * * ็™พๅพ—ๅˆฉ้›†ๅ›ขๆ‹ฅๆœ‰ๅฎŒๅ…จ็š„็‰ˆๆƒ * ไฝฟ็”จ่€…ๅฟ…้กป็ป่ฟ‡่ฎธๅฏ */ package com.blchina.card.controller; import com.blchina.card.datamodel.CBPConstant; import com.blchina.card.datamodel.weixin.WeixinResult; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseBody; /** * ๅ…จๅฑ€ๅผ‚ๅธธ * @author zhuchenglong * @since JDK 1.8 */ @ControllerAdvice public class AdviceController { @ExceptionHandler(Exception.class) @ResponseBody public WeixinResult handleIOException(Exception ex) { ex.printStackTrace(); WeixinResult res=new WeixinResult(); res.setCode(CBPConstant.CODE_FAILURE); res.setMessage(CBPConstant.MESSAGE_FAILURE); return res; } }
[ "yuzhicheng@blchina.com" ]
yuzhicheng@blchina.com