blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
132 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
28 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
352
80a38b2b592b402fcc82516f2d3212fcf88c0e6e
f27905fa30c43e7441670c21a1fa83a679d652a2
/app/src/main/java/com/huateng/phone/collection/utils/prettytime/units/JustNow.java
51277a1c868234c2716d6bb06998d76c0933764d
[]
no_license
JQHxx/CollecttionApp
255bf1c2e6327615fffcbba81095a3f70411e74b
ecea46860bb4f8c6ab536c3a4310e1262570fc09
refs/heads/master
2022-11-29T18:41:06.306869
2020-08-06T07:07:52
2020-08-06T07:07:52
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,158
java
/* * Copyright 2012 <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a> * * 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.huateng.phone.collection.utils.prettytime.units; import com.huateng.phone.collection.utils.prettytime.TimeUnit; import com.huateng.phone.collection.utils.prettytime.impl.ResourcesTimeUnit; public class JustNow extends ResourcesTimeUnit implements TimeUnit { public JustNow() { setMaxQuantity(1000L * 60L); } @Override protected String getResourceKeyPrefix() { return "JustNow"; } @Override public boolean isPrecise() { return false; } }
[ "yichuan@chinasofti.com" ]
yichuan@chinasofti.com
f918c8d8058b1f5cc3f1351a530efd1ff1b55c5e
aefe768892706f534b0fad219ec040d5c864cb00
/app/src/main/java/com/example/sys4/android1/services/AlunoService.java
ce583bbe76e2af1e6d452c5bca902725e40c1c75
[]
no_license
ThalysonR/TreinamentoAndroid
4a090420779cfdf1ab995a8f8b2d896373ced166
57a3c52fd66caf8b7b37b86a2d3b615ca5296bac
refs/heads/master
2020-03-19T12:35:45.009591
2018-06-11T21:21:40
2018-06-11T21:21:40
136,527,986
0
0
null
null
null
null
UTF-8
Java
false
false
820
java
package com.example.sys4.android1.services; import com.example.sys4.android1.dto.AlunoSync; import com.example.sys4.android1.modelo.Aluno; import java.util.List; import retrofit2.Call; import retrofit2.http.Body; import retrofit2.http.DELETE; import retrofit2.http.GET; import retrofit2.http.Header; import retrofit2.http.POST; import retrofit2.http.PUT; import retrofit2.http.Path; /** * Created by sys4 on 08/06/18. */ public interface AlunoService { @POST(value = "aluno") Call<Void> insere(@Body Aluno aluno); @GET("aluno") Call<AlunoSync> lista(); @DELETE("aluno/{id}") Call<Void> delete(@Path("id") String id); @GET("aluno/diff") Call<AlunoSync> novos(@Header("datahora") String versao); @PUT("aluno/lista") Call<AlunoSync> atualiza(@Body List<Aluno> alunos); }
[ "rafaeldblima@gmail.com" ]
rafaeldblima@gmail.com
ecfbc57d5d2e2c70017e6a91b5f7f4ef4501ad15
c6fab4f8e918bf65287b8fa01712451fc2b8c48f
/app/src/main/java/com/pucha/pavan/myapplication/MovieListAdapter.java
721f56ded714a595da11346c25c64cb2ec9726f9
[]
no_license
pavanpucha/Movies
c51b4709326743dfc257368cde71e56f4735b907
6b40249e89423f8738c8fc45b7797930a1529cc1
refs/heads/master
2021-07-20T19:09:09.524889
2017-10-24T20:01:57
2017-10-24T20:01:57
108,050,133
0
0
null
null
null
null
UTF-8
Java
false
false
126
java
package com.pucha.pavan.myapplication; /** * Created by pavan on 10/24/2017. */ public class MovieListAdapter { }
[ "pavanrajasekhar@gmail.com" ]
pavanrajasekhar@gmail.com
aeac7b723d0e92c9ff5bd3a5cbad574890b181ab
1f66e0ebedcde9fc24e3d2b3afc7328544c69060
/src/com/alexandris/game/sensors/MouseMotionSensor.java
b67115e438628c2108a26e88c32d0c3ec65d7e4a
[]
no_license
AnthonyAl/basicGameTemplate
7a57b6293ac9792583bd9616668352ba11cd5acb
6a18c0c4070aeaa04bd15be292abce8b6ee2e1b5
refs/heads/main
2023-08-11T00:01:21.371274
2021-10-06T09:50:48
2021-10-06T09:50:48
414,140,170
0
0
null
null
null
null
UTF-8
Java
false
false
426
java
package com.alexandris.game.sensors; import java.awt.event.MouseEvent; import java.awt.event.MouseMotionAdapter; import com.alexandris.game.core.*; public class MouseMotionSensor extends MouseMotionAdapter { Handler handler; public MouseMotionSensor(Handler handler) { this.handler = handler; } public void mouseMoved(MouseEvent e) { Game.coordX = e.getX(); Game.coordY = e.getY(); } }
[ "Tonious@DESKTOP-LVCTNH9" ]
Tonious@DESKTOP-LVCTNH9
90ed718ef02e78a235e748cde899d37eb9b8a0b1
ad158964d5a350133826a9e192e7281f2bc7563f
/konakart_custom_engine/src/main/java/com/konakart/app/GetRelatedProductsWithOptions.java
18283719990ae517aedea1a2f592a8d62298f85d
[]
no_license
lrkwz/konakart-mavenized
1fe24f33745f9e5ec0e1424f2e0b147c1395d7d8
85be70d5dad017619321f0cb928a0056e45ec7c7
refs/heads/master
2021-01-10T07:38:14.997632
2018-12-30T19:12:27
2018-12-30T19:12:27
8,478,319
0
0
null
null
null
null
UTF-8
Java
false
false
695
java
package com.konakart.app; import com.konakart.appif.*; /** * The KonaKart Custom Engine - GetRelatedProductsWithOptions - Generated by CreateKKCustomEng */ public class GetRelatedProductsWithOptions { KKEng kkEng = null; /** * Constructor */ public GetRelatedProductsWithOptions(KKEng _kkEng) { kkEng = _kkEng; } public ProductsIf getRelatedProductsWithOptions(String sessionId, DataDescriptorIf dataDesc, int productId, int relationType, int languageId, FetchProductOptionsIf options) throws KKException { return kkEng.getRelatedProductsWithOptions(sessionId, dataDesc, productId, relationType, languageId, options); } }
[ "luca@46b29998-0e0a-4071-8d68-ba63ca06a11c" ]
luca@46b29998-0e0a-4071-8d68-ba63ca06a11c
f0b1471835c5c7256fac326e25838bffae212bc6
dfa806c8777cdea0de8bb19af7968320a9a42f66
/internet-finance-app/src/main/java/com/hc9/web/main/common/messagepush/ios/IOSGroupcast.java
b10a2a7d80fc857c11929bb1969824fbdc942116
[]
no_license
jxcpu2008/internet-finance-qhhc
1ccf6923e08621ee911acfdbb69d7a630068547d
7f581aec6bdacc761e21d9cfadcbf2f688a59850
refs/heads/master
2021-05-16T01:30:17.477342
2017-10-16T02:08:57
2017-10-16T02:35:47
107,069,474
0
1
null
null
null
null
UTF-8
Java
false
false
538
java
package com.hc9.web.main.common.messagepush.ios; import com.alibaba.fastjson.JSONObject; import com.hc9.web.main.common.messagepush.IOSNotification; public class IOSGroupcast extends IOSNotification { public IOSGroupcast(String appkey,String appMasterSecret) throws Exception { setAppMasterSecret(appMasterSecret); setPredefinedKeyValue("appkey", appkey); this.setPredefinedKeyValue("type", "groupcast"); } public void setFilter(JSONObject filter) throws Exception { setPredefinedKeyValue("filter", filter); } }
[ "jxcpu2008@163.com" ]
jxcpu2008@163.com
751491469e376cb55b24d88232c144e411174a3b
7ba2a260f6b1b7a5c31dabcdf11e4c0c13a142ef
/java/297.二叉树的序列化与反序列化.java
aefa9bd577a8d75b5e4c5b1b70191cf4d6d8d7c5
[ "Apache-2.0" ]
permissive
maoqitian/MyLeetCode
5c063008760e837567141d64052ae5c53e8be43a
8a85996352a88bb9a8a6a2712dce3eac2e1c3463
refs/heads/master
2022-01-16T23:00:30.348018
2022-01-05T15:42:13
2022-01-05T15:42:13
175,940,000
1
0
null
null
null
null
UTF-8
Java
false
false
2,561
java
import java.util.Arrays; import java.util.Enumeration; import java.util.LinkedList; /* * @lc app=leetcode.cn id=297 lang=java * * [297] 二叉树的序列化与反序列化 */ // @lc code=start /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ public class Codec { //算法 前序遍历二叉树 每个节点使用"," 隔开,空节点则使用 null 代替 //反序列化 使用 队列存储对应字符串再恢复 树结构 private static final String spliter = ","; private static final String NULL = "null"; // Encodes a tree to a single string. public String serialize(TreeNode root) { StringBuilder stringBuilder = new StringBuilder(); buildSerializeString(root,stringBuilder); return stringBuilder.toString(); } /** * 前序遍历拼接字符串 递归 * @param root 递归树 * @param stringBuilder 字符串拼接 */ void buildSerializeString(TreeNode root,StringBuilder stringBuilder){ if(root == null){ stringBuilder.append(NULL).append(spliter); }else{ stringBuilder.append(root.val).append(spliter); buildSerializeString(root.left, stringBuilder); buildSerializeString(root.right, stringBuilder); } } // Decodes your encoded data to tree. public TreeNode deserialize(String data) { LinkedList<String> linkedList = new LinkedList<>(); linkedList.addAll(Arrays.asList(data.split(spliter))); return deserializeTree(linkedList); } /** * 递归恢复树结构 继续使用中序遍历恢复 队列先进先出 * @param linkedList * @return */ TreeNode deserializeTree(LinkedList<String> linkedList){ String val = linkedList.remove(); //递归结束条件,如果链表获取节点等于NULL则直接返回 null if(NULL.equals(val)){ return null; }else{ //否则新建一个树节点 //逻辑处理 进入下层递归 TreeNode treeNode = new TreeNode(Integer.valueOf(val)); treeNode.left = deserializeTree(linkedList); treeNode.right = deserializeTree(linkedList); return treeNode; } //数据释放 } } // Your Codec object will be instantiated and called as such: // Codec codec = new Codec(); // codec.deserialize(codec.serialize(root)); // @lc code=end
[ "maoqitian068@163.com" ]
maoqitian068@163.com
ddb1a4cbe8cca18db44fd1ccf08b710e7e3a9504
ab62cb931b6dd9b04bf44371940fb365d8059e9b
/Swing/src/AiZip/exceptions/CompactacaoNaoDeuCertoException.java
ae0108364f8724cc8dab54c56eb71d58e4190d36
[]
no_license
ronaldorrgjr/Projeto_Final_MLP_SPI_P2
a9013ada0ce60b2935a6b720bfabed136d68a879
223283570a37fea1782035c0cedd4c63240fed30
refs/heads/master
2020-05-15T08:50:15.001430
2015-06-12T02:15:52
2015-06-12T02:15:52
37,296,362
0
0
null
null
null
null
UTF-8
Java
false
false
178
java
package AiZip.exceptions; public class CompactacaoNaoDeuCertoException extends Exception{ public CompactacaoNaoDeuCertoException(String mensagem) { super(mensagem); } }
[ "ronaldorrgjr@gmail.com" ]
ronaldorrgjr@gmail.com
42a63409c04e65ba0a926e00f32232f4bc5ad61a
3d6c20dc57a8eb1a015c5d2353a515f29525a1d6
/Asdvanced java swing shamim/HortonBookSolution/404140 Exercise Solutions/ch14/sol4/Person.java
561b7887bd6778936378a5d78af955b0f9d38230
[]
no_license
nparvez71/NetbeanSoftware
b9e5c93addc2583790c69f53c650c29665e16721
1e18ff07914c4c4530bcfd93693d838bea8f9641
refs/heads/master
2020-03-13T19:14:53.285683
2018-04-29T04:34:07
2018-04-29T04:34:07
131,249,843
0
0
null
null
null
null
UTF-8
Java
false
false
1,770
java
import java.io.Serializable; import java.io.InputStreamReader; import java.io.BufferedReader; import java.io.IOException; public class Person implements Comparable<Person>, Serializable { // Constructor public Person(String firstName, String surname) { this.firstName = firstName; this.surname = surname; } @Override public String toString() { return firstName + " " + surname; } public String getSecondName() { return surname; } // Compare Person objects public int compareTo(Person person) { int result = surname.compareTo(person.surname); return result == 0 ? firstName.compareTo(person.firstName):result; } @Override public boolean equals(Object person) { return compareTo((Person)person) == 0; } @Override public int hashCode() { return 7*firstName.hashCode() + 13*surname.hashCode(); } // Read a person from the keyboard public static Person readPerson() { String firstName = null; String surname = null; try { System.out.print("Enter first name: "); firstName = keyboard.readLine().trim(); System.out.print("Enter surname: "); surname = keyboard.readLine().trim(); } catch(IOException e) { System.err.println("Error reading a name."); e.printStackTrace(); System.exit(1); } return new Person(firstName,surname); } private static BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in)); private String firstName; // First name of person private String surname; // Second name of person private static final long serialVersionUID = 1002L; }
[ "nparvez92@gmail.com" ]
nparvez92@gmail.com
73230fe3d110f295f3bd26c9cc30666bb39287e8
50023378bef26739a7037fc04759663fcc66e4a8
/Leetcode/src/main/java/hou/forwz/Leetcode/hard/MergeIntervals.java
917b5b42cf4699f1d1f1b759c75fff763ed562be
[]
no_license
houweitao/Leetcode
dde59bfff97daa14f4634c2e158b318ae9b47944
78035bf2b2d9dff4fb9c8f0d2a6d4db6114186ef
refs/heads/master
2020-05-21T17:54:35.721046
2016-12-20T09:11:10
2016-12-20T09:11:10
62,659,590
2
0
null
null
null
null
UTF-8
Java
false
false
3,787
java
package hou.forwz.Leetcode.hard; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.LinkedList; import java.util.List; import hou.forwz.Leetcode.structure.Interval; /** * @author houweitao * @date 2016年7月11日下午10:55:49 */ public class MergeIntervals { public static void main(String[] args) { MergeIntervals mi = new MergeIntervals(); mi.init(); } private void init() { Interval a = new Interval(2, 3); Interval b = new Interval(2, 2); Interval c = new Interval(3, 3); Interval d = new Interval(1, 3); Interval e = new Interval(5, 7); Interval f = new Interval(2, 2); Interval g = new Interval(4, 6); List<Interval> list = new ArrayList<>(); list.add(a); list.add(b); list.add(c); list.add(d); list.add(e); list.add(f); list.add(g); System.out.println(list); Collections.sort(list, new IntervalComparator()); System.out.println(list); System.out.println(merge(list)); } public List<Interval> merge(List<Interval> intervals) { Collections.sort(intervals, new IntervalComparator()); int len = intervals.size(); if (len < 2) return intervals; else return mergeList(intervals, 0, len - 1); } public List<Interval> merge2(List<Interval> intervals) { if (intervals.size() <= 1) return intervals; // Sort by ascending starting point using an anonymous Comparator Collections.sort(intervals, new Comparator<Interval>() { @Override public int compare(Interval i1, Interval i2) { return Integer.compare(i1.start, i2.start); } }); List<Interval> result = new LinkedList<Interval>(); int start = intervals.get(0).start; int end = intervals.get(0).end; for (Interval interval : intervals) { if (interval.start <= end) // Overlapping intervals, move the end if // needed end = Math.max(end, interval.end); else { // Disjoint intervals, add the previous one and reset bounds result.add(new Interval(start, end)); start = interval.start; end = interval.end; } } // Add the last interval result.add(new Interval(start, end)); return result; } private List<Interval> mergeList(List<Interval> list, int begin, int end) { List<Interval> ret = new ArrayList<>(); if (begin == end) { ret.add(list.get(begin)); return ret; } else if (begin + 1 == end) { System.out.println(list); Interval mer = merge(list.get(begin), list.get(end)); if (mer != null) { ret.add(mer); return ret; } else { ret.add(list.get(begin)); ret.add(list.get(end)); return ret; } } else { int mid = (begin + end) / 2; List<Interval> left = mergeList(list, begin, mid); List<Interval> right = mergeList(list, mid + 1, end); if (left.size() + right.size() == end - begin + 1) return list; if (left.size() == 0) { return right; } else if (right.size() == 0) return left; else { ret.addAll(left); ret.addAll(right); if (canMerge(left.get(left.size() - 1), right.get(0))) { return mergeList(ret, 0, ret.size() - 1); } else return ret; } } } boolean canMerge(Interval o1, Interval o2) { if (o1.start > o2.end || o1.end < o2.start) return false; else return true; } Interval merge(Interval o1, Interval o2) { if (canMerge(o1, o2)) return new Interval(Math.min(o1.start, o2.start), Math.max(o1.end, o2.end)); else return null; } class IntervalComparator implements Comparator<Interval> { @Override public int compare(Interval o1, Interval o2) { if (o1.start < o2.start) return -1; else if (o1.start > o2.start) return 1; else { if (o1.end < o2.end) return -1; else if (o1.end > o2.end) return 1; else return 0; } } } }
[ "hou103880@163.com" ]
hou103880@163.com
1be13f59d22e77d6cee8c914a91f4b60722124c0
3841f7991232e02c850b7e2ff6e02712e9128b17
/小浪底泥沙三维/EV_Xld/jni/src/JAVA/EV_Spatial_ChartProxyWrapper/src/com/earthview/world/spatial3d/controls/CommandChartSaftyContour5M3D.java
9fec50a105c98a432898b90606d65d3dea06feb5
[]
no_license
15831944/BeijingEVProjects
62bf734f1cb0a8be6fed42cf6b207f9dbdf99e71
3b5fa4c4889557008529958fc7cb51927259f66e
refs/heads/master
2021-07-22T14:12:15.106616
2017-10-15T11:33:06
2017-10-15T11:33:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
9,744
java
package com.earthview.world.spatial3d.controls; import global.*; import com.earthview.world.base.*; import com.earthview.world.util.*; import com.earthview.world.core.*; /** * 三维海图5米安全等深线模式命令 */ public class CommandChartSaftyContour5M3D extends com.earthview.world.spatial3d.controls.GlobeCommand { static { GlobalClassFactoryMap.put("EarthView::World::Spatial3D::Controls::CCommandChartSaftyContour5M3D", new CommandChartSaftyContour5M3DClassFactory()); GlobalClassFactoryMap.put("EarthView::World::Spatial3D::Controls::JCCommandChartSaftyContour5M3DProxy", new CommandChartSaftyContour5M3DClassFactory()); } /** * 默认构造函数 */ public CommandChartSaftyContour5M3D() { super(CreatedWhenConstruct.CWC_NotToCreate); Create("JCCommandChartSaftyContour5M3DProxy", null, true); this.registerCallback(); if (!"com.earthview.world.spatial3d.controls.CommandChartSaftyContour5M3D".equals(this.getClass().getName())) { this.setCustomExtend(true); } } protected long getToolBarType_void_callback() { long returnValue = getToolBarType(); long __returnValue = returnValue; return __returnValue; } native private long getToolBarType_void(long pNativeObject); /** * 获取命令项所属的工具栏类型 * @param * @return 工具栏类型 */ public long getToolBarType() { long returnValue = getToolBarType_void(this.nativeObject.pointer); return returnValue; } native private long getToolBarType_void_NoVirtual(long pNativeObject); protected long getToolBarType_NoVirtual() { long returnValue = getToolBarType_void_NoVirtual(this.nativeObject.pointer); return returnValue; } protected long getType_void_callback() { long returnValue = getType(); long __returnValue = returnValue; return __returnValue; } native private long getType_void(long pNativeObject); /** * 获取命令项的类型 * @param * @return 类型 */ public long getType() { long returnValue = getType_void(this.nativeObject.pointer); return returnValue; } native private long getType_void_NoVirtual(long pNativeObject); protected long getType_NoVirtual() { long returnValue = getType_void_NoVirtual(this.nativeObject.pointer); return returnValue; } protected String getName_void_callback() { String returnValue = getName(); String __returnValue = returnValue; return __returnValue; } native private String getName_void(long pNativeObject); /** * 获取名称 * @param * @return 命令名称 */ public String getName() { String returnValue = getName_void(this.nativeObject.pointer); return returnValue; } native private String getName_void_NoVirtual(long pNativeObject); protected String getName_NoVirtual() { String returnValue = getName_void_NoVirtual(this.nativeObject.pointer); return returnValue; } protected String getCategory_void_callback() { String returnValue = getCategory(); String __returnValue = returnValue; return __returnValue; } native private String getCategory_void(long pNativeObject); /** * 获取类别 * @param * @return 类别的名称 */ public String getCategory() { String returnValue = getCategory_void(this.nativeObject.pointer); return returnValue; } native private String getCategory_void_NoVirtual(long pNativeObject); protected String getCategory_NoVirtual() { String returnValue = getCategory_void_NoVirtual(this.nativeObject.pointer); return returnValue; } protected String getToolTip_void_callback() { String returnValue = getToolTip(); String __returnValue = returnValue; return __returnValue; } native private String getToolTip_void(long pNativeObject); /** * 工具提示 * @param * @return 提示信息 */ public String getToolTip() { String returnValue = getToolTip_void(this.nativeObject.pointer); return returnValue; } native private String getToolTip_void_NoVirtual(long pNativeObject); protected String getToolTip_NoVirtual() { String returnValue = getToolTip_void_NoVirtual(this.nativeObject.pointer); return returnValue; } protected long getIcon_void_callback() { com.earthview.world.display.Ibitmap returnValue = getIcon(); if(returnValue == null) { return 0L; } returnValue.setDelegate(true); long __returnValue = returnValue.nativeObject.pointer; return __returnValue; } native private long getIcon_void(long pNativeObject); /** * 获取图标 * @param * @return 命令的图标 */ public com.earthview.world.display.Ibitmap getIcon() { long returnValue = getIcon_void(this.nativeObject.pointer); if(returnValue == 0L) { return null; } com.earthview.world.display.Ibitmap __returnValue = new com.earthview.world.display.Ibitmap(CreatedWhenConstruct.CWC_NotToCreate, "IBitmap"); __returnValue.setDelegate(true); InstancePointer __instancePointer = new InstancePointer(returnValue); __returnValue.setInstancePointer(__instancePointer); IClassFactory __returnValueClassFactory = GlobalClassFactoryMap.get(__returnValue.getCppInstanceTypeName()); if (__returnValueClassFactory != null) { __returnValue.setDelegate(true); __returnValue = (com.earthview.world.display.Ibitmap)__returnValueClassFactory.create(); __returnValue.setDelegate(true); __returnValue.bindNativeObject(__instancePointer, "IBitmap"); } return __returnValue; } native private long getIcon_void_NoVirtual(long pNativeObject); protected com.earthview.world.display.Ibitmap getIcon_NoVirtual() { long returnValue = getIcon_void_NoVirtual(this.nativeObject.pointer); if(returnValue == 0L) { return null; } com.earthview.world.display.Ibitmap __returnValue = new com.earthview.world.display.Ibitmap(CreatedWhenConstruct.CWC_NotToCreate, "IBitmap"); __returnValue.setDelegate(true); InstancePointer __instancePointer = new InstancePointer(returnValue); __returnValue.setInstancePointer(__instancePointer); IClassFactory __returnValueClassFactory = GlobalClassFactoryMap.get(__returnValue.getCppInstanceTypeName()); if (__returnValueClassFactory != null) { __returnValue.setDelegate(true); __returnValue = (com.earthview.world.display.Ibitmap)__returnValueClassFactory.create(); __returnValue.setDelegate(true); __returnValue.bindNativeObject(__instancePointer, "IBitmap"); } return __returnValue; } protected boolean isCheckable_void_callback() { boolean returnValue = isCheckable(); boolean __returnValue = returnValue; return __returnValue; } native private boolean isCheckable_void(long pNativeObject); /** * 是否可以选择 * @param * @return 如果可以选择,返回true,如果不可以选择,返回false */ public boolean isCheckable() { boolean returnValue = isCheckable_void(this.nativeObject.pointer); return returnValue; } native private boolean isCheckable_void_NoVirtual(long pNativeObject); protected boolean isCheckable_NoVirtual() { boolean returnValue = isCheckable_void_NoVirtual(this.nativeObject.pointer); return returnValue; } protected void onClicked_void_callback() { onClicked(); } native private void onClicked_void(long pNativeObject); /** * 点击命令 * @param */ public void onClicked() { onClicked_void(this.nativeObject.pointer); } native private void onClicked_void_NoVirtual(long pNativeObject); protected void onClicked_NoVirtual() { onClicked_void_NoVirtual(this.nativeObject.pointer); } public CommandChartSaftyContour5M3D(CreatedWhenConstruct cwc) { super(CreatedWhenConstruct.CWC_NotToCreate); } public CommandChartSaftyContour5M3D(CreatedWhenConstruct cwc, String classNameStr) { super(CreatedWhenConstruct.CWC_NotToCreate, classNameStr); } native protected void register_getToolBarType_void(long pNativeObject, String method); native protected void register_getType_void(long pNativeObject, String method); native protected void register_getName_void(long pNativeObject, String method); native protected void register_getCategory_void(long pNativeObject, String method); native protected void register_getToolTip_void(long pNativeObject, String method); native protected void register_getIcon_void(long pNativeObject, String method); native protected void register_isCheckable_void(long pNativeObject, String method); native protected void register_onClicked_void(long pNativeObject, String method); public void registerCallback(){ if (!this.nativeObject.equals(InstancePointer.ZERO)){ this.register_getToolBarType_void(this.nativeObject.pointer, "getToolBarType_void_callback"); this.register_getType_void(this.nativeObject.pointer, "getType_void_callback"); this.register_getName_void(this.nativeObject.pointer, "getName_void_callback"); this.register_getCategory_void(this.nativeObject.pointer, "getCategory_void_callback"); this.register_getToolTip_void(this.nativeObject.pointer, "getToolTip_void_callback"); this.register_getIcon_void(this.nativeObject.pointer, "getIcon_void_callback"); this.register_isCheckable_void(this.nativeObject.pointer, "isCheckable_void_callback"); this.register_onClicked_void(this.nativeObject.pointer, "onClicked_void_callback"); } } public static CommandChartSaftyContour5M3D fromBaseObject(BaseObject baseObj) { if (baseObj == null || InstancePointer.ZERO.equals(baseObj.nativeObject)) { return null; } CommandChartSaftyContour5M3D obj = null; if(baseObj instanceof CommandChartSaftyContour5M3D) { obj = (CommandChartSaftyContour5M3D)baseObj; } else { obj = new CommandChartSaftyContour5M3D(CreatedWhenConstruct.CWC_NotToCreate); obj.bindNativeObject(baseObj.nativeObject, "CCommandChartSaftyContour5M3D"); obj.increaseCast(); } return obj; } }
[ "yanguanqi@aliyun.com" ]
yanguanqi@aliyun.com
e1f5e0dc6b1e89822f5c48357a751febe0b37e7a
5c21fb45d33461fcc359aa447e74e636ae29bec6
/src/day33_LocalDateTime/aaaClassNotes.java
57103abf2443e3f6a80be03ad32a652984b9bd72
[]
no_license
Javkhaa0128/Java
2f35ed26f35787dc1a46886992b49e9c1f104dbd
09003476ec8c7f8fda781bc5e0309ccfbb9306c3
refs/heads/master
2023-01-13T00:13:56.683106
2020-11-06T20:10:10
2020-11-06T20:10:10
284,545,977
0
0
null
null
null
null
UTF-8
Java
false
false
2,336
java
package day33_LocalDateTime; public class aaaClassNotes { } /* 07/25/2020 Topics: Method Overloading Continue Decimal Formatting LocalDate & Time Time formatting package name: day33_LocalDateTime warmup tasks: Task01: 1. create a method that can calculate the addition of two integers 2. create a method that can calculate the addition of two decimals 3. create a method that can calculate the multiplication of two integers 4. create a method that can calculate the multiplication of two decimals Task02: 1. create a return method that can return an int array in descending order 2. create a return method that can return a double array in descending order 3. create a return method that can return a String array in descending order 4. create a return method that can return a char array in descending order Task03: 1. create a method that can print out the unique numbers from an array of integer 2. create a method that can print out the unique numbers from an array of double 3. create a method that can print out the unique words from an array of String 4. creata a method that can print out the unique characters from an array of chars MUST use for each loop decimal formatting: 20/3.0 ==> 6.66666... = 6.67 10/3.0 ==> 3.333333 = 3.33 LocalDate: year, month, day year-month-day declare: of(year, month, day) methods: now(): gets the current date format(DateTimeFormatter) LocalTime: hours, minutes, seconds, nanoOfSeconds hour:minutes:seconds 24hr declare: of() now() format(DateTimeFormatter) LocalDateTime: combination of LocalDate & localTime year-month-day hour:minutes:seconds format(DateTimeFormatter) month/day/year day/month/year am, pm month/day/year hour:minutes am/pm DataTimeFormatter: DateTimeFormatter.ofPatter(""); 20 2020 year: yy, yyyy Month: MM(number), MMM(three letters), MMMM days: dd hours: hh minutes: mm seconds: ss am/pm: a January task: 1. create an array of String and store 5 of your classmates' names 2. create an array of LocalDate and put class mate' birthdays in it use for loop to iterate those two arrays to print out the name & birthdate of each students Tomorrow: Warrapper class next topic: ArrayList */
[ "javkhaa0128@gmail.com" ]
javkhaa0128@gmail.com
2bf169847508ab360744959d8316f5b7504c4855
eff93c9493dac84d2572fe3c25a3788872ccf6ac
/app/src/main/java/com/example/mvvmapp/utils/components/BottomSheetEpisodes.java
02de6767add09acf40b76cfb65d6689293173265
[]
no_license
eric-geek1232/MovieApp_MVVM_Android
dbf19f34dc8927efee3ede4690309758993c47ca
db978c5be57ec274e592e36c7bf1162039274324
refs/heads/master
2023-02-26T23:16:22.020335
2021-02-10T06:54:09
2021-02-10T06:54:09
337,633,599
0
0
null
null
null
null
UTF-8
Java
false
false
2,220
java
package com.example.mvvmapp.utils.components; import android.app.Activity; import android.content.Context; import android.content.res.Resources; import android.view.LayoutInflater; import android.view.View; import android.widget.FrameLayout; import androidx.databinding.DataBindingUtil; import com.example.mvvmapp.R; import com.example.mvvmapp.activities.TvShowDetailsActivity; import com.example.mvvmapp.adapters.EpisodesAdapter; import com.example.mvvmapp.responses.TvShowDetailsResponse; import com.google.android.material.bottomsheet.BottomSheetBehavior; import com.google.android.material.bottomsheet.BottomSheetDialog; public class BottomSheetEpisodes { public static void showBottomSheet(TvShowDetailsResponse tvShowDetailsResponse, String name, Context context, Activity activity) { BottomSheetDialog episodesBottomSheetDialog = new BottomSheetDialog(context); com.example.mvvmapp.databinding.BottomSheetEpisodesBinding bottomSheetEpisodesBinding = DataBindingUtil.inflate( LayoutInflater.from(context), R.layout.bottom_sheet_episodes, activity.findViewById(R.id.episodes_container), false ); episodesBottomSheetDialog.setContentView(bottomSheetEpisodesBinding.getRoot()); bottomSheetEpisodesBinding.recyclerViewEpisodes.setAdapter( new EpisodesAdapter(tvShowDetailsResponse.getTvShowDetails().getEpisodes()) ); bottomSheetEpisodesBinding.textTitle.setText( String.format("Episodes| %s", name) ); bottomSheetEpisodesBinding.imageClose.setOnClickListener(view1 -> episodesBottomSheetDialog.dismiss()); FrameLayout frameLayout = episodesBottomSheetDialog.findViewById( com.google.android.material.R.id.design_bottom_sheet ); if (frameLayout != null) { BottomSheetBehavior<View> bottomSheetBehavior = BottomSheetBehavior.from(frameLayout); bottomSheetBehavior.setPeekHeight(Resources.getSystem().getDisplayMetrics().heightPixels); bottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED); } episodesBottomSheetDialog.show(); } }
[ "jacovoerick@gmail.com" ]
jacovoerick@gmail.com
38c36af6d58a2d125271b952c7fc4f910ca9dfbf
a75f695040c9db82286be8a6fb15564c75009178
/src/main/java/com/ohnonono/parking/SpringFoxConfig.java
6b8e6f5ceccdb0aa8a75d1fde28a0f4418a38880
[]
no_license
egoza88/oh-no-no-no-backend
182792bacb1a7d6ebfa7147ff70254661c5a8cd3
8cbf6cef9fd897e16ec9ecbd1f75c845fc98641c
refs/heads/main
2023-04-07T08:01:23.294560
2021-04-17T11:09:14
2021-04-17T12:59:19
358,541,028
0
0
null
null
null
null
UTF-8
Java
false
false
701
java
package com.ohnonono.parking; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.PathSelectors; import springfox.documentation.builders.RequestHandlerSelectors; import springfox.documentation.spi.DocumentationType; import springfox.documentation.spring.web.plugins.Docket; @Configuration public class SpringFoxConfig { @Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2) .select() .apis(RequestHandlerSelectors.basePackage("com.ohnonono.parking")) .paths(PathSelectors.any()) .build(); } }
[ "egoza@88@gmail.com" ]
egoza@88@gmail.com
009644a75330c6e195f12a9c9f6cfd8f839314b9
f541852f46adafc1c234ec7091336c5e6b01edde
/app/src/main/java/com/example/newsrssfeed/MainActivity.java
398a133a6832900b56bb40db91dc805f0ab7c937
[]
no_license
DebjaniRoy17/NewsRSS_Android
c75034ff9c4077aaec74950cc302a70a2731a524
a4dce96b5f661691bce2cf33434bb4653e2e54a7
refs/heads/master
2020-09-01T10:51:50.898633
2019-11-08T14:14:39
2019-11-08T14:14:39
218,944,043
1
0
null
null
null
null
UTF-8
Java
false
false
5,882
java
package com.example.newsrssfeed; import android.app.ProgressDialog; import android.os.AsyncTask; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.widget.Toolbar; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import com.example.newsrssfeed.Adapter.FeedAdapter; import com.example.newsrssfeed.Common.HTTPDataHandler; import com.example.newsrssfeed.Model.Rss; import com.example.newsrssfeed.Model.RssObject; import com.example.newsrssfeed.Model.SampleXMLModel; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.SerializationFeature; import com.fasterxml.jackson.dataformat.xml.XmlMapper; import com.google.gson.Gson; import org.json.JSONException; import org.w3c.dom.Document; import java.io.IOException; public class MainActivity extends AppCompatActivity { Toolbar toolbar; RecyclerView recyclerView; Rss rss; private static final String TAG = "MyActivity"; private final String RSS_link="https://www.hindustantimes.com/rss/topnews/rssfeed.xml";//change the link of the RSS feed you want to chow //private final String RSS_to_JSON_API = " https://api.rss2json.com/v1/api.json?rss_url="; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); toolbar = (Toolbar)findViewById(R.id.toolbar); toolbar.setTitle("Top News"); //setSupportActionBar(toolbar); recyclerView = (RecyclerView)findViewById(R.id.recyclerview); LinearLayoutManager linearLayoutManager = new LinearLayoutManager(getBaseContext(),LinearLayoutManager.VERTICAL,false); recyclerView.setLayoutManager(linearLayoutManager); try { loadRSS(); } catch (IOException e) { e.printStackTrace(); } catch (JSONException e) { e.printStackTrace(); } } @Override public boolean onOptionsItemSelected(@NonNull MenuItem item) { if(item.getItemId() == R.id.menu_refresh) { try { loadRSS(); } catch (IOException e) { e.printStackTrace(); } catch (JSONException e) { e.printStackTrace(); } } return true; } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.main_menu,menu); return true; } private void loadRSS() throws IOException, JSONException { AsyncTask<String,String,String> loadRSSAsync = new AsyncTask<String, String, String>() { ProgressDialog mDialog = new ProgressDialog(MainActivity.this); @Override protected String doInBackground(String... strings) { try { String json = null; HTTPDataHandler handler = new HTTPDataHandler(); String xmlString= handler.GetHTTPData(RSS_link); Log.i(TAG,xmlString); XmlMapper xmlMapper = new XmlMapper(); Rss rss = xmlMapper.readValue(xmlString, Rss.class); Log.d(TAG,rss.toString()); /* xmlString = "<kuchbhi><title>Hindustan Times - topnews</title> <link>https://www.hindustantimes.com/</link> <description> <![CDATA[ News Headlines: Hindustan Times provides exclusive top stories of the day, today headlines from politics, business, technology, photos, videos, latest English news and much more ]]> </description> <language>en-US</language></kuchbhi>"; SampleXMLModel sampleXMLModel = xmlMapper.readValue(xmlString, SampleXMLModel.class); Log.d(TAG,sampleXMLModel.toString());*/ // Log.i(TAG,rssObject.getItems ().get(5).getDescription()); ObjectMapper mapper = new ObjectMapper(); mapper.enable(SerializationFeature.INDENT_OUTPUT); json = mapper.writeValueAsString(rss); Log.i(TAG,json); return json; } catch (IOException e) { e.printStackTrace(); return null; } /*JSONObject jsonObject = null; String output = null; try { jsonObject = XML.toJSONObject(xmlString); } catch (JSONException e) { e.printStackTrace(); } ObjectMapper objectMapper = new ObjectMapper(); objectMapper.enable(SerializationFeature.INDENT_OUTPUT); Object json = null; try { json = objectMapper.readValue(jsonObject.toString(), Object.class); output = objectMapper.writeValueAsString(json); } catch (IOException e) { e.printStackTrace(); } return output;*/ } @Override protected void onPreExecute() { mDialog.setMessage("Please wait..."); mDialog.show(); } @Override protected void onPostExecute(String s) { mDialog.dismiss(); rss = new Gson().fromJson(s,Rss.class); FeedAdapter feedAdapter = new FeedAdapter(rss,getBaseContext()); recyclerView.setAdapter(feedAdapter); feedAdapter.notifyDataSetChanged(); } }; loadRSSAsync.execute(); } }
[ "roy.debjani17@gmail.com" ]
roy.debjani17@gmail.com
6b811e7438b5c30a3b00faeddb926c85212f6aa6
9254e7279570ac8ef687c416a79bb472146e9b35
/cmn-20200825/src/main/java/com/aliyun/cmn20200825/models/ListInspectionTaskReportsResponse.java
14791a609597d2762604781a18fa398d3eb89297
[ "Apache-2.0" ]
permissive
lquterqtd/alibabacloud-java-sdk
3eaa17276dd28004dae6f87e763e13eb90c30032
3e5dca8c36398469e10cdaaa34c314ae0bb640b4
refs/heads/master
2023-08-12T13:56:26.379027
2021-10-19T07:22:15
2021-10-19T07:22:15
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,151
java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.cmn20200825.models; import com.aliyun.tea.*; public class ListInspectionTaskReportsResponse extends TeaModel { @NameInMap("headers") @Validation(required = true) public java.util.Map<String, String> headers; @NameInMap("body") @Validation(required = true) public ListInspectionTaskReportsResponseBody body; public static ListInspectionTaskReportsResponse build(java.util.Map<String, ?> map) throws Exception { ListInspectionTaskReportsResponse self = new ListInspectionTaskReportsResponse(); return TeaModel.build(map, self); } public ListInspectionTaskReportsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListInspectionTaskReportsResponse setBody(ListInspectionTaskReportsResponseBody body) { this.body = body; return this; } public ListInspectionTaskReportsResponseBody getBody() { return this.body; } }
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
ca9d007232d195f96e27cbb375575080bb4de556
10c537d56d837796089c24371b12ca17948c009a
/Youtube/src/main/java/com/ktds/youtube/video/vo/GroupVideoVO.java
e94e301dfa9fe60b5bb3428de7a3d5702e293710
[]
no_license
slKim6249/Java_Web_Programming
abf6e714c7c4d5546ec6cd619d0a9b38977237e5
f337a4786f4f90542eef28e3208ac291059a68ec
refs/heads/master
2021-05-23T10:38:28.507590
2018-09-23T18:16:18
2018-09-23T18:16:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
447
java
package com.ktds.youtube.video.vo; import java.util.List; public class GroupVideoVO { private String uploaderId; private List<VideoVO> videoList; public String getUploaderId() { return uploaderId; } public void setUploaderId(String uploaderId) { this.uploaderId = uploaderId; } public List<VideoVO> getVideoList() { return videoList; } public void setVideoList(List<VideoVO> videoList) { this.videoList = videoList; } }
[ "first_1st@naver.com" ]
first_1st@naver.com
5bb33ec3ea7a4dffcedba5154ee91eb9078d057c
8af1164bac943cef64e41bae312223c3c0e38114
/results-java/shardingjdbc--sharding-jdbc/6a9275fb82efd7324e5acfdbe0ec3c247dca6e96/after/SQLServerExprParser.java
6298df84074e935f8ecd44ba43adc6a7d94b97de
[]
no_license
fracz/refactor-extractor
3ae45c97cc63f26d5cb8b92003b12f74cc9973a9
dd5e82bfcc376e74a99e18c2bf54c95676914272
refs/heads/master
2021-01-19T06:50:08.211003
2018-11-30T13:00:57
2018-11-30T13:00:57
87,353,478
0
0
null
null
null
null
UTF-8
Java
false
false
4,214
java
/* * Copyright 1999-2101 Alibaba Group Holding Ltd. * * 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.alibaba.druid.sql.dialect.sqlserver.parser; import com.alibaba.druid.sql.context.LimitContext; import com.alibaba.druid.sql.context.SelectSQLContext; import com.alibaba.druid.sql.dialect.sqlserver.ast.SQLServerTop; import com.alibaba.druid.sql.dialect.sqlserver.lexer.SQLServerKeyword; import com.alibaba.druid.sql.dialect.sqlserver.lexer.SQLServerLexer; import com.alibaba.druid.sql.lexer.DataType; import com.alibaba.druid.sql.lexer.DefaultKeyword; import com.alibaba.druid.sql.lexer.Symbol; import com.alibaba.druid.sql.parser.ParserException; import com.alibaba.druid.sql.parser.ParserUnsupportedException; import com.alibaba.druid.sql.parser.SQLExprParser; import com.dangdang.ddframe.rdb.sharding.api.rule.ShardingRule; import java.util.List; public class SQLServerExprParser extends SQLExprParser { public SQLServerExprParser(final ShardingRule shardingRule, final List<Object> parameters, final String sql) { super(shardingRule, parameters, new SQLServerLexer(sql)); getLexer().nextToken(); } public SQLServerTop parseTop() { // TODO // if (getLexer().equalToken(Token.TOP)) { // SQLServerTop top = new SQLServerTop(); // getLexer().nextToken(); // // boolean paren = false; // if (getLexer().equalToken(Symbol.LEFT_PAREN)) { // paren = true; // getLexer().nextToken(); // } // // top.setExpr(primary()); // // if (paren) { // getLexer().accept(Symbol.RIGHT_PAREN); // } // // if (getLexer().equalToken(Token.PERCENT)) { // getLexer().nextToken(); // top.setPercent(true); // } // // return top; // } return null; } protected void skipOutput() { if (getLexer().equalToken(SQLServerKeyword.OUTPUT)) { throw new ParserUnsupportedException(SQLServerKeyword.OUTPUT); } } public void parseOffset(final SelectSQLContext sqlContext) { getLexer().nextToken(); int offset; int offsetIndex = -1; if (getLexer().equalToken(DataType.LITERAL_INT)) { offset = Integer.parseInt(getLexer().getLiterals()); } else if (getLexer().equalToken(Symbol.QUESTION)) { offsetIndex = getParametersIndex(); offset = (int) getParameters().get(offsetIndex); setParametersIndex(offsetIndex + 1); } else { throw new ParserException(getLexer()); } getLexer().nextToken(); LimitContext limitContext; if (getLexer().skipIfEqual(DefaultKeyword.FETCH)) { getLexer().nextToken(); int rowCount; int rowCountIndex = -1; getLexer().nextToken(); if (getLexer().equalToken(DataType.LITERAL_INT)) { rowCount = Integer.parseInt(getLexer().getLiterals()); } else if (getLexer().equalToken(Symbol.QUESTION)) { rowCountIndex = getParametersIndex(); rowCount = (int) getParameters().get(rowCountIndex); setParametersIndex(rowCountIndex + 1); } else { throw new ParserException(getLexer()); } getLexer().nextToken(); getLexer().nextToken(); limitContext = new LimitContext(offset, rowCount, offsetIndex, rowCountIndex); } else { limitContext = new LimitContext(offset, offsetIndex); } sqlContext.setLimitContext(limitContext); } }
[ "fraczwojciech@gmail.com" ]
fraczwojciech@gmail.com
968598d2f2e990e8f3481e9b97e8138613c70aa3
1d6ac675ff48e6bc4bd92c26fc20b6564adf12bf
/app/src/main/java/com/azusasoft/puncher/utils/FakeServer.java
008bde42b5b705eebaab12b913ccc72a095840c2
[]
no_license
SetaShinsuke/azusapuncher
1785cad9b95dcf9d2d7fa61c298666c19d94af2f
ecd185f773019b584963ee5dd26c8b33daf1c956
refs/heads/master
2021-01-19T02:09:37.703876
2016-11-25T09:13:02
2016-11-25T09:13:02
73,360,055
0
0
null
null
null
null
UTF-8
Java
false
false
898
java
package com.azusasoft.puncher.utils; import android.content.Context; import android.content.SharedPreferences; /** * Created by SETA on 2016/3/2. */ public class FakeServer { //通知服务器记录签退时间 // public static void postTime2Server(Context context ){ // SharedPreferences sharedPreferences = context.getSharedPreferences( Constants.FAKE_SERVER,Context.MODE_PRIVATE ); // long lastTime = System.currentTimeMillis() - getTimeFromServer(context); // sharedPreferences.edit().putLong(Constants.SERVER_PUNCH_TIME , lastTime).apply(); // } // // //返回本日已签到时长 // public static long getTimeFromServer(Context context){ // SharedPreferences sharedPreferences = context.getSharedPreferences( Constants.FAKE_SERVER,Context.MODE_PRIVATE ); // return sharedPreferences.getLong(Constants.SERVER_PUNCH_TIME , 0); // } }
[ "sweater@azusasoft.com" ]
sweater@azusasoft.com
03207ac6e129c44a296c3231a77cc3d1351404a3
7f2eb3ef27c7d10c69039b68337956249f28c3b1
/src/main/java/com/example/codeclan/Course/Booking/System/models/Booking.java
0ee851ae5d14eedc4b8d9d507fa2614593dcf877
[]
no_license
digetl/Course-Booking-System
f40a8cb322886c3ac2cbc104e269dfb579bef1d0
d521dc32e6a536cec48800855099128f3872344a
refs/heads/master
2022-11-10T19:42:56.377016
2020-07-02T14:38:02
2020-07-02T14:38:02
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,332
java
package com.example.codeclan.Course.Booking.System.models; import com.fasterxml.jackson.annotation.JsonBackReference; import javax.persistence.*; import java.util.ArrayList; import java.util.List; @Entity @Table(name="bookings") public class Booking { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(name="date") private String date; @ManyToOne @JoinColumn(name = "course_id", nullable = false) private Course course; @ManyToOne @JoinColumn(name = "customer_id", nullable = false) private Customer customer; public Booking(String date, Course course, Customer customer) { this.date = date; this.course = course; this.customer = customer; } public Booking(){ } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public Course getCourse() { return course; } public void setCourse(Course course) { this.course = course; } public Customer getCustomer() { return customer; } public void setCustomer(Customer customer) { this.customer = customer; } }
[ "markpackham1@gmail.com" ]
markpackham1@gmail.com
66011bcbdb693e39b9e1c93f11ec6fe17bad38b4
e63363389e72c0822a171e450a41c094c0c1a49c
/Mate20_9_0_0/src/main/java/android/hardware/radio/V1_0/UiccSubActStatus.java
3ee830635a224b02da4fe1c81db6aa1333ae5a2b
[]
no_license
solartcc/HwFrameWorkSource
fc23ca63bcf17865e99b607cc85d89e16ec1b177
5b92ed0f1ccb4bafc0fdb08b6fc4d98447b754ad
refs/heads/master
2022-12-04T21:14:37.581438
2020-08-25T04:30:43
2020-08-25T04:30:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,136
java
package android.hardware.radio.V1_0; import java.util.ArrayList; public final class UiccSubActStatus { public static final int ACTIVATE = 1; public static final int DEACTIVATE = 0; public static final String toString(int o) { if (o == 0) { return "DEACTIVATE"; } if (o == 1) { return "ACTIVATE"; } StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append("0x"); stringBuilder.append(Integer.toHexString(o)); return stringBuilder.toString(); } public static final String dumpBitfield(int o) { ArrayList<String> list = new ArrayList(); int flipped = 0; list.add("DEACTIVATE"); if ((o & 1) == 1) { list.add("ACTIVATE"); flipped = 0 | 1; } if (o != flipped) { StringBuilder stringBuilder = new StringBuilder(); stringBuilder.append("0x"); stringBuilder.append(Integer.toHexString((~flipped) & o)); list.add(stringBuilder.toString()); } return String.join(" | ", list); } }
[ "lygforbs0@gmail.com" ]
lygforbs0@gmail.com
6485a4e3f541b60d450cad507342169d63d8ce35
bd9d81f45a77b3ef16f67f8a9ef3b74948768f1a
/day13-CollectionAndReflect/src/com/itcast/demo03/Generic/GenericClass.java
bcdeb733f9935232374e3397e77dccb04fa1525f
[]
no_license
hanbinq/JavaStudy
bf5733c7587bad0a4ce079e30461415d2eeedcd6
7ac81de73f88f979196f524e3916898a8157d92b
refs/heads/master
2020-04-15T05:12:30.376735
2019-07-29T08:31:04
2019-07-29T08:31:04
164,412,908
0
0
null
null
null
null
UTF-8
Java
false
false
516
java
package com.itcast.demo03.Generic; /* * 定义一个含有泛型的类,模拟ArrayList集合 * 泛型是一个未知的数据类型,当我们不确定什么数据类型的时候,可以使用泛型 * 泛型可以接收任意的数据类型,可以使用Integer,String,Student... * 创建对象的时候确定泛型的数据类型 * */ public class GenericClass<E> { private E name; public E getName(){ return name; } public void setName(E name){ this.name = name; } }
[ "931703092@qq.com" ]
931703092@qq.com
ce2cb938bd927559e6cbdfa62a8125990b435a28
a542adf8bc8df8e752854555ee6470dabe70e92a
/src/main/java/com/swjt/fileManagement/utils/excel/standardModel/SMFun.java
f803b68860cc05ccda2994c1ad9630ad981468ee
[]
no_license
swjtxhZhou/middle_term_checking
8d956a690375d67671bdb915fd1bc573b000a326
6de78c481c0eb2c1125f4b508aadd9bbc44bc84f
refs/heads/master
2023-08-11T18:27:30.789004
2019-08-26T02:21:10
2019-08-26T02:21:10
203,527,962
0
0
null
2023-07-25T14:00:17
2019-08-21T07:12:20
Java
UTF-8
Java
false
false
12,036
java
package com.swjt.fileManagement.utils.excel.standardModel; import com.alibaba.excel.EasyExcelFactory; import com.alibaba.excel.annotation.ExcelProperty; import com.alibaba.excel.metadata.Sheet; import com.alibaba.fastjson.JSONObject; import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.lang.reflect.Field; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Proxy; import java.util.*; public interface SMFun<T> { /** * @param filename * @param sheet * @param notNeed 不要的前几行 * @param Row 根据前几行创建(不包括row) * @param t Read的modeel 类 * @param indexNameMap {"序号":"number","备注":"remarks"} * @param RowMap {1:[序号,车站名,备注],2:[]} * @return * @throws IOException */ //todo sheet为空,会有错误,调用时应先判断。 public default Map<String, T> createReadModel(String filename, Sheet sheet, int notNeed, int Row, T t, Map<String, String> indexNameMap, Map<Integer, List<String>> RowMap, Map<String, String> uniformityMap) throws IOException { Map<String, Integer> indexMap = new HashMap<>(); Map<String, T> model3Map = new HashMap<>(); List<List<String>> list = new ArrayList<>(); InputStream inputStreamS = new BufferedInputStream(new FileInputStream(filename)); List<Object> data = EasyExcelFactory.read(inputStreamS, new Sheet(sheet.getSheetNo(), sheet.getHeadLineMun())); inputStreamS.close(); indexMap.clear(); for (int i = 0; i < Row; i++) { if (i < notNeed) { continue; } list.clear(); list.add((List<String>) data.subList(i, i + 1).get(0)); //实际表头列前后空格去掉 List list1 = new ArrayList(); list.get(0).forEach(a -> { if (a != null) { list1.add(a.trim()); } else { list1.add(a); } }); list.set(0, list1); System.out.println("head->list= " + list.get(0)); Set<String> set = new HashSet<>(); if (i == 0) { for (String key : RowMap.get(0)) { // System.out.println("key0= "+key); if (set.add(key)) { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, ((list.get(0)).indexOf(key))); } else { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).lastIndexOf(key)); } } } else if (i == 1) { set.clear(); for (String key : RowMap.get(1)) { // System.out.println("key1= "+key); if (set.add(key)) { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).indexOf(key)); } else { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).lastIndexOf(key)); } } } else if (i == 2) { set.clear(); for (String key : RowMap.get(2)) { // System.out.println("key2= "+key); if (set.add(key)) { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).indexOf(key)); } else { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).lastIndexOf(key)); } } } else if (i == 3) { set.clear(); for (String key : RowMap.get(3)) { // System.out.println("key3= "+key); if (set.add(key)) { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).indexOf(key)); } else { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).lastIndexOf(key)); } } } else if (i == 4) { set.clear(); for (String key : RowMap.get(4)) { // System.out.println("key4= "+key); if (set.add(key)) { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).indexOf(key)); } else { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).lastIndexOf(key)); } } } else if (i == 5) { set.clear(); for (String key : RowMap.get(5)) { // System.out.println("key5= "+key); if (set.add(key)) { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).indexOf(key)); } else { if ((list.get(0)).indexOf(key) == -1) { continue; } indexMap.put(key, (list.get(0)).lastIndexOf(key)); } } } } for (Object key : uniformityMap.keySet()) { if (indexMap.get(key) != null) { int temp = indexMap.get(key); indexMap.remove(key); indexMap.putIfAbsent(uniformityMap.get(key), temp); } } System.out.println("indexMap=" + indexMap); System.out.println("indexNameMap=" + indexNameMap); // 将某一合并的列中后面几列没有取名的列,利用命名的特定格式确定没有命名的列是在哪列(index) //eg; |方向 | // | |通过| | 根据方向能和特殊命名 方向>>1 能拿到通过这列对应的excel的Index值,方向>>2 能拿到通过后依赖对应的excel的Index值 for (String key : indexNameMap.keySet()) { if (indexMap.get(key) == null) { List lists = Arrays.asList(key.split(">>")); int index = indexMap.get(lists.get(0)); int newIndex = index + (Integer.valueOf(lists.get(1).toString())); System.out.println(newIndex); indexMap.put(key, newIndex); System.out.println("key=" + indexMap.get(key)); } } try { for (Object key : indexNameMap.keySet()) { try { if (indexMap.get(key) == null) { throw new Exception("表头有问题:" + key); } } catch (Exception e) { e.printStackTrace(); return null; } Field field = t.getClass().getDeclaredField(indexNameMap.get(key)); ExcelProperty excelProperty = field.getAnnotation(ExcelProperty.class); InvocationHandler h = Proxy.getInvocationHandler(excelProperty); Field hfield = h.getClass().getDeclaredField("memberValues"); hfield.setAccessible(true); Map memberValues = (Map) hfield.get(h); memberValues.put("index", indexMap.get(key)); } model3Map.put(sheet.getSheetName(), t); // model3Map.put(sheet.getSheetName(), changeExcelPropertyIndex(indexMap, t, indexNameMap)); } catch (Exception e) { e.printStackTrace(); } // } return model3Map; } // /** // * aop 方式 * ExcelProperty 注解 // * indexMap,model 模型,indexNameMap 属性对应的 filed元素 // * // * @param indexMap 实际model 元素 对应的index map // * @param readModel model // * @param indexNameMap ExcelProperty 注解的model 元素和 @param indexMap 关联对应 // * @return // * @throws NoSuchFieldException // * @throws IllegalAccessException // */ // public default T changeExcelPropertyIndex(Map indexMap, T readModel, Map<String, String> indexNameMap) throws NoSuchFieldException, IllegalAccessException { // for (Object key : indexNameMap.keySet()) { // Field field = readModel.getClass().getDeclaredField(indexNameMap.get(key)); // ExcelProperty excelProperty = field.getAnnotation(ExcelProperty.class); // InvocationHandler h = Proxy.getInvocationHandler(excelProperty); // Field hfield = h.getClass().getDeclaredField("memberValues"); // hfield.setAccessible(true); // Map memberValues = (Map) hfield.get(h); // memberValues.put("index", indexMap.get(key)); // } // return readModel; // } public static Map<String, String> checkHeadIteration(List<Object> list, String[] keys, int R) { Map<String, String> map = new HashMap(); for (int i = 0; i < R; i++) { if (list.get(i).toString().equals("")) { continue; } // System.out.println(list.get(i)); JSONObject object = (JSONObject) JSONObject.parse(list.get(i).toString().replace("\\", "\\\\")); // System.out.println(object); // System.out.println("checkHeadIteration=" + object); //表格式定义和CADmodel 用的模型有关 for (String a : keys) { if (map.get(a) == null) { map.put(a, object.getString(a) + '+'); } else { map.put(a, map.get(a).concat(object.getString(a)) + '+'); } } } return map; } // /** // * aop 方式 * ExcelProperty 注解 // * indexMap,model 模型,indexNameMap 属性对应的 filed元素 // * // * @param indexMap 实际model 元素 对应的index map // * @param readModel model // * @param indexNameMap ExcelProperty 注解的model 元素和 @param indexMap 关联对应 // * @return // * @throws NoSuchFieldException // * @throws IllegalAccessException // */ // public static Object changeExcelPropertyIndex(Map indexMap, Object readModel, Map<String, String> indexNameMap) throws NoSuchFieldException, IllegalAccessException { // for (Object key : indexNameMap.keySet()) { // Field field = readModel.getClass().getDeclaredField(indexNameMap.get(key)); // ExcelProperty excelProperty = field.getAnnotation(ExcelProperty.class); // InvocationHandler h = Proxy.getInvocationHandler(excelProperty); // Field hfield = h.getClass().getDeclaredField("memberValues"); // hfield.setAccessible(true); // Map memberValues = (Map) hfield.get(h); // memberValues.put("index", indexMap.get(key)); // } // return readModel; // } }
[ "1114133631@qq.com" ]
1114133631@qq.com
4695835c023cb0dd59da538695d061e391c8f2e1
c8b975bccb76250e57de54c3c9227123428c4ce2
/tutorial-tapestry/src/main/java/org/appfuse/tutorial/webapp/pages/Signup.java
50643c176b4806c71f7bac7f8cda239d69e6738d
[]
no_license
SouhaAyachi/appfuse-demos
c029973399fa60ef6ceda31cbeb474e110885e5e
f13c4458cee42fab6cccf00f8d4797838788aae2
refs/heads/master
2020-04-04T05:18:26.379151
2011-07-21T04:25:53
2011-07-21T04:25:53
35,667,322
0
0
null
null
null
null
UTF-8
Java
false
false
5,168
java
package org.appfuse.tutorial.webapp.pages; import org.apache.commons.lang.StringUtils; import org.apache.tapestry5.annotations.Component; import org.apache.tapestry5.annotations.Persist; import org.apache.tapestry5.annotations.Property; import org.apache.tapestry5.ioc.Messages; import org.apache.tapestry5.ioc.annotations.Inject; import org.apache.tapestry5.services.Request; import org.apache.tapestry5.services.Response; import org.appfuse.Constants; import org.appfuse.model.User; import org.appfuse.service.UserExistsException; import org.appfuse.tutorial.webapp.components.UserForm; import org.appfuse.tutorial.webapp.services.ServiceFacade; import org.appfuse.tutorial.webapp.util.RequestUtil; import org.slf4j.Logger; import org.springframework.mail.MailException; import org.springframework.mail.SimpleMailMessage; import org.springframework.security.access.AccessDeniedException; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.core.context.SecurityContextHolder; import javax.servlet.http.HttpServletResponse; import java.io.IOException; /** * Self-registration page for new users * * @author Serge Eby * @version $Id: Signup.java 5 2008-08-30 09:59:21Z serge.eby $ */ public class Signup extends BasePage { @Inject private Logger logger; @Inject private ServiceFacade serviceFacade; @Property @Persist private User user; @Inject private Request request; @Inject private Response response; @Inject private Messages messages; @Component(id = "signup") private UserForm form; @Property private Boolean cookieLogin; void beginRender() { if (user == null) { user = new User(); } } // ~ Event Handlers Object onCancel() { if (logger.isDebugEnabled()) { logger.debug("entered cancel method"); } return Login.class; } void onValidateForm() { // make sure the password fields match if (!StringUtils.equals(user.getPassword(), user.getConfirmPassword())) { addError(form.getForm(), form.getConfirmPasswordField(), "errors.twofields", true, getMessageText("user.confirmPassword"), getMessageText("user.password")); } } Object onSuccess() throws IOException { logger.debug("entered save method"); // Enable user; user.setEnabled(true); // Set the default user role on this new user user.addRole(serviceFacade.getRoleManager().getRole(Constants.USER_ROLE)); try { user = serviceFacade.getUserManager().saveUser(user); } catch (AccessDeniedException ade) { // thrown by UserSecurityAdvice configured in aop:advisor // userManagerSecurity logger.warn(ade.getMessage()); getResponse().sendError(HttpServletResponse.SC_FORBIDDEN); return null; // FIXME } catch (UserExistsException e) { // addError("usernameField", // getMessages().format("errors.existing.user", user.getUsername(), // user.getEmail()), ValidationConstraint.CONSISTENCY); // redisplay the unencrypted passwords user.setPassword(user.getConfirmPassword()); return null; // FIXME } getSession().setAttribute(Constants.REGISTERED, Boolean.TRUE); // log user in automatically UsernamePasswordAuthenticationToken auth = new UsernamePasswordAuthenticationToken( user.getUsername(), user.getConfirmPassword(), user .getAuthorities()); auth.setDetails(user); SecurityContextHolder.getContext().setAuthentication(auth); // Send user an e-mail if (logger.isDebugEnabled()) { logger.debug("Sending user '" + user.getUsername() + "' an account information e-mail"); } SimpleMailMessage message = serviceFacade.getMailMessage(); message.setTo(user.getFullName() + "<" + user.getEmail() + ">"); StringBuffer msg = new StringBuffer(); msg.append(getText("signup.email.message")); msg.append("\n\n").append(getText("user.username")); msg.append(": ").append(user.getUsername()).append("\n"); msg.append(getText("user.password")).append(": "); msg.append(user.getPassword()); msg.append("\n\nLogin at: ") .append(RequestUtil.getAppURL(getRequest())); message.setText(msg.toString()); message.setSubject(getText("signup.email.subject")); try { serviceFacade.getMailEngine().send(message); } catch (MailException me) { getSession().setAttribute("error", me.getMostSpecificCause().getMessage()); } getSession().setAttribute("message", getText("user.registered")); if (getRequest() != null) { // needed for testing response.sendRedirect(getRequest().getContextPath()); } return null; } }
[ "mraible@2409b7a4-2524-0410-a366-655b7483b231" ]
mraible@2409b7a4-2524-0410-a366-655b7483b231
359a74fc9c050585803e654480cee2d2126ca8e4
52280cf6517f27bde1ad70037bc20f9aaa01d6c5
/src/com/drew/metadata/Tag.java
b83c36b99323ec021af017729bd149273fc7505d
[]
no_license
xiangyong/JDMall
7730ae3395a44d03387f4d4075a1b2c8870c23be
5ce5a7870e87a67cad500903bc169cd266b5a2e9
refs/heads/master
2021-01-16T18:13:41.254336
2014-02-26T09:59:08
2014-02-26T09:59:08
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,486
java
package com.drew.metadata; import java.io.Serializable; public class Tag implements Serializable { private final Directory _directory; private final int _tagType; public Tag(int paramInt, Directory paramDirectory) { this._tagType = paramInt; this._directory = paramDirectory; } public String getDescription() throws MetadataException { return this._directory.getDescription(this._tagType); } public String getDirectoryName() { return this._directory.getName(); } public String getTagName() { return this._directory.getTagName(this._tagType); } public int getTagType() { return this._tagType; } public String getTagTypeHex() { for (String str = Integer.toHexString(this._tagType);; str = "0" + str) { if (str.length() >= 4) { return "0x" + str; } } } public String toString() { try { String str2 = getDescription(); str1 = str2; } catch (MetadataException localMetadataException) { for (;;) { String str1 = this._directory.getString(getTagType()) + " (unable to formulate description)"; } } return "[" + this._directory.getName() + "] " + getTagName() + " - " + str1; } } /* Location: C:\Users\yepeng\Documents\classes-dex2jar.jar * Qualified Name: com.drew.metadata.Tag * JD-Core Version: 0.7.0.1 */
[ "13718868826@163.com" ]
13718868826@163.com
ebc49967bc042c79129b6761dda82b177e26eb0a
887f57b00493c24674551a3dc73d96a7af257b24
/src/main/java/org/kubachrabanski/Plugin.java
89bd42c2e21cdf745f4d1df33b8035ec5fb765c7
[ "MIT" ]
permissive
kubachrabanski/hub_instance
6797cd9c525510f0f8b866124a54195483de2988
a880b4c1cc0f47b4b42c3b7a97cb2547fbddcf02
refs/heads/master
2020-07-14T21:02:36.348849
2019-09-08T14:32:27
2019-09-08T14:32:27
204,452,769
0
0
null
null
null
null
UTF-8
Java
false
false
2,112
java
package org.kubachrabanski; import org.bukkit.Bukkit; import org.bukkit.GameRule; import org.bukkit.Location; import org.bukkit.World; import org.bukkit.plugin.PluginManager; import org.bukkit.plugin.java.JavaPlugin; import org.kubachrabanski.listeners.PlayerListener; import java.io.File; import java.nio.file.Path; import java.nio.file.Paths; import static java.lang.String.format; public final class Plugin extends JavaPlugin { private static void purgeFiles(File parent) { if (parent.isDirectory()) { File[] files = parent.listFiles(); if (files != null) { for (File child : files) { purgeFiles(child); } } } parent.deleteOnExit(); } @Override public void onDisable() { Path worldPath = Paths.get("world"); getConfig().getStringList("purge_files").stream() .map(worldPath::resolve) .forEach(path -> purgeFiles(path.toFile())); } @Override public void onEnable() { saveDefaultConfig(); PluginManager manager = Bukkit.getPluginManager(); manager.registerEvents(new PlayerListener(), this); try { final double x = getConfig().getDouble("spawn_point.x"); final double y = getConfig().getDouble("spawn_point.y"); final double z = getConfig().getDouble("spawn_point.z"); World world = Bukkit.getWorld("world"); getLogger().info( format("Spawn location at: %.2f, %.2f, %.2f, %b", x, y, z, world.setSpawnLocation(new Location(world, x, y, z))) ); world.setKeepSpawnInMemory(true); world.setTime(6000); world.setGameRule(GameRule.DO_DAYLIGHT_CYCLE, false); world.setAutoSave(false); } catch (NullPointerException ignore) { getLogger().severe( "Failed to enable the plugin with current configuration" ); Bukkit.shutdown(); } } }
[ "kuba.chrabanski@gmail.com" ]
kuba.chrabanski@gmail.com
9a348430cd82a0a60aca00e8aa939aed2b84c29c
ae2486ecbcb0f320f7a3aaefc3252809e99005ee
/Jeux/src/MoteursSpecifiques/JeuTetris/MoteurTetris.java
fc702dec51ce49ad728253a8a547cb2462db0bef
[]
no_license
mRedoine/JeuxJava2D
837a3161761f7f988de7f250af3bc8f19300e4d6
74f810dc43adab5ab11c7440bbd6a817e2be0004
refs/heads/master
2020-04-18T08:26:48.265166
2019-01-24T16:49:30
2019-01-24T16:49:30
167,396,764
0
0
null
null
null
null
WINDOWS-1252
Java
false
false
5,260
java
package MoteursSpecifiques.JeuTetris; import MoteurGenerique.Moteur; import MoteurGenerique.IMoteurSpecifique; import java.awt.Graphics; public class MoteurTetris implements IMoteurSpecifique { private Tetromino tetromino; private Moteur moteur; private int frequenceMaj; private FabriqueTetris fab; private Tetromino.Tetrominoes [][] tas; public MoteurTetris() { fab = new FabriqueTetris(); moteur = Moteur.getInstance(); } public void initialiserJeu() { tas = new Tetromino.Tetrominoes[ParamTetris.LIGNES] [ParamTetris.COLONNES]; // i <=> y de Tetromino and j <=> x de Tetromino for (int i=0; i<ParamTetris.LIGNES; i++) for (int j=0; j<ParamTetris.COLONNES; j++) tas[i][j] = Tetromino.Tetrominoes.Vide; tetromino = (Tetromino) fab.creerObjet( ParamTetris.TETROMINO); } public void genererJeu() { moteur.setScore(0); moteur.setNiveau(1); frequenceMaj = ParamTetris.FREQUENCE_MAJ; moteur.notification(); moteur.setEtat(Moteur.Etat.INITIALISE); } public void mettreAJourJeu() { traiterCollision(); tetromino.mettreAJour(); chercherLignePleine(); if (tasPlein()) moteur.terminerJeu(); } private void chercherLignePleine() { boolean plein = true; int ligne = 0; for (int i=0; i<ParamTetris.LIGNES; i++) { for (int j=0; j<ParamTetris.COLONNES; j++) { if (tas[i][j] == Tetromino.Tetrominoes.Vide) { plein = false; ligne = i; break; } } if (plein) { moteur.setScore(moteur.getScore()+100); mettreAJourTas(i); } else { plein = true; } } } private void mettreAJourTas(int i) { for (int k=i; k>0; k--) { for (int l=0; l<ParamTetris.COLONNES; l++) { tas[k][l] = tas[k-1][l]; } } changerNiveau(); moteur.notification(); } private boolean tasPlein() { boolean res = false; for (int j=0; j<ParamTetris.COLONNES; j++) { if (tas[1][j] != Tetromino.Tetrominoes.Vide) { res = true; break; } } return res; } public boolean peutAllerGauche(int[][] cellules) { boolean res = true; for (int i = 0; i < 4 ; i++) { if (cellules[i][0]-1 < 0) { res = false; break; } else if ((tas[cellules[i][1]][cellules[i][0]-1]) != Tetromino.Tetrominoes.Vide) { res = false; break; } } return res; } public boolean peutAllerDroite(int[][] cellules) { boolean res = true; for (int i = 0; i < 4 ; i++) { if (cellules[i][0]+1 > ParamTetris.COLONNES-1) { res = false; break; } else if ((tas[cellules[i][1]][cellules[i][0]+1]) != Tetromino.Tetrominoes.Vide) { res =false; break; } } return res; } public boolean peutTourner(int[][] cellules) { boolean res = true; for (int i = 0; i < 4 ; i++) { if (cellules[i][0] > ParamTetris.COLONNES-1 || cellules[i][0] < 0 || cellules[i][1] > ParamTetris.LIGNES-1) { res = false; break; } else if ((tas[cellules[i][1]][cellules[i][0]]) != Tetromino.Tetrominoes.Vide) { res =false; break; } } return res; } public void traiterCollision() { // le tetromino est sur la derniere rangee ou juste au dessus // d’un autre. int[][] coords = tetromino.getCoords(); for (int i = 0; i < 4; i++) { if ((tetromino.getY()+coords[i][1]==ParamTetris.LIGNES-1) || (tas[tetromino.getY()+coords[i][1]+1] [tetromino.getX()+coords[i][0]] != Tetromino.Tetrominoes.Vide) ) { stockerEtChanger(); break; } } } private void stockerEtChanger() { // stocker le tetromino dans le tas int[][] coords = tetromino.getCoords(); for (int i = 0; i < 4; i++) { tas[tetromino.getY()+coords[i][1]] [tetromino.getX()+coords[i][0]] = tetromino.getForme(); } // creer un nouveau tetromino qui tombe tetromino = (Tetromino) fab.creerObjet(ParamTetris.TETROMINO); tetromino.donnerFormeAuHasard(); moteur.setScore(moteur.getScore()+1); moteur.notification(); } public void changerNiveau() { moteur.setNiveau(moteur.getNiveau()+1); frequenceMaj += 1; } public void dessinerTas(Graphics g) { for (int i=0; i<ParamTetris.COLONNES; i++) { for (int j=0; j<ParamTetris.LIGNES; j++) { if (tas[j][i] != Tetromino.Tetrominoes.Vide) { g.setColor(Tetromino.getCouleur(tas[j][i])); g.fillRect(i*ParamTetris.TAILLE_CELLULE, j*ParamTetris.TAILLE_CELLULE, ParamTetris.TAILLE_CELLULE,ParamTetris.TAILLE_CELLULE); } } } } public Tetromino getTetromino() { return tetromino; } public long getPeriodeMaj() { return 1000000000L/frequenceMaj;} }
[ "CocoNeuneu@macbook-pro-de-redoine.home" ]
CocoNeuneu@macbook-pro-de-redoine.home
134cc7d90803b4ebf7d0ee00003c234a903ccf36
ca379d35ab208e9f1fae463d55f909dbb85ef161
/src/org/brutality/model/players/packets/BankModifiableX.java
eff93dbf44745a483bc8e6ba834ef3c8ce6217df
[]
no_license
rampage-osrs/rampage-os-server
a8d1f55073ebfbb14b6b8d97c75575c9b5a80ca6
53b9e4124659e35983740b4ef365a2f02d23ea86
refs/heads/master
2021-08-19T09:42:18.123993
2017-11-25T16:53:13
2017-11-25T16:53:13
112,019,026
0
0
null
null
null
null
UTF-8
Java
false
false
918
java
package org.brutality.model.players.packets; import org.brutality.model.players.PacketType; import org.brutality.model.players.Player; import org.brutality.net.Packet; public class BankModifiableX implements PacketType { @Override public void processPacket(Player player, Packet packet) { int slot = packet.getUnsignedShortA(); int component = packet.getUnsignedShort(); int item = packet.getUnsignedShortA(); int amount = packet.getInt(); if (player.getInterfaceEvent().isActive()) { player.sendMessage("Please finish what you're doing."); return; } if(amount <= 0) return; switch(component) { case 5382: if(player.getBank().getBankSearch().isSearching()) { player.getBank().getBankSearch().removeItem(item, amount); return; } player.getItems().removeFromBank(item, amount, true); break; } } }
[ "contact.rampageosrs@gmail.com" ]
contact.rampageosrs@gmail.com
ec3fa35462c14016700dc9cbd74bdfa4388e4bf8
32ee2bef316b7642c5f6c3b1b70962277b8f1837
/src/main/java/com/zheng/weixin/service/IWeixinMenuService.java
8ed3b67b862a32c38d039e2a6dc5bffb06fd20ef
[]
no_license
zl736732419/weixin-project
1d7a5b2e4ea8148e1cbd20b9c9074b68b8385537
4a23cb3386ea318b0e6e4032ed3f407efba4c8b0
refs/heads/master
2021-01-10T01:50:55.647629
2016-01-16T02:01:00
2016-01-16T02:01:00
49,320,633
1
1
null
null
null
null
UTF-8
Java
false
false
757
java
package com.zheng.weixin.service; import java.util.List; import com.zheng.weixin.domain.WeixinMenu; import com.zheng.weixin.dto.WeixinMenuDto; public interface IWeixinMenuService extends IBaseService<WeixinMenu>{ /** * 根据key查找菜单 * * @author zhenglian * @data 2016年1月6日 下午10:44:27 * @param key * @return */ public WeixinMenu findByKey(String key); /** * 获取微信菜单树形菜单列表 * * @author zhenglian * @data 2016年1月6日 下午10:45:02 * @return */ public List<WeixinMenuDto> tree(); /** * 发布自定义菜单 * * @author zhenglian * @data 2016年1月9日 下午2:32:18 * @param json * @return */ public String publish(); }
[ "736732419@qq.com" ]
736732419@qq.com
ad818ce47cf5a96cf8d4dc667d506c1692a17817
d2041c2d2e1d11cc688693f833f8fe5da50c8846
/argo-common/src/main/java/com/argo/common/domain/sku/SkuVo.java
f0f570dfd69f60c65612bce43df089a47cec544b
[]
no_license
uriHeart/localtest
91f3e38d7955da9ada84b62335e8256901b9f10f
46dbec8e7b23b4c99439745f65f736ced9b7bc46
refs/heads/master
2020-07-21T09:02:32.093437
2020-01-27T17:00:21
2020-01-27T17:00:21
206,805,547
0
0
null
null
null
null
UTF-8
Java
false
false
1,663
java
package com.argo.common.domain.sku; import lombok.ToString; import org.apache.commons.compress.utils.Lists; import java.util.Date; import java.util.List; import java.util.stream.Collectors; @ToString public class SkuVo { private Sku sku; public SkuVo(Sku sku) { this.sku = sku; } public Long getSkuId() { return sku.getSkuId(); } public String getBarcode() { return sku.getBarcode(); } public Double getLength() { return sku.getLength(); } public Double getWidth() { return sku.getWidth(); } public Double getHeight() { return sku.getHeight(); } public Double getWeight() { return sku.getWeight(); } public String getName() { return sku.getName(); } public Long getVendorId() { return sku.getVendorId(); } public String getDescription() { return sku.getDescription(); } public Sku getParentSku() { return sku.getParentSku(); } public String getImageUrl() { return sku.getImageUrl(); } public String getBrand() { return sku.getBrand(); } public List<SkuAttributeVo> getSkuAttributes() { return sku.getSkuAttributes().stream() .map(SkuAttributeVo::new) .collect(Collectors.toList()); } public Date getCreatedAt() { return sku.getCreatedAt(); } public Date getUpdatedAt() { return sku.getUpdatedAt(); } public Date getCreatedBy() { return sku.getCreatedBy(); } public Date getUpdatedBy() { return sku.getUpdatedBy(); } }
[ "kkjh9012@gmail.com" ]
kkjh9012@gmail.com
e9c0bbc21c9009375ff2f80c850b3455b703af53
f731eea3d31426aa680953d9d9777a0eba84b153
/report-service/src/main/java/asia/cmg/f8/report/dto/CreditBookingSessionStatus.java
5ff1d08855de0a7ff400adb5ce60d060d50e4ba7
[]
no_license
longpham041292/java-sample
893a53b182d8d91a4aac4b05126438efeec16cca
0b3ef36688eabbcf690de1b3daff57586dc010b7
refs/heads/main
2023-08-04T20:23:33.935587
2021-10-03T06:37:02
2021-10-03T06:37:02
412,994,810
0
0
null
null
null
null
UTF-8
Java
false
false
621
java
package asia.cmg.f8.report.dto; import com.fasterxml.jackson.annotation.JsonValue; /** * Created on 11/22/16. */ public enum CreditBookingSessionStatus { BOOKED, REJECTED, CONFIRMED, // Per requirement, we should remove when return to client CANCELLED, // Per requirement, we should remove when return to client TRAINER_CANCELLED, // Per requirement, we should change it to Cancelled when return to client EU_CANCELLED, // Per requirement, we should change it to Burned when return to client BURNED, COMPLETED, DEDUCTED, REFUNDED; @JsonValue public int toValue() { return ordinal(); } }
[ "longpham@leep.app" ]
longpham@leep.app
7cb0d41c9c30fede6e4dd208644fed37fad35cb9
cb47a69eb202feae227358af2493efe9c35d0cf6
/springboot-demo/springboot2.X/springboot2.2.x/springboot-jdbc/springboot-druid01/src/main/java/com/zxp/entity/po/UserCard.java
30dc7813ee80ec65acc7b92018cc423cf60ae0b5
[ "Apache-2.0" ]
permissive
WCry/demo
e4f6ee469e39e9a96e9deec2724eb89d642830b5
5801b12371a1beb610328a8b83a056276427817d
refs/heads/master
2023-05-28T14:42:29.175634
2021-06-14T14:06:43
2021-06-14T14:06:43
266,535,701
2
1
Apache-2.0
2020-10-21T01:03:55
2020-05-24T12:24:51
Java
UTF-8
Java
false
false
326
java
package com.zxp.entity.po; import lombok.Data; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.Table; @Entity @Data @Table(name = "user_card") public class UserCard { @Id @GeneratedValue private int id; private String count; }
[ "zhangxuepei@hikvision.com.cn" ]
zhangxuepei@hikvision.com.cn
9c3f5ea7fdcce05c642726ea598cdf2ec7dbe881
71dd5a62896d88ef3d1a8b383d6964408d7d239f
/javastudy/part20-collection-framework/src/Test/Test03.java
5c542dbdcef529139bfef23deed3a78bae0fbf40
[]
no_license
hwangseokjin94/java_web_0224
42df3f57b3b50598e2ca8b12d27e20a284670ca7
6c9ab05ac743763db8264c42c814b79cada95458
refs/heads/master
2022-11-13T08:23:36.271978
2020-07-02T08:26:19
2020-07-02T08:26:19
250,546,467
1
0
null
null
null
null
UTF-8
Java
false
false
777
java
package Test; import java.util.Arrays; import java.util.HashSet; import java.util.Iterator; import java.util.Set; /* Test03.java Set을 이용하여 로또 발생기를 구현하시오. 당첨 번호 6개만 구현하시오. */ public class Test03 { public static void main(String[] args) { // 1~45 사이 난수를 발생시켜 Set에 저장한다. // 몇번돌릴지 결정은 Set의 size()을 확인해서 처리한다. Set<Integer> set = new HashSet<Integer>(); while(set.size()<6) { set.add((int)(Math.random()*45)+1); } System.out.println(set); //번외 int[] lotto = new int[6]; int i = 0; Iterator<Integer> itr = set.iterator(); while(itr.hasNext()) { lotto[i++]=itr.next(); } System.out.println(Arrays.toString(lotto)); } }
[ "vpdnsldk@gmail.com" ]
vpdnsldk@gmail.com
e2454d34f4dd4776a100e11558920c6a373eb38e
80aedde7f6c4c26559bef1bd027db85e08a8e05f
/app/src/main/java/com/toocms/drink5/boss/config/DensityUtils.java
9c0ccba0cec5ea228881d4ed679118be3c350748
[]
no_license
sunliangzhen/Drink5_Boss
c6fe0e653afebded2868bf912eac325b80595bac
944381d20571e409b50d992668b552d53aafe479
refs/heads/master
2020-07-12T22:24:37.475396
2016-11-16T08:07:32
2016-11-16T08:07:32
73,897,848
0
0
null
null
null
null
UTF-8
Java
false
false
640
java
package com.toocms.drink5.boss.config; import android.content.Context; public class DensityUtils { /** * dp转px * <p> * nox_adb.exe connect 127.0.0.1:62001 * cd\Users\Administrator\AppData\Roaming\Nox\bin */ public static int dp2px(Context ctx, float dp) { float density = ctx.getResources().getDisplayMetrics().density; int px = (int) (dp * density + 0.5f);// 4.9->5 4.4->4 return px; } public static float px2dp(Context ctx, int px) { float density = ctx.getResources().getDisplayMetrics().density; float dp = px / density; return dp; } }
[ "2542983545@qq.com" ]
2542983545@qq.com
e6a5faca14b82186864284150143118c309899d8
822f1c39a5a53d80b145a8400af2543d54407486
/code/microservice-parent/microservice-web/src/main/java/com/microservice/web/config/RibbonConfig.java
359bb1c48349f4bae1898e2ccc15ef9974e0edb2
[]
no_license
exvo/pro-service
c5e9d7a3087d1979f012d0546c6e9bb7310117cb
7808a1922c1f13994125365bcdea82b62751ba21
refs/heads/master
2020-04-05T06:53:51.258346
2018-12-10T02:13:23
2018-12-10T02:13:23
156,655,322
0
0
null
null
null
null
UTF-8
Java
false
false
509
java
package com.microservice.web.config; import org.springframework.cloud.client.loadbalancer.LoadBalanced; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.client.RestTemplate; /** * @Date: 2018/11/20 * @Author: wu yang * @Description: */ @Configuration public class RibbonConfig { @Bean(name = "restTemplate") @LoadBalanced RestTemplate restTemplate(){ return new RestTemplate(); } }
[ "wyangdyq@outlook.com" ]
wyangdyq@outlook.com
ee4508c5b166a5fc225fb9ed657e2cf34b2d28a6
3af9148ebe4d198dd6a63010fd148af0949d89f4
/src/main/java/com/empl/mgr/dao/ConsumeTypeDao.java
d46a4700fef8167a7196df2dbaba7d93081749b9
[]
no_license
song121321/xjkweb
d1ffb9be7d218668b793d7baca68a80318070123
99a74e45af4f0dd597efa63b6ddf4ca849aa9761
refs/heads/master
2020-04-06T23:40:10.866229
2018-11-16T14:26:47
2018-11-16T15:04:35
157,877,254
0
0
null
null
null
null
UTF-8
Java
false
false
981
java
package com.empl.mgr.dao; import java.util.List; import org.springframework.stereotype.Repository; import com.empl.mgr.dao.support.AbstractDao; import com.empl.mgr.field.SsConsumeTypeField; import com.empl.mgr.model.SsConsumetype; import com.empl.mgr.utils.StringUtil; @Repository public class ConsumeTypeDao extends AbstractDao<SsConsumetype> { @Override public Class<SsConsumetype> getEntityClass() { return SsConsumetype.class; } public void deleteById(long id) { deleteByProperty(SsConsumeTypeField.ID, id); } public SsConsumetype findById(long id) { return findUniqueByProperty(SsConsumeTypeField.ID, id); } @SuppressWarnings("unchecked") public List<SsConsumetype> getByName(String name) { String query = " from SsConsumetype "; if (!StringUtil.empty(name)) { query += " where (descp like '%" + name + "%' or detail like '%" + name + "%' )"; } return findSession().createQuery(query).list(); } }
[ "32478000+song121321@users.noreply.github.com" ]
32478000+song121321@users.noreply.github.com
50b6a6729a7109d44ff46572a9fcde21d59f8bfa
3776706e5d75f77f7a05cd95d5e2f3698a7ee60d
/demo-commons/src/main/java/com/enroy/demo/commons/biz/HasUuid.java
d2a92dab8e68e9147203797bb212066942eb578e
[]
no_license
enroyCode/demo
5201d4ecbaf9082dc56a5d70700b6562f1ca3010
e65df82e37900ac13c89ac4ce0a1fda13e430807
refs/heads/master
2021-04-25T01:11:21.087637
2018-02-12T08:25:19
2018-02-12T08:25:19
115,689,393
0
0
null
null
null
null
UTF-8
Java
false
false
412
java
/** * 版权所有(C),上海海鼎信息工程股份有限公司,2016,所有权利保留。 * <p> * 项目名: demo * 文件名: HasUuid.java * 模块说明: * 修改历史: * 2018/1/2 - zhuchao - 创建。 */ package com.enroy.demo.commons.biz; /** * @author zhuchao */ public interface HasUuid { String getUuid(); void setUuid(String var1) throws UnsupportedOperationException; }
[ "zhuchao@hd123.com" ]
zhuchao@hd123.com
6e4495f5c1249c15bcc55365b9b704aa6c8be620
08bdd164c174d24e69be25bf952322b84573f216
/opencores/client/foundation classes/j2sdk-1_4_2-src-scsl/hotspot/src/share/tools/MakeDeps/Macro.java
cef8320d398ea296ad67085a742c772a29416a4a
[]
no_license
hagyhang/myforthprocessor
1861dcabcf2aeccf0ab49791f510863d97d89a77
210083fe71c39fa5d92f1f1acb62392a7f77aa9e
refs/heads/master
2021-05-28T01:42:50.538428
2014-07-17T14:14:33
2014-07-17T14:14:33
null
0
0
null
null
null
null
UTF-8
Java
false
false
257
java
/* * @(#)Macro.java 1.3 03/01/23 11:12:02 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ public class Macro { public String name; public String contents; }
[ "blue@cmd.nu" ]
blue@cmd.nu
8c0bc4975a9acf4a39b61ff601af9995ee06395d
66ae43ba278276ee12bee61f5939b91d45e2f6a2
/app/src/main/java/com/example/xdai/custom_switch_preference/MainActivity.java
c6ae496bf4db5fa05a8da74d0e9bd5542c1c70ea
[]
no_license
weiqiangzheng/CustomSwitchPreference
4108bd92f03b5531c23845514590cbeddb2fd13c
9e25d445709584d3cf8dcb4a3232b6490e94728d
refs/heads/master
2020-03-24T06:22:21.152356
2016-07-15T04:27:44
2016-07-15T04:27:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
356
java
package com.example.xdai.custom_switch_preference; import android.os.Bundle; import android.preference.PreferenceActivity; public class MainActivity extends PreferenceActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.settings); } }
[ "xdai@ifwe.co" ]
xdai@ifwe.co
ead05b178e03dcc463b4670ff78ee5f0be1343bc
5ded742c0b9ea92832aad98da55d3802a5b745ce
/src/myAmazingThings/SuperField.java
fbf193ab9c789e0d570bf97164ef522875868845
[]
no_license
JungSangHyeon/2018-Enrolment-Program
c8740999c4470df1d282849223a194d396cd9de8
f110c72015f156231e9381108630ba1f74350288
refs/heads/master
2022-10-20T15:50:49.625060
2020-07-09T08:00:52
2020-07-09T08:00:52
278,300,842
0
0
null
null
null
null
UHC
Java
false
false
4,207
java
package myAmazingThings; import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import javax.swing.JPanel; import javax.swing.JPasswordField; public class SuperField extends JPanel { private static final long serialVersionUID = 1L; int focusedHolderSize = 18; int errorSize = 12; int textAreaTextSize =20; int barWidth = 100; int barHeight = 2; int interval = 6; int status = 1; int time = 20; int cnt = 0; int errorNum = 1; Color normalChange = new Color(66,133,244); Color errorChange = new Color(213,0,0); Color basicColor = new Color(224,224,224); Color changeColor= normalChange; String placeHolder, errorMessage; public void error(int num) { if(num==1) {changeColor = normalChange;} else {changeColor = errorChange;} if(num==2) {status=3;} errorNum = num; repaint(); } public SuperField(String placeHolderValue,String errorMessageValue, int barWidthValue) { this.errorMessage = errorMessageValue; this.placeHolder = placeHolderValue; this.barWidth = barWidthValue; this.setSize(barWidth, barHeight + textAreaTextSize + focusedHolderSize*2 + interval +errorSize); this.setLayout(null); } public void Animation(Graphics g) { g.clearRect(0, 0, this.getWidth(), this.getHeight()); g.setColor(basicColor); g.fillRect(0, focusedHolderSize + interval * 2 + textAreaTextSize, barWidth, barHeight);// 얘는 무조건 그림. bar. g.setFont(new Font(null, Font.BOLD, focusedHolderSize)); if (status == 1) {// 내용없을때 포커스 얻음 g.setColor(changingColor(basicColor, changeColor)); upText(g); g.setColor(changeColor); showBar(g); } else if (status == 2) {// 내용 없을때 포커스 잃음 g.setColor(changingColor(changeColor, basicColor)); downText(g); hideBar(g); } else if (status == 3) {// 내용 있을때 포커스 잃음 g.setColor(changingColor(changeColor, basicColor)); drawPlaceHolder(g); hideBar(g); } else if (status == 4) {// 내용 있을때 포커스 얻음 g.setColor(changingColor(basicColor, changeColor)); drawPlaceHolder(g); g.setColor(changeColor); showBar(g); } else if (status == 5) {// 리셋 g.setColor(basicColor); g.drawString(placeHolder, 0, focusedHolderSize * 2); g.fillRect(0, focusedHolderSize + interval * 2 + textAreaTextSize, barWidth, barHeight); } if (errorNum != 1) { g.setColor(changeColor); g.setFont(new Font(null, Font.BOLD, errorSize)); g.fillRect(0, focusedHolderSize + interval * 2 + textAreaTextSize, barWidth, barHeight); if (errorNum == 2) {// 뭐 안써서 일어난 에러 g.drawString(errorMessage, 0, focusedHolderSize + interval * 2 + textAreaTextSize * 2); } } } public int changevalue(int input) {return input*100/time*cnt/100; }//100을 곱하고 나눠주는 이유는 수가 작아서 0 나와서이다. 그리고 해주면 더 정확해짐.//0~본래 값. cnt가 커짐에 따라. public void upText(Graphics g) {g.drawString(placeHolder, 0, focusedHolderSize*2-changevalue(focusedHolderSize)); } public void downText(Graphics g) {g.drawString(placeHolder, 0, focusedHolderSize+changevalue(focusedHolderSize));} public void showBar(Graphics g) {g.fillRect(barWidth/2-barWidth/time*cnt, focusedHolderSize + interval*2 + textAreaTextSize, barWidth/time*cnt*2, barHeight);} public void hideBar(Graphics g) {g.fillRect(0, focusedHolderSize + interval*2 + textAreaTextSize, barWidth, barHeight);} public void drawPlaceHolder(Graphics g) {g.drawString(placeHolder, 0, focusedHolderSize);} public Color changingColor(Color start, Color end) {//changing은 cnt에따라 변하는 색임. start에서 서서히 end로 바꿈. return new Color(start.getRed() + changevalue(end.getRed() - start.getRed()), start.getGreen() + changevalue(end.getGreen() - start.getGreen()), start.getBlue() + changevalue(end.getBlue() - start.getBlue())); } public String makePassword(JPasswordField jPasswordField) {//char[]로 리턴이 되서 필요함. String reasult = ""; for(char cha : jPasswordField.getPassword()) {reasult+=cha;} return reasult; } }
[ "solea1204@naver.com" ]
solea1204@naver.com
f9420c85749d1f3648463d96f22443955b8d2900
8d60db8f16d5175726119ed712aebe8c3d59ae49
/app/src/main/java/com/lhzw/searchlocmap/bean/DeviceInfo.java
71fcfb2be3a8e712e633dbfd96591dd78a8a328a
[]
no_license
xtqb/SearchLocMap_fx
3e6776bd7c835d3e04ab38027b69059033c5153f
91737ba00fe5250231d8edb6a1003d288155cf05
refs/heads/master
2023-02-14T16:47:27.953193
2021-01-13T02:49:58
2021-01-13T02:49:58
328,602,703
0
0
null
null
null
null
UTF-8
Java
false
false
412
java
package com.lhzw.searchlocmap.bean; /** * Created by xtqb on 2019/4/10. */ public class DeviceInfo { private int deviceType; public DeviceInfo(int deviceType) { this.deviceType = deviceType; } public DeviceInfo() { } public int getDeviceType() { return deviceType; } public void setDeviceType(int deviceType) { this.deviceType = deviceType; } }
[ "467493431@qq.com" ]
467493431@qq.com
e8ddc50ccc2d914f91ea4e1f5d667b9e6bd35699
f3a61b19d7d3a0cf20981b5a933487e3a72f67ee
/Java8/src/main/java/com/tester/java8/collection/stream/case1/EmployeeBuilder.java
dd8c2be46c34dbe1e6ce3eb517d368cea5cd1f76
[]
no_license
mramitsingh02/CoreJava
33fa429f93fbaf3586ac76e73094e0659c30a731
b2ddedbed1874628ef5880f3416ccb637f7df933
refs/heads/master
2022-11-12T15:46:32.147064
2022-10-25T15:37:14
2022-10-25T15:37:14
185,536,386
0
0
null
2022-09-01T23:06:29
2019-05-08T05:43:35
Java
UTF-8
Java
false
false
2,213
java
package com.tester.java8.collection.stream.case1; import java.util.Objects; import java.util.concurrent.atomic.AtomicInteger; public class EmployeeBuilder { private AtomicInteger empIdGenerator = null; private int empId; private String empfirstName; private String higstDegree; private long salary; private String department; private float expriences; private Student newStudent; public EmployeeBuilder(Student newStudent) { this.newStudent = newStudent; } public EmployeeBuilder withGenerator(AtomicInteger empIdGenerator) { this.empIdGenerator = empIdGenerator; return this; } public float getExpriences() { return expriences; } public EmployeeBuilder setExpriences(float expriences) { this.expriences = expriences; return this; } public int getEmpId() { return empId; } public EmployeeBuilder setEmpId(int empId) { this.empId = empId; return this; } public String getEmpfirstName() { return empfirstName; } public EmployeeBuilder setEmpfirstName(String empfirstName) { this.empfirstName = empfirstName; return this; } public String getHigstDegree() { return higstDegree; } public EmployeeBuilder setHigstDegree(String higstDegree) { this.higstDegree = higstDegree; return this; } public long getSalary() { return salary; } public EmployeeBuilder setSalary(long salary) { this.salary = salary; return this; } public String getDepartment() { return department; } public EmployeeBuilder setDepartment(String department) { this.department = department; return this; } public Employee build() { Employee newEmployee = null; if (Objects.nonNull(newStudent)) { newEmployee = new Employee(empIdGenerator.getAndIncrement(), newStudent.getFirstName(), newStudent.getHigestDegree(), 0l, "Tranning"); } else { newEmployee = new Employee(empId, empfirstName, higstDegree, salary, department); } return newEmployee; } }
[ "mramitsingh02@gmail.com" ]
mramitsingh02@gmail.com
c349b88d609ae06814b26b5476c7b3cc71b72a59
2c249ac4f633ad6500873cb38130bfb1c5e24a28
/Moduli/CircleSeek4/Objects/src/derez/libs/main.java
7aea9a292a154a834f848570519e3688299b7f5d
[]
no_license
Sirbin/iLightStable
807a65deb29b763c9e4bdafc372ef3e6e5a30bfc
1192a8c33ed0ca62e2e300603e8d51504870093b
refs/heads/master
2021-01-10T20:44:13.428069
2015-04-03T17:32:19
2015-04-03T17:32:19
33,374,170
0
0
null
null
null
null
UTF-8
Java
false
false
13,026
java
package derez.libs; import anywheresoftware.b4a.B4AMenuItem; import android.app.Activity; import android.os.Bundle; import anywheresoftware.b4a.BA; import anywheresoftware.b4a.BALayout; import anywheresoftware.b4a.B4AActivity; import anywheresoftware.b4a.ObjectWrapper; import anywheresoftware.b4a.objects.ActivityWrapper; import java.lang.reflect.InvocationTargetException; import anywheresoftware.b4a.B4AUncaughtException; import anywheresoftware.b4a.debug.*; import java.lang.ref.WeakReference; public class main extends Activity implements B4AActivity{ public static main mostCurrent; static boolean afterFirstLayout; static boolean isFirst = true; private static boolean processGlobalsRun = false; BALayout layout; public static BA processBA; BA activityBA; ActivityWrapper _activity; java.util.ArrayList<B4AMenuItem> menuItems; public static final boolean fullScreen = false; public static final boolean includeTitle = true; public static WeakReference<Activity> previousOne; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); if (isFirst) { processBA = new anywheresoftware.b4a.ShellBA(this.getApplicationContext(), null, null, "derez.libs", "derez.libs.main"); processBA.loadHtSubs(this.getClass()); float deviceScale = getApplicationContext().getResources().getDisplayMetrics().density; BALayout.setDeviceScale(deviceScale); } else if (previousOne != null) { Activity p = previousOne.get(); if (p != null && p != this) { BA.LogInfo("Killing previous instance (main)."); p.finish(); } } if (!includeTitle) { this.getWindow().requestFeature(android.view.Window.FEATURE_NO_TITLE); } if (fullScreen) { getWindow().setFlags(android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN, android.view.WindowManager.LayoutParams.FLAG_FULLSCREEN); } mostCurrent = this; processBA.sharedProcessBA.activityBA = null; layout = new BALayout(this); setContentView(layout); afterFirstLayout = false; BA.handler.postDelayed(new WaitForLayout(), 5); } private static class WaitForLayout implements Runnable { public void run() { if (afterFirstLayout) return; if (mostCurrent == null) return; if (mostCurrent.layout.getWidth() == 0) { BA.handler.postDelayed(this, 5); return; } mostCurrent.layout.getLayoutParams().height = mostCurrent.layout.getHeight(); mostCurrent.layout.getLayoutParams().width = mostCurrent.layout.getWidth(); afterFirstLayout = true; mostCurrent.afterFirstLayout(); } } private void afterFirstLayout() { if (this != mostCurrent) return; activityBA = new BA(this, layout, processBA, "derez.libs", "derez.libs.main"); processBA.sharedProcessBA.activityBA = new java.lang.ref.WeakReference<BA>(activityBA); anywheresoftware.b4a.objects.ViewWrapper.lastId = 0; _activity = new ActivityWrapper(activityBA, "activity"); anywheresoftware.b4a.Msgbox.isDismissing = false; if (BA.isShellModeRuntimeCheck(processBA)) { if (isFirst) processBA.raiseEvent2(null, true, "SHELL", false); processBA.raiseEvent2(null, true, "CREATE", true, "derez.libs.main", processBA, activityBA, _activity, anywheresoftware.b4a.keywords.Common.Density, mostCurrent); _activity.reinitializeForShell(activityBA, "activity"); } initializeProcessGlobals(); initializeGlobals(); BA.LogInfo("** Activity (main) Create, isFirst = " + isFirst + " **"); processBA.raiseEvent2(null, true, "activity_create", false, isFirst); isFirst = false; if (this != mostCurrent) return; processBA.setActivityPaused(false); BA.LogInfo("** Activity (main) Resume **"); processBA.raiseEvent(null, "activity_resume"); if (android.os.Build.VERSION.SDK_INT >= 11) { try { android.app.Activity.class.getMethod("invalidateOptionsMenu").invoke(this,(Object[]) null); } catch (Exception e) { e.printStackTrace(); } } } public void addMenuItem(B4AMenuItem item) { if (menuItems == null) menuItems = new java.util.ArrayList<B4AMenuItem>(); menuItems.add(item); } @Override public boolean onCreateOptionsMenu(android.view.Menu menu) { super.onCreateOptionsMenu(menu); if (menuItems == null) return false; for (B4AMenuItem bmi : menuItems) { android.view.MenuItem mi = menu.add(bmi.title); if (bmi.drawable != null) mi.setIcon(bmi.drawable); if (android.os.Build.VERSION.SDK_INT >= 11) { try { if (bmi.addToBar) { android.view.MenuItem.class.getMethod("setShowAsAction", int.class).invoke(mi, 1); } } catch (Exception e) { e.printStackTrace(); } } mi.setOnMenuItemClickListener(new B4AMenuItemsClickListener(bmi.eventName.toLowerCase(BA.cul))); } // try { // if (processBA.subExists("activity_actionbarhomeclick")) { // Class.forName("android.app.ActionBar").getMethod("setHomeButtonEnabled", boolean.class).invoke( // getClass().getMethod("getActionBar").invoke(this), true); // BA.Log("adding event"); // } // } catch (Exception e) { // e.printStackTrace(); // } return true; } // @Override // public boolean onOptionsItemSelected(android.view.MenuItem item) { // if (item.getItemId() == 16908332) { // processBA.raiseEvent(null, "activity_actionbarhomeclick"); // return true; // } // else // return super.onOptionsItemSelected(item); //} public void onWindowFocusChanged(boolean hasFocus) { super.onWindowFocusChanged(hasFocus); if (processBA.subExists("activity_windowfocuschanged")) processBA.raiseEvent2(null, true, "activity_windowfocuschanged", false, hasFocus); } private class B4AMenuItemsClickListener implements android.view.MenuItem.OnMenuItemClickListener { private final String eventName; public B4AMenuItemsClickListener(String eventName) { this.eventName = eventName; } public boolean onMenuItemClick(android.view.MenuItem item) { processBA.raiseEvent(item.getTitle(), eventName + "_click"); return true; } } public static Class<?> getObject() { return main.class; } private Boolean onKeySubExist = null; private Boolean onKeyUpSubExist = null; @Override public boolean onKeyDown(int keyCode, android.view.KeyEvent event) { if (onKeySubExist == null) onKeySubExist = processBA.subExists("activity_keypress"); if (onKeySubExist) { if (keyCode == anywheresoftware.b4a.keywords.constants.KeyCodes.KEYCODE_BACK && android.os.Build.VERSION.SDK_INT >= 18) { HandleKeyDelayed hk = new HandleKeyDelayed(); hk.kc = keyCode; BA.handler.post(hk); return true; } else { boolean res = new HandleKeyDelayed().runDirectly(keyCode); if (res) return true; } } return super.onKeyDown(keyCode, event); } private class HandleKeyDelayed implements Runnable { int kc; public void run() { runDirectly(kc); } public boolean runDirectly(int keyCode) { Boolean res = (Boolean)processBA.raiseEvent2(_activity, false, "activity_keypress", false, keyCode); if (res == null || res == true) { return true; } else if (keyCode == anywheresoftware.b4a.keywords.constants.KeyCodes.KEYCODE_BACK) { finish(); return true; } return false; } } @Override public boolean onKeyUp(int keyCode, android.view.KeyEvent event) { if (onKeyUpSubExist == null) onKeyUpSubExist = processBA.subExists("activity_keyup"); if (onKeyUpSubExist) { Boolean res = (Boolean)processBA.raiseEvent2(_activity, false, "activity_keyup", false, keyCode); if (res == null || res == true) return true; } return super.onKeyUp(keyCode, event); } @Override public void onNewIntent(android.content.Intent intent) { super.onNewIntent(intent); this.setIntent(intent); } @Override public void onPause() { super.onPause(); if (_activity == null) //workaround for emulator bug (Issue 2423) return; anywheresoftware.b4a.Msgbox.dismiss(true); BA.LogInfo("** Activity (main) Pause, UserClosed = " + activityBA.activity.isFinishing() + " **"); processBA.raiseEvent2(_activity, true, "activity_pause", false, activityBA.activity.isFinishing()); processBA.setActivityPaused(true); mostCurrent = null; if (!activityBA.activity.isFinishing()) previousOne = new WeakReference<Activity>(this); anywheresoftware.b4a.Msgbox.isDismissing = false; } @Override public void onDestroy() { super.onDestroy(); previousOne = null; } @Override public void onResume() { super.onResume(); mostCurrent = this; anywheresoftware.b4a.Msgbox.isDismissing = false; if (activityBA != null) { //will be null during activity create (which waits for AfterLayout). ResumeMessage rm = new ResumeMessage(mostCurrent); BA.handler.post(rm); } } private static class ResumeMessage implements Runnable { private final WeakReference<Activity> activity; public ResumeMessage(Activity activity) { this.activity = new WeakReference<Activity>(activity); } public void run() { if (mostCurrent == null || mostCurrent != activity.get()) return; processBA.setActivityPaused(false); BA.LogInfo("** Activity (main) Resume **"); processBA.raiseEvent(mostCurrent._activity, "activity_resume", (Object[])null); } } @Override protected void onActivityResult(int requestCode, int resultCode, android.content.Intent data) { processBA.onActivityResult(requestCode, resultCode, data); } private static void initializeGlobals() { processBA.raiseEvent2(null, true, "globals", false, (Object[])null); } public static void initializeProcessGlobals() { if (main.processGlobalsRun == false) { main.processGlobalsRun = true; try { } catch (Exception e) { throw new RuntimeException(e); } } } public static boolean isAnyActivityVisible() { boolean vis = false; vis = vis | (main.mostCurrent != null); return vis;} public static void killProgram() { { Activity __a = null; if (main.previousOne != null) { __a = main.previousOne.get(); } else { BA ba = main.mostCurrent.processBA.sharedProcessBA.activityBA.get(); if (ba != null) __a = ba.activity; } if (__a != null) __a.finish();} } public anywheresoftware.b4a.keywords.Common __c = null; public derez.libs.vseekbar _vbar = null; public derez.libs.hseekbar _hbar = null; public derez.libs.circleseek _cs = null; public derez.libs.circleseek _cs2 = null; public derez.libs.size _size = null; public static String _activity_pause(boolean _userclosed) throws Exception{ RDebugUtils.currentModule="main"; RDebugUtils.currentLine=262144; //BA.debugLineNum = 262144;BA.debugLine="Sub Activity_Pause (UserClosed As Boolean)"; RDebugUtils.currentLine=262146; //BA.debugLineNum = 262146;BA.debugLine="End Sub"; return ""; } public static String _cs_valuechanged(int _value,boolean _userchanged) throws Exception{ RDebugUtils.currentModule="main"; RDebugUtils.currentLine=458752; //BA.debugLineNum = 458752;BA.debugLine="Sub cs_ValueChanged(Value As Int, UserChanged As Boolean)"; RDebugUtils.currentLine=458754; //BA.debugLineNum = 458754;BA.debugLine="End Sub"; return ""; } public static String _cs2_valuechanged(int _value,boolean _userchanged) throws Exception{ RDebugUtils.currentModule="main"; RDebugUtils.currentLine=524288; //BA.debugLineNum = 524288;BA.debugLine="Sub cs2_ValueChanged(Value As Int, UserChanged As Boolean)"; RDebugUtils.currentLine=524291; //BA.debugLineNum = 524291;BA.debugLine="End Sub"; return ""; } public static String _hbar_valuechanged(int _value,boolean _userchanged) throws Exception{ RDebugUtils.currentModule="main"; RDebugUtils.currentLine=327680; //BA.debugLineNum = 327680;BA.debugLine="Sub Hbar_ValueChanged(Value As Int, UserChanged As Boolean)"; RDebugUtils.currentLine=327681; //BA.debugLineNum = 327681;BA.debugLine="Log(\"H \" & Value& \" \" & UserChanged)"; anywheresoftware.b4a.keywords.Common.Log("H "+BA.NumberToString(_value)+" "+BA.ObjectToString(_userchanged)); RDebugUtils.currentLine=327682; //BA.debugLineNum = 327682;BA.debugLine="End Sub"; return ""; } public static String _vbar_valuechanged(int _value,boolean _userchanged) throws Exception{ RDebugUtils.currentModule="main"; RDebugUtils.currentLine=393216; //BA.debugLineNum = 393216;BA.debugLine="Sub Vbar_ValueChanged(Value As Int, UserChanged As Boolean)"; RDebugUtils.currentLine=393219; //BA.debugLineNum = 393219;BA.debugLine="End Sub"; return ""; } }
[ "alessio.bino@gmail.com" ]
alessio.bino@gmail.com
f59bb962396d245813d6c9a9815d9870612afaa8
564fb4417956060855a0d573b13d9aaaabe1feb0
/Tree/PathSum.java
b7adad8bff21143b89377c88fa07dd3079eff48b
[]
no_license
harvi7/Leetcode-Problems
e66b717d63b2334c22738b5defbbe582072b78f7
c40bbb6bc96c36b436332b9ab13e31269d6ce65a
refs/heads/master
2023-05-15T00:00:17.935568
2023-04-29T21:02:00
2023-04-29T21:02:00
220,539,825
1
0
null
null
null
null
UTF-8
Java
false
false
451
java
class Solution { public boolean hasPathSum(TreeNode root, int sum) { if (root == null) return false; return helper(root, sum); } private boolean helper(TreeNode root, int sum) { if (root == null) return false; sum -= root.val; if (root.left == null && root.right == null && sum == 0) { return true; } return helper(root.left, sum) || helper(root.right, sum); } }
[ "iamharshvirani7@gmail.com" ]
iamharshvirani7@gmail.com
0d03ff713b2cedae203602531ccb9a4f1ee2982b
1128fdb0a20f2ee7aea395ecbe6136e5ef72ab69
/homework07/homework02/src/dao/CommodityDao.java
cf8ea06f144d59d0c279f645b0bfe4f311f66a0c
[]
no_license
161250020/J2EE_homeworks
163e40c14de82c49f076884175224dd91e89e53c
1a7b11553b3150c4a2341eed76b08b4f9bd56b40
refs/heads/master
2020-07-04T05:03:50.486044
2019-08-13T15:18:13
2019-08-13T15:18:13
202,165,439
0
0
null
null
null
null
GB18030
Java
false
false
565
java
package dao; import java.util.List; import dao.BaseDao; public interface CommodityDao extends BaseDao { //获取库存中所有的商品 //原:chooseCommodities当中 public List findAllCommodities(); //根据商品名称改变商品库存 //原:payIndex当中 //update以及delete的hql语句的执行是需要使用executeUpdate()方法的! //注意:update的set的内容和where的内容不要搞混淆了,你在写代码的时候搞混淆了;! public void updateStoredSumByName(String name, int storedSum); }
[ "799544882@qq.com" ]
799544882@qq.com
6725d8bcf920bf988ac12d95a3446be2155ee225
8d6e36e0a3335524bca8deebdc5717df35871acd
/src/main/java/steps/CardSteps.java
86adc8dd9797ba31d5ca79f78199f9d54506fc91
[]
no_license
pelmewr/IPRTrello
6a1ec292903084a4474c86dcd304ae03cedf2a80
dc4fd5f5701178631d0b497c3037cde4b2ab1c11
refs/heads/master
2023-04-29T07:19:22.096168
2020-11-23T10:49:23
2020-11-23T10:49:23
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,790
java
package steps; import com.codeborne.selenide.SelenideElement; import org.junit.jupiter.api.Assertions; import pages.CardPage; import java.security.PublicKey; public class CardSteps { public static void taskComplite(){ Assertions.assertEquals("100%", CardPage.progress().getText(), "Выполнены не все задания"); } public static void closeCard(){ SelenideElement closeBtn = CardPage.closeBtn(); if (closeBtn.isDisplayed())closeBtn.click(); else Assertions.assertTrue(closeBtn.isDisplayed(),"Не отображается кнопка закрытия карточки"); } public static void openChangeBg() throws InterruptedException { SelenideElement changeBg = CardPage.cardChangeBgButton(); if (changeBg.isDisplayed())changeBg.click(); else Assertions.assertTrue(changeBg.isDisplayed(),"Не отображается кнопка смены обложки"); Thread.sleep(3000); } public static void selectGreenBg(){ SelenideElement selectBg = CardPage.greenCardBg(); if (selectBg.isDisplayed())selectBg.click(); else Assertions.assertTrue(selectBg.isDisplayed(),"Не отображается кнопка зеленого цвета обложки"); } public static void completeTask(){ if (CardPage.timeStatus().getText().contains("просрочено"))Assertions.fail("Время выполнения задачи просрочено"); else { SelenideElement check = CardPage.completeTaskChBox(); if (check.isDisplayed())check.click(); else Assertions.assertTrue(check.isDisplayed(), "Не отображается чекбокс окончания задачи"); } } }
[ "natasha.grigorieva98@gmail.com" ]
natasha.grigorieva98@gmail.com
ce08281e20553edad5e376b0c8eaa71a82d9bdda
4920d98079efd643b53e740d217a89eb8ad7add1
/app/src/main/java/com/github/pavelkv96/hw_12102017/http/Response.java
cdefcce35df96fb118ec20cda7f4f300faaf01a1
[]
no_license
pavelkv96/HW_12.10.2017
e71373b134b82f846abcdf61dae67643168c84c4
93bee81f4cfd1c48192e326291c1132e55dd95d4
refs/heads/master
2021-07-14T09:12:50.409414
2017-10-19T20:32:31
2017-10-19T20:32:31
107,527,807
0
0
null
null
null
null
UTF-8
Java
false
false
554
java
package com.github.pavelkv96.hw_12102017.http; /** * Created by Pavel on 19.10.2017. */ public class Response { private String text; private int code; public Response() { } public Response(String text, int code) { this.text = text; this.code = code; } public String getText() { return text; } public void setText(String text) { this.text = text; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } }
[ "pavelkv96@gmail.com" ]
pavelkv96@gmail.com
7670d15e2b31c6a1ec91fbb7d5ec391b75750852
2e6e70b5b9db7ace5448dd90e3ca430e7fc9fa26
/app/src/main/java/com/example/memeapp/customize.java
e068baa2c0318ae4d8f5b09b5adf46e64f5eb942
[]
no_license
aayush416/Earthquake
61b6c7f9d607727958bc09bdd7bf54a3deb96ba1
9327a8be6869b2f8fdbd8a1fd9f08e3e13b75470
refs/heads/master
2023-01-07T01:32:57.561814
2020-11-06T15:35:22
2020-11-06T15:35:22
310,615,732
0
0
null
null
null
null
UTF-8
Java
false
false
958
java
package com.example.memeapp; import androidx.core.content.ContextCompat; import java.text.SimpleDateFormat; import java.util.Date; public class customize { private String mag,area; String url; long time; customize(String mag,String area,long time,String url) { this.mag=mag; this.area=area; this.time=time; this.url=url; } public String getArea() { return area; } public String getMag() { return mag; } public long getTime() { return time; } public String formatDate(Date dateObject) { SimpleDateFormat dateFormat = new SimpleDateFormat("LLL dd, yyyy"); return dateFormat.format(dateObject); } public String formatTime(Date dateObject) { SimpleDateFormat timeFormat = new SimpleDateFormat("h:mm a"); return timeFormat.format(dateObject); } public String getUrl() { return url; } }
[ "aayush15102001@gmail.com" ]
aayush15102001@gmail.com
eadd88c6f4e363957aa7b95a68170d70511e5e06
70e17bc654ef315a42c0b05affb7da46fd797473
/gateway/src/main/java/com/sung/gateway/GatewayApplication.java
e5d16579c22c592448aeec8c7df3616b88f5b4a3
[]
no_license
sung9020/api_gateway_by_zuul
5b94e4be8acb4bd0638feddb95ae00b6f6c74f5a
f8086627808027a22e73508cb572ce6b994ad4e9
refs/heads/master
2022-01-30T15:45:50.494134
2019-07-23T06:52:40
2019-07-23T06:53:01
198,369,909
0
0
null
null
null
null
UTF-8
Java
false
false
323
java
package com.sung.gateway; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class GatewayApplication { public static void main(String[] args) { SpringApplication.run(GatewayApplication.class, args); } }
[ "123msn@nexon.co.kr" ]
123msn@nexon.co.kr
2aeea48434a55c8ddb8272fe431da252f2829da6
9af1ba219d2c5ee02cf365481b15cbbe6028b3ee
/src/test/java/restaurantvote/AbstractServiceTest.java
bed1139045947b82e316553839cd3861bbec4ec7
[]
no_license
Ivanich85/RestaurantVote
53b59be59c860cece5ed95d0f37facf6bbb794ff
619e7cc0436cf87667fed9cd04d9301efceb0d0f
refs/heads/master
2022-11-24T21:45:10.141689
2020-01-15T20:50:40
2020-01-15T20:50:40
222,790,348
0
0
null
2022-11-15T23:54:43
2019-11-19T21:10:20
HTML
UTF-8
Java
false
false
646
java
package restaurantvote; import org.junit.jupiter.api.extension.ExtendWith; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.jdbc.Sql; import org.springframework.test.context.jdbc.SqlConfig; import org.springframework.test.context.junit.jupiter.SpringExtension; @ContextConfiguration(locations = { "classpath:spring/spring-app.xml", "classpath:spring/spring-db-test.xml" }) @ExtendWith(SpringExtension.class) @Sql(scripts = {"classpath:db/initDB_hsql.sql", "classpath:db/populateDB.sql"}, config = @SqlConfig(encoding = "UTF-8")) public abstract class AbstractServiceTest { }
[ "ivan.dmitriev85@gmail.com" ]
ivan.dmitriev85@gmail.com
dceda00c9d9dd7cbe11bbf4d1e1f5df92272a466
b2571189fe5f89ad24306445cadcf6ab1448a637
/src/com/course/service/CourseService.java
04028b248d1853fa8fab046a959bbc4ae90fa233
[]
no_license
SoftwareEngineeringWheelMaker/Course-Resource-Management-System
a972b684da9ceea1b2976da5317d3a69477c9431
546f523eccb9ce4f1869f61d0bb13885386f37a4
refs/heads/master
2021-01-01T03:43:27.612087
2016-05-06T08:01:15
2016-05-06T08:01:15
57,113,928
0
0
null
null
null
null
UTF-8
Java
false
false
860
java
package com.course.service; import org.springframework.orm.hibernate4.support.HibernateDaoSupport; import com.course.common.dao.impl.BaseDaoImpl; import com.course.domain.Course; public class CourseService extends HibernateDaoSupport { private BaseDaoImpl<Course> baseDao; private Course course; public BaseDaoImpl<Course> getBaseDao() { return baseDao; } public void setBaseDao(BaseDaoImpl<Course> baseDao) { this.baseDao = baseDao; } public Course getCourse() { return course; } public void setCourse(Course course) { this.course = course; } /** * 保存课程信息 * @param course */ public void saveCourse(Course course) { baseDao.save(course); } /** * 修改课程信息 * @param course */ public void updateCourse(Course course) { baseDao.update(course); } }
[ "linhui0705@gmail.com" ]
linhui0705@gmail.com
a5b2dfc50dd4424e28467ef3418098711e322728
931da8ce1c4a6cd8d061f4b63c9a99801c9497b1
/app/src/main/java/com/udacity/vinhphuc/musicplayer/presentation/activities/SettingsActivity.java
11e343364aac0e89b5d969b1600c0e243fd55569
[]
no_license
thvphuc246/MusicPlayer
557bed237fb00b0ac5bc23478259a1f6aba66722
e305325c9d531e7570066de54b47bfc4ed24b74c
refs/heads/master
2021-08-29T08:56:26.216016
2021-08-26T11:55:58
2021-08-26T11:55:58
142,208,845
1
1
null
null
null
null
UTF-8
Java
false
false
3,183
java
package com.udacity.vinhphuc.musicplayer.presentation.activities; import android.os.Bundle; import android.preference.PreferenceFragment; import android.preference.PreferenceManager; import android.support.annotation.ColorInt; import android.support.annotation.NonNull; import android.support.annotation.StyleRes; import android.support.v7.widget.Toolbar; import android.view.MenuItem; import com.afollestad.appthemeengine.ATE; import com.afollestad.appthemeengine.Config; import com.afollestad.appthemeengine.customizers.ATEActivityThemeCustomizer; import com.afollestad.materialdialogs.color.ColorChooserDialog; import com.udacity.vinhphuc.musicplayer.R; import com.udacity.vinhphuc.musicplayer.presentation.fragments.SettingsFragment; import com.udacity.vinhphuc.musicplayer.utils.PreferencesUtility; /** * Created by VINH PHUC on 24/7/2018 */ public class SettingsActivity extends BaseThemedActivity implements ColorChooserDialog.ColorCallback, ATEActivityThemeCustomizer { private String action; @Override public void onCreate(Bundle savedInstanceState) { if (PreferencesUtility.getInstance(this).getTheme().equals("dark")) setTheme(R.style.AppThemeNormalDark); else if (PreferencesUtility.getInstance(this).getTheme().equals("black")) setTheme(R.style.AppThemeNormalBlack); super.onCreate(savedInstanceState); setContentView(R.layout.activity_settings); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); getSupportActionBar().setDisplayHomeAsUpEnabled(true); action = getIntent().getAction(); getSupportActionBar().setTitle(R.string.settings); PreferenceFragment fragment = new SettingsFragment(); android.app.FragmentManager fragmentManager = getFragmentManager(); fragmentManager.beginTransaction() .replace(R.id.fragment_container, fragment).commit(); } @Override public boolean onOptionsItemSelected(final MenuItem item) { switch (item.getItemId()) { case android.R.id.home: finish(); return true; default: break; } return super.onOptionsItemSelected(item); } @StyleRes @Override public int getActivityTheme() { return PreferenceManager.getDefaultSharedPreferences(this).getBoolean("dark_theme", false) ? R.style.AppThemeDark : R.style.AppThemeLight; } @Override public void onColorSelection(@NonNull ColorChooserDialog dialog, @ColorInt int selectedColor) { final Config config = ATE.config(this, getATEKey()); switch (dialog.getTitle()) { case R.string.primary_color: config.primaryColor(selectedColor); break; case R.string.accent_color: config.accentColor(selectedColor); break; } config.commit(); recreate(); // recreation needed to reach the checkboxes in the preferences layout } public void onColorChooserDismissed(@NonNull ColorChooserDialog dialog) { } }
[ "truonghoangvinhphuc@gmail.com" ]
truonghoangvinhphuc@gmail.com
e0843fb855525c5d83ced553ebc50c7222adc76d
b11750e03801381e3514529d08b2a3f7b059b67f
/projectTest/company-web/src/main/java/com/wyp/controller/vo/req/StaffInfoReq.java
de824fae44008663acc225aa184db2dd0f292dc6
[]
no_license
wangyunpeng1/ProjectDemo1
e5268939e27f25c79937f401057720f8145fa301
ea38ac5a1754f5be97283719ce0e097567088b50
refs/heads/master
2022-06-26T02:39:58.681340
2020-05-07T09:25:41
2020-05-07T09:25:41
249,705,353
0
0
null
2022-06-21T03:03:14
2020-03-24T12:42:47
CSS
UTF-8
Java
false
false
756
java
package com.wyp.controller.vo.req; import lombok.Data; import java.util.Date; /** * @author: wyp * @date: 2020/2/4 * @description: 员工信息/权限 */ @Data public class StaffInfoReq { /** * 员工id */ private Long staffId; /** * 公司id */ private Long companyId; /** * 员工姓名 */ private String staffName; /** * 账号 */ private String account; /** * 增加权限(0 无,1 有) */ private Integer insertPower; /** * 删除权限(0 无,1 有) */ private Integer deletePower; /** * 修改权限(0 无,1 有) */ private Integer updatePower; /** * 创建时间 */ private Date createTime; }
[ "wangyunpeng19@jd.com" ]
wangyunpeng19@jd.com
0a08dce88648d9618c97c732aa186c29b81da93b
08783b52d84866dbf05f5fd26c7cc1b837d5d54a
/lab7_3/app/src/test/java/com/example/lab7_3/ExampleUnitTest.java
819791df35023f19c7e58fedd60761e9fad6688c
[]
no_license
nguyenngockha2904/LTTBDD
cd0757d809efbf4ccb5e5fb2362cd9de783013a8
e4572f67d5012a8f17f6f6d0137564e6464a48da
refs/heads/master
2021-03-02T04:26:01.706315
2020-04-07T16:53:19
2020-04-07T16:53:19
245,838,123
0
0
null
null
null
null
UTF-8
Java
false
false
379
java
package com.example.lab7_3; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() { assertEquals(4, 2 + 2); } }
[ "55082300+nguyenngockha2904@users.noreply.github.com" ]
55082300+nguyenngockha2904@users.noreply.github.com
0b52159640cb73501403574c9870854a586c8c71
33e3eafa89d1376134bfcc8c48a380121c966771
/app/src/main/java/com/example/ashrafi/fragment/NewActivity.java
078145349a005ec4991df1a7dd5eb9055235b959
[]
no_license
ashrafishama/contactFragmentNotMine
557600ec1c0f521a3a6a1c46526e81dd561e81d6
ad21747cb250aff23fd62e4086823888fea96ed0
refs/heads/master
2021-08-08T01:42:50.450357
2017-11-09T09:42:36
2017-11-09T09:42:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
449
java
package com.example.ashrafi.fragment; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; /** * Created by HP on 10/17/2017. */ public class NewActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.next_layout); Intent intent = getIntent(); } }
[ "triplemzim@gmail.com" ]
triplemzim@gmail.com
dbaaa94605322ba4b1b939b61f8fce35a6c82adc
f565f8b80341fe80c76cee8aa35b492aea76888e
/src/main/java/com/gyawalirajiv/redismessagesystem/domain/Message.java
01665dac0eb626712b226f8ee95be8b979c6b9b2
[]
no_license
gyawalirajiv/redis-message-system
143a6deadbad6a20538e20fbded11d525eaec30f
cc35eb7c27c9415d3b88d2fc3edefcd56729930f
refs/heads/master
2023-04-23T05:52:09.540989
2021-04-24T14:38:39
2021-04-24T14:38:39
361,185,507
0
0
null
null
null
null
UTF-8
Java
false
false
447
java
package com.gyawalirajiv.redismessagesystem.domain; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import org.springframework.data.annotation.Id; import org.springframework.data.redis.core.RedisHash; import java.io.Serializable; @Data @AllArgsConstructor @NoArgsConstructor @RedisHash("Message") public class Message implements Serializable { @Id private Integer id; private String text; }
[ "gyawalirajiv@gmail.com" ]
gyawalirajiv@gmail.com
1287119689353bff459fc152bdb224b569ef1bfd
5cdfdd0f966e02e96b5a1ea1e1b23bb39928b536
/src/main/java/com/joysupply/util/Constants.java
899f298a8e2d595a00e71fbeeeba56de3937cab7
[]
no_license
MouseLemon/momo
c7f58ac0d494b4176d3b907465b11ce3a1b5dcfe
c25534b256c92ce1abf600453ee256a05cb96025
refs/heads/master
2022-09-18T15:16:45.995586
2019-12-21T09:43:49
2019-12-21T09:43:49
229,403,747
0
0
null
2022-09-01T23:17:51
2019-12-21T09:12:26
JavaScript
UTF-8
Java
false
false
359
java
package com.joysupply.util; public class Constants { public final static String RUNTIME_ROOT = System.getProperty("user.dir"); /** * get guid * @return */ public static String GUID(){ return java.util.UUID.randomUUID().toString(); } /** * 非排课项目参数 * */ public static String COURSE_FEE_TYPE = "19"; //COURSE_FEE_TYPE }
[ "hao583230608@163.com" ]
hao583230608@163.com
e6e9dc4d444867207ca59d1fe24f5441e3534ca6
2427cc50b1565a1434745783c19625d346252835
/app/src/main/java/com/w3engineers/ecommerce/uniqa/data/helper/models/CategoryModel.java
4fbf789a258e3e4f6575a8ecec43e3a1e09998c0
[]
no_license
shahariartaki/uniqa-android
4c0477d41183b21121e8b4561d1dd5645a04e30b
88ccf66b5b27eda52ecad7641505c5f3b3f8f445
refs/heads/master
2022-09-17T08:10:58.909719
2020-05-31T02:37:50
2020-05-31T02:37:50
268,083,362
0
0
null
null
null
null
UTF-8
Java
false
false
609
java
package com.w3engineers.ecommerce.uniqa.data.helper.models; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class CategoryModel { @SerializedName("id") @Expose public int id; @SerializedName("status") @Expose public int status; @SerializedName("admin_id") @Expose public int adminId; @SerializedName("title") @Expose public String title; @SerializedName("image_name") @Expose public String imageUrl; @SerializedName("image_resolution") @Expose public String imageResulation; }
[ "shahariarnawshintaki@gmail.com" ]
shahariarnawshintaki@gmail.com
e4453ebb7de1f2c2f35a1793ba31b9e483a6638d
d2f8dbf22db2ed00a1194f9f77f1f648d6a9e781
/app/src/main/java/com/example/lenovo/mychats/MenuUser.java
6401d969c8e8f2462d90d1fb96efa551aa10942f
[]
no_license
evelynwijaya/MyChats
05cb2851589d116a65d2251cf11f5e44bd5a184f
38be86d558a32708f36c69a8238f63fff45c371e
refs/heads/master
2021-09-02T05:02:07.727592
2017-12-30T15:52:24
2017-12-30T15:52:24
115,806,833
0
0
null
null
null
null
UTF-8
Java
false
false
340
java
package com.example.lenovo.mychats; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MenuUser extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_menu_user); } }
[ "32315692+evelynwijaya@users.noreply.github.com" ]
32315692+evelynwijaya@users.noreply.github.com
057796b1f8d63de833b2c41cd377d202141d1200
98d313cf373073d65f14b4870032e16e7d5466f0
/gradle-open-labs/example/src/main/java/se/molybden/Class1003.java
f9ecce6e295a864324770d6f4c6e780b549d23af
[]
no_license
Molybden/gradle-in-practice
30ac1477cc248a90c50949791028bc1cb7104b28
d7dcdecbb6d13d5b8f0ff4488740b64c3bbed5f3
refs/heads/master
2021-06-26T16:45:54.018388
2016-03-06T20:19:43
2016-03-06T20:19:43
24,554,562
0
0
null
null
null
null
UTF-8
Java
false
false
109
java
public class Class1003{ public void callMe(){ System.out.println("called"); } }
[ "jocce.nilsson@gmail.com" ]
jocce.nilsson@gmail.com
f23a1d1c1fa399a6438f7e998b86aba2a6a539b1
ae2906fa1a2ec0750bed9ac28696871f5838dc91
/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/securitygroups/_ListSecurityGroupStagingDefaultsRequest.java
ce19e3d51bff93d9c63e6d54776681768f83f31a
[ "Apache-2.0" ]
permissive
theghost5800/cf-java-client
ca8e2c0073fa1b8fd0441177d93d713ab3856f55
07a34c646a2f982e9405a49db2122ef461462af0
refs/heads/master
2022-11-15T08:17:10.162327
2019-10-29T15:48:42
2019-10-29T15:48:42
219,698,354
0
0
Apache-2.0
2019-11-05T08:48:37
2019-11-05T08:48:36
null
UTF-8
Java
false
false
943
java
/* * Copyright 2013-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.cloudfoundry.client.v2.securitygroups; import org.cloudfoundry.client.v2.PaginatedRequest; import org.immutables.value.Value; /** * The request payload for the List Staging Security Groups operation */ @Value.Immutable abstract class _ListSecurityGroupStagingDefaultsRequest extends PaginatedRequest { }
[ "bhale@pivotal.io" ]
bhale@pivotal.io
b4b3f0544a1c8c6b5945cbcb67ac7e5174e61de7
47b687de132b4eef9b03a7a8369e29ef3332eba2
/src/main/java/com/bsc/service/impl/RightServiceImpl.java
0122edf96a84a4f21d6a8cbfaacd4a601a02b331
[]
no_license
sycproject/bsc
d5ba70daed30b364e6035da3d80de93efc9d6f6d
e5e42845ca1e5c40138149ae5051de8b161cee80
refs/heads/master
2020-04-06T04:51:51.587483
2015-03-13T03:27:50
2015-03-13T03:27:50
28,332,250
0
0
null
null
null
null
UTF-8
Java
false
false
1,514
java
package com.bsc.service.impl; import java.util.List; import java.util.Map; import javax.annotation.Resource; import org.springframework.stereotype.Service; import com.bsc.common.CommonDao; import com.bsc.entity.Right; import com.bsc.service.RightService; @Service("rightService") public class RightServiceImpl implements RightService { @Resource(name="commonDao") private CommonDao commonDao; @Override public Right findRightById(int id) { // TODO Auto-generated method stub return commonDao.get("com.bsc.dao.RightMapper.selectByPrimaryKey", id); } @Override public void addRight(Right user) { // TODO Auto-generated method stub commonDao.save("com.bsc.dao.RightMapper.insert", user); } @Override public void updateRight(Right user) { // TODO Auto-generated method stub commonDao.update("com.bsc.dao.RightMapper.updateByPrimaryKey", user); } @Override public void deleteRight(Right user) { // TODO Auto-generated method stub commonDao.delete("com.bsc.dao.RightMapper.deleteByPrimaryKey", user.getId()); } @Override public List<Right> getListByPage(Map<String, Object> searchCondition) { // TODO Auto-generated method stub return commonDao.getList("com.bsc.dao.RightMapper.getListByPage", searchCondition); } @Override public int getTotalCount(Map<String, Object> searchCondition) { // TODO Auto-generated method stub return commonDao.getList("com.bsc.dao.RightMapper.getList", searchCondition).size(); } }
[ "sunyuandaqn@163.com" ]
sunyuandaqn@163.com
fd8f6056ac5b84617ec49739602f589e607e6f5f
5e4aa5b313bd280b2ef2ec1b81cc5a1e0a2ef648
/src/main/java/com/psych/game/model/GameMode.java
12d51ffbb63c8a516765998c5560ae28a62dd76c
[]
no_license
ramesh961/ramesh-psych
0cdb878d356aacd7e98e416f22ca03a85d8fc5fc
9cf3454848b1927c66e39c670217264cccddfb41
refs/heads/master
2022-11-15T05:37:13.497029
2020-06-08T12:06:43
2020-06-08T12:06:43
263,252,215
0
0
null
null
null
null
UTF-8
Java
false
false
560
java
package com.psych.game.model; import lombok.Getter; import lombok.Setter; import javax.persistence.Entity; import javax.persistence.Table; @Entity @Table(name="gameMode") public class GameMode extends Auditable { @Getter @Setter private String name; @Getter @Setter private String pic; @Getter @Setter private String description; public GameMode(){} public GameMode(String name, String pic, String description) { this.name = name; this.pic = pic; this.description = description; } }
[ "rameshsapphire1996@gmail.com" ]
rameshsapphire1996@gmail.com
d959f467d945b5d3f80ffa0553453a339cb07c66
cf113166c9c9e023bee73eee81ebc03625aff522
/src/org.xtuml.bp.test/src/org/xtuml/bp/test/common/CanvasEditorUtils.java
1b22130616c39c162568ff618144d75e96eee342
[ "Apache-2.0" ]
permissive
xtuml/bptest
6edcbae9108632d7fe1b4810ab437e8f5493bf9f
da921608d96c7b18585a2c5a0776bab7c04b6314
refs/heads/master
2023-07-20T06:15:01.387623
2023-07-06T14:24:13
2023-07-06T14:24:13
77,953,801
1
33
Apache-2.0
2023-07-06T14:24:15
2017-01-03T21:12:24
Java
UTF-8
Java
false
false
6,863
java
package org.xtuml.bp.test.common; //===================================================================== // //File: $RCSfile: CanvasEditorUtils.java,v $ //Version: $Revision: 1.10 $ //Modified: $Date: 2013/01/10 23:21:31 $ // //(c) Copyright 2004-2014 by Mentor Graphics Corp. 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. //===================================================================== import junit.framework.TestCase; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.TreeItem; import org.eclipse.ui.IEditorPart; import org.eclipse.ui.PlatformUI; import org.xtuml.bp.core.Ooaofooa; import org.xtuml.bp.core.common.NonRootModelElement; import org.xtuml.bp.core.common.PersistableModelComponent; import org.xtuml.bp.core.ui.RenameAction; import org.xtuml.bp.core.ui.Selection; import org.xtuml.bp.ui.canvas.Cl_c; import org.xtuml.bp.ui.canvas.GraphicalElement_c; import org.xtuml.bp.ui.canvas.Model_c; import org.xtuml.bp.ui.canvas.Ooaofgraphics; import org.xtuml.bp.ui.canvas.Shape_c; import org.xtuml.bp.ui.graphics.editor.GraphicalEditor; import org.xtuml.bp.ui.graphics.editor.GraphicalEditorInput; public class CanvasEditorUtils { static public void delete(GraphicalEditor editor, NonRootModelElement me) { getShape(me, true); editor.doDelete(); } static public void rename(String newName) { Object selection = Selection.getInstance().getStructuredSelection() .getFirstElement(); String oldName = Cl_c.Getname(selection); Runnable query = RenameAction.getRenameQuery(selection, newName, oldName, false); PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell() .getDisplay().asyncExec(query); } static public void edit(GraphicalEditor editor, NonRootModelElement me) { Shape_c shape = getShape(me, false); edit(editor, shape); } static public void edit(GraphicalEditor editor) { edit(editor,getRandomShape(editor)); } static public void edit(GraphicalEditor editor,Shape_c shape) { PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage() .activate(editor.getParentEditor()); TestCase.assertNotNull(shape); editor.zoomAll(); while(PlatformUI.getWorkbench().getDisplay().readAndDispatch()); Point center = CanvasTestUtils.getShapeCenter(shape); center = CanvasTestUtils.convertToMouseCoor(center, editor.getModel()); CanvasTestUtils.createMouseEvent(center.x, center.y, "MouseDown"); CanvasTestUtils.createMouseEvent(center.x + 20, center.y + 20, "MouseMove"); CanvasTestUtils.createMouseEvent(center.x + 20, center.y + 20, "MouseUp"); Point center2 = CanvasTestUtils.getShapeCenter(shape); center2 = CanvasTestUtils.convertToMouseCoor(center2, editor.getModel()); while(Display.getCurrent().readAndDispatch()); TestCase.assertFalse("Shape not moved", center.equals(center2)); } static public Shape_c getRandomShape(GraphicalEditor editor) { GraphicalEditorInput input = (GraphicalEditorInput) editor.getEditorInput(); Model_c diagram = input.getInput(); // pickup a shape return Shape_c.getOneGD_SHPOnR2(GraphicalElement_c .getManyGD_GEsOnR1(diagram)); } static public Shape_c getShape(NonRootModelElement me, boolean select) { Ooaofgraphics graphicsRoot = Ooaofgraphics.getInstance(me .getModelRoot().getId()); GraphicalElement_c ge = CanvasTestUtils.getGraphicalElement( graphicsRoot, me); Shape_c shape = Shape_c.getOneGD_SHPOnR2(ge); TestCase.assertNotNull("Shape not found", shape); if(shape != null && select){ Model_c diagram = Model_c.getOneGD_MDOnR1(ge, false); ((GraphicalEditor) UITestingUtilities.getActiveEditor()).zoomAll(); while(PlatformUI.getWorkbench().getDisplay().readAndDispatch()); Point center = CanvasTestUtils.getShapeCenter(shape); center = CanvasTestUtils.convertToMouseCoor(center, diagram); CanvasTestUtils.createMouseEvent(center.x, center.y, "MouseDown"); CanvasTestUtils.createMouseEvent(center.x, center.y, "MouseUp"); IStructuredSelection selection = (IStructuredSelection)Selection.getInstance().getSelection(); TestCase.assertTrue("Model Element not selected", selection.getFirstElement() == me); } return Shape_c.getOneGD_SHPOnR2(ge); } static public GraphicalEditor openEditorWithShapeOf(NonRootModelElement me) { Ooaofgraphics graphicsRoot = Ooaofgraphics.getInstance(me .getModelRoot().getId()); GraphicalElement_c ge = CanvasTestUtils.getGraphicalElement( graphicsRoot, me); if (ge != null) { Model_c diagram = Model_c.getOneGD_MDOnR1(ge, false); Object containingME = Cl_c.Getinstancefromooa_id((Ooaofooa) me.getModelRoot(), diagram.getOoa_id(),diagram.getOoa_type()); CanvasTestUtils.openCanvasEditor(containingME); IEditorPart editor = UITestingUtilities.getActiveEditor(); TestCase.assertTrue("Could not open canvas editor", (editor instanceof GraphicalEditor)); TestCase.assertTrue("Could not open canvas editor", ((GraphicalEditorInput) ((GraphicalEditor) editor) .getEditorInput()).getInput() == diagram); return (GraphicalEditor)editor; } return null; } static public boolean containsShape(IEditorPart editor, NonRootModelElement me){ if(!(editor instanceof GraphicalEditor)){ return false; } Model_c diagram = ((GraphicalEditorInput) (editor).getEditorInput()).getInput(); GraphicalElement_c[] ges = GraphicalElement_c.getManyGD_GEsOnR1(diagram); for (int i = 0; i < ges.length; i++) { if(ges[i].getRepresents() == me){ return true; } } return false; } public static GraphicalEditor openEditorWithShapeOf(PersistableModelComponent pmc) { TreeItem item = ExplorerUtil.findRootTreeItem(pmc.getFullPath()); return openEditorWithShapeOf((NonRootModelElement) item.getData()); } }
[ "cort@roxsoftware.com" ]
cort@roxsoftware.com
ac5d1ecaf80ca841a13b6ba23a94827820e7ba2f
6b977ba58e7d695e5508c9477d9db01c0636c7c7
/src/main/java/com/etouch/net/tests/CareersPageTest.java
666af75760addbd6aa9b756b37962c7e56c8b247
[]
no_license
mthakur1/Test_Repository
51f2d5611b75de14826cd1f0cd3fab9a9a0c85b3
c7a081de1638e8a95cf114bffac8936d82a68baf
refs/heads/master
2021-01-10T06:51:21.733176
2015-12-11T10:58:07
2015-12-11T10:58:07
47,688,646
0
0
null
null
null
null
UTF-8
Java
false
false
13,599
java
package com.etouch.net.tests; import java.util.List; import org.apache.commons.logging.Log; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import com.etouch.net.common.BaseTest; import com.etouch.net.pages.CareersPage; import com.etouch.taf.core.TestBedManager; import com.etouch.taf.core.config.TestBedManagerConfiguration; import com.etouch.taf.core.datamanager.excel.TafExcelDataProvider; import com.etouch.taf.core.datamanager.excel.TestParameters; import com.etouch.taf.core.datamanager.excel.annotations.IExcelDataFiles; import com.etouch.taf.core.datamanager.excel.annotations.ITafExcelDataProviderInputs; import com.etouch.taf.core.exception.PageException; import com.etouch.taf.tools.jira.Jira; import com.etouch.taf.util.LogUtil; import com.etouch.taf.util.SoftAssertor; import com.etouch.taf.webui.selenium.WebPage; /** * * @author mkanchetty * */ @IExcelDataFiles(excelDataFiles = { "file1=src/test/resources/testdata/eTouchTestData.xls" }) public class CareersPageTest extends BaseTest{ /** The web page. */ private WebPage webPage; /** The main page. */ private CareersPage careersPage; private String baseURL= TestBedManagerConfiguration.getInstance().getWebConfig().getURL(); private String subURL="/careers/index.html"; static Log log = LogUtil.getLog(CareersPageTest.class); /** * Prepare before class. * * @throws Exception the exception */ @BeforeClass(alwaysRun=true) public void prepareBeforeClass() throws Exception { try { webPage = new WebPage(); careersPage = new CareersPage(baseURL+subURL, webPage); } catch (Exception e) { log.info("Error is:" + e); SoftAssertor.addVerificationFailure(e.getMessage()); } } @Test(dataProvider = "tafDataProvider", dataProviderClass = TafExcelDataProvider.class, priority = 1 , enabled=true,groups={"Regression","Smoke","Sanity"}) @ITafExcelDataProviderInputs(excelFile = "file1", excelsheet = "CareersPage", dataKey = "LandingPage") public void verifyLandingPageTest(TestParameters inputs){ try{ log.info("Verifying Careers Page LandingPage"); SoftAssertor.assertEquals(webPage.getCurrentUrl(), inputs.getParamMap().get("URL"), "Careers Page URL not matched"); SoftAssertor.assertEquals(webPage.getDriver().getTitle(), inputs.getParamMap().get("Title"), "Careers Page Title not matched"); log.info("Verified Careers Page LandingPage"); }catch(AssertionError e){ logDefectOnTestFailure(inputs,e); log.error(">--------------Test case Careers LandingPage failed -------------<"+e.getMessage()); }catch(Exception e){ log.error(">--------------Test case Careers LandingPage failed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); } } @Test(dataProvider = "tafDataProvider", dataProviderClass = TafExcelDataProvider.class, priority = 2 , enabled=true,groups={"Regression","Sanity"}) @ITafExcelDataProviderInputs(excelFile = "file1", excelsheet = "CareersPage", dataKey = "CareersParaText") public void testVerifyCareersParaText(TestParameters inputs){ try{ log.info("Verifying Careers Page Career Header Text"); List<String> headerText = careersPage.verifyCareersHeaderText(); verifyGivenValues(headerText, inputs, "CareersText", "color", "size", "Careers Page Career Header text"); log.info("Verified Careers Page Career Header Text"); log.info("Verifying Careers Page Career Paragraph Text"); List<String> paraText = careersPage.verifyCareersParaText(); verifyGivenValues(paraText, inputs, "ParaText", "para_color", "para_size","Careers Page Paragraph text "); log.info("Verified Careers Page Career Paragraph Text"); }catch (AssertionError e) { logDefectOnTestFailure(inputs,e); log.error(">--------------Test case Careers Paragraph text -------------<"+e.getMessage()); }catch (PageException e) { log.error(">--------------Test case Careers Paragraph text failed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); }catch(Exception e){ log.error(">--------------Test case Careers Paragraph text failed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); } finally { SoftAssertor.displayAssertErrors(); } } @Test(dataProvider = "tafDataProvider", dataProviderClass = TafExcelDataProvider.class, priority = 3 , enabled=true ,groups={"Regression"}) @ITafExcelDataProviderInputs(excelFile = "file1", excelsheet = "CareersPage", dataKey = "Address") public void testVerifyWhereToApplyText(TestParameters inputs){ try { log.info("Verifying Careers Page Where to apply Header Text"); List<String> whereToApply = careersPage.verifywhereToApplyHeaderText(); verifyGivenValues(whereToApply, inputs, "headerText", "color", "size", "Where To Apply text "); log.info("Verified Careers Page Where to apply Header Text"); log.info("Verifying Careers Page US Address Text"); List<String> addressUS = careersPage.verifyAddress(); verifyGivenValues(addressUS, inputs, "US", "color_address", "size_address", "US Address text "); log.info("Verified Careers Page US Address Text"); log.info("Verifying Careers Page India Address Text"); List<String> addressIndia = careersPage.verifyAddress1(); verifyGivenValues(addressIndia, inputs, "India", "color_address", "size_address", "US Address text "); log.info("Verified Careers Page India Address Text"); String flagUS = careersPage.getUSFlagImageSRC(); String flagIndia = careersPage.getIndiaFlagImageSRC(); log.info("Verifying Careers Page US & India Logos "); SoftAssertor.assertEquals(flagUS, inputs.getParamMap().get("USFlag"), "US Flag not matched"); SoftAssertor.assertEquals(flagIndia, inputs.getParamMap().get("IndiaFlag"), "India Flag not matched"); log.info("Verified Careers Page US & India Logos"); }catch (AssertionError e) { logDefectOnTestFailure(inputs,e); log.error(">--------------Test case WhereToApply text -------------<"+e.getMessage()); }catch (PageException e) { log.error(">--------------Test case WhereToApply text failed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); }catch(Exception e){ log.error(">--------------Test case WhereToApply text failed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); } finally { SoftAssertor.displayAssertErrors(); } } @Test(dataProvider = "tafDataProvider", dataProviderClass = TafExcelDataProvider.class, priority = 4 , enabled=true ,groups={"Regression","Sanity"}) @ITafExcelDataProviderInputs(excelFile = "file1", excelsheet = "CareersPage", dataKey = "CarrerImage") public void testVerifyCareerBackGroundImage(TestParameters inputs){ try { log.info("Verifying Careers Page Background Image"); String bgImage = careersPage.verifyCareerBackGroundImage(); log.info("bgImage:"+bgImage); String bgCareerImage=null; if(bgImage.length()!=0) bgCareerImage = bgImage.replace("url(","").replace(")","").replaceAll("\\\"", ""); SoftAssertor.assertEquals(bgCareerImage, inputs.getParamMap().get("Image"), "Career Background Image not matched"); log.info("Verified Careers Page Background Image"); }catch (AssertionError e) { logDefectOnTestFailure(inputs,e); log.error(">--------------Test case CareerBackGroundImage failed -------------<"+e.getMessage()); }catch (PageException e) { log.error(">--------------Test case CareerBackGroundImage failed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); }catch(Exception e){ log.error(">--------------Test case CareerBackGroundImage failed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); } finally { SoftAssertor.displayAssertErrors(); } } @Test(dataProvider = "tafDataProvider", dataProviderClass = TafExcelDataProvider.class, priority = 5, enabled=true ,groups={"Regression"}) @ITafExcelDataProviderInputs(excelFile = "file1", excelsheet = "CareersPage", dataKey = "Opportunity") public void testVerifyOpportunity(TestParameters inputs){ try { log.info("Verifying Careers Page Opportunity header"); List<String> oppText = careersPage.getOpportunityText(); verifyGivenValues(oppText, inputs, "Header", "color", "size", "Opportunity text "); List<String> headerText = careersPage.getopportunityHeaderText(); verifyGivenValues(headerText, inputs, "TableHeader", "color_header", "size_header", "Opportunity Listing Headers text "); log.info("Verified Careers Page Opportunity header"); }catch (AssertionError e) { logDefectOnTestFailure(inputs,e); log.error(">--------------Test case Opportunity text -------------<"+e.getMessage()); }catch (PageException e) { log.error(">--------------Test case Opportunity text failed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); }catch(Exception e){ log.error(">--------------Test case Opportunity text failed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); } finally { SoftAssertor.displayAssertErrors(); } } @Test(dataProvider = "tafDataProvider", dataProviderClass = TafExcelDataProvider.class, priority = 6, enabled=true ,groups={"Regression"}) @ITafExcelDataProviderInputs(excelFile = "file1", excelsheet = "CareersPage", dataKey = "OpportunityDesc") public void testVerifyOpportunityDescription(TestParameters inputs){ try { log.info("Verifying Careers Page Opportunity Listing link"); String vfontFamily = null; List<String> descLink = careersPage.getOpportunityDescription(); vfontFamily = getFontFamily(descLink.get(3)); SoftAssertor.assertEquals(descLink.get(1), inputs.getParamMap().get("color"),"Opportunity Listing link font color is Not matched"); SoftAssertor.assertEquals(descLink.get(2), inputs.getParamMap().get("size"),"Opportunity Listing link font size is Not matched"); SoftAssertor.assertEquals(vfontFamily, inputs.getParamMap().get("family"), "Opportunity Listing link font family is Not matched"); log.info("Verified Careers Page Opportunity Listing link"); log.info("Verifying Opportunity Description Right Panel text"); List<String> jobContactText = careersPage.getJobContactDetails(); verifyGivenValues(jobContactText, inputs, "ContactText", "color_cText", "size_cText", "Opportunity Description Right Panel text "); log.info("Verified Opportunity Description Right Panel text"); log.info("Verifying Opportunity Description Right Panel Back To Positions text"); List<String> backToPositions = careersPage.getBackToPositionsLink(); verifyGivenValues(backToPositions, inputs, "BackToPositions", "color_cText", "size_cText", "Opportunity Description Right Panel back To Positions text "); SoftAssertor.assertEquals(backToPositions.get(4), inputs.getParamMap().get("BackToPositions_Header")," Opportunity Description Right Panel back To Positions Link text Not matched"); log.info("Verified Opportunity Description Right Panel Back To Positions text"); log.info("Verifying Opportunity Description Right Panel More Job Positions text"); List<String> moreJobPositions = careersPage.getMoreJobPositionsLink(); verifyGivenValues(moreJobPositions, inputs, "MoreJobPositions", "color_cText", "size_cText", "Opportunity Description Right Panel more Job Positions text "); SoftAssertor.assertEquals(moreJobPositions.get(4), inputs.getParamMap().get("MoreJobPositions_Header")," Opportunity Description Right Panel More Job Positions Link text Not matched"); log.info("Verified Opportunity Description Right Panel More Job Positions text"); }catch (AssertionError e) { logDefectOnTestFailure(inputs,e); log.error(">--------------Test case OpportunityDescription text -------------<"+e.getMessage()); }catch (PageException e) { log.error(">--------------Test case OpportunityDescription text failed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); }catch(Exception e){ log.error(">--------------Test case OpportunityDescription tfailed -------------<"+e.getMessage()); SoftAssertor.addVerificationFailure(e.getMessage()); e.printStackTrace(); } finally { SoftAssertor.displayAssertErrors(); } } public void verifyGivenValues(List<String> actualValues,TestParameters inputs,String header,String color,String size,String msg){ String fontFamily = null; fontFamily = getFontFamily(actualValues.get(3)); SoftAssertor.assertEquals(actualValues.get(0), inputs.getParamMap().get(header), msg+"Not matched"); SoftAssertor.assertEquals(actualValues.get(1), inputs.getParamMap().get(color), msg+" font color is Not matched"); SoftAssertor.assertEquals(actualValues.get(2), inputs.getParamMap().get(size), msg+" font size is Not matched"); SoftAssertor.assertEquals(fontFamily, inputs.getParamMap().get("family"), msg+" font family is Not matched"); } public void logDefectOnTestFailure(TestParameters inputs,AssertionError e){ Jira.setDefectInformation(inputs.getParamMap().get("summary"),inputs.getParamMap().get("description")); careersPage.logAndCreateADefect( TestBedManager.INSTANCE.getDefect(),url3, issueUrl, username, password, keys); SoftAssertor.addVerificationFailure(e.getMessage()); } }
[ "mthakur@etouch.net" ]
mthakur@etouch.net
0b165528fb378a11cf87bd7955b56aba86130989
fca2abbf93eeb51ae90961ee5e2e0d824b17f7f9
/src/edu/jabs/bancoGnomos/interfaz/PanelBoveda.java
3c0fa37c253114b9b8d8d575b2cb6e51976bf90c
[]
no_license
Andres6936/N4-BancoGnomos-Java
941bf17593d9e11a2ca8d5d201735cf0691738aa
b2c9636345201ded583ca3ca8d4e0826f5ce46a7
refs/heads/master
2021-08-08T20:11:19.558119
2017-11-11T03:45:40
2017-11-11T03:45:40
107,825,725
0
0
null
null
null
null
UTF-8
Java
false
false
8,726
java
package edu.jabs.bancoGnomos.interfaz; import java.awt.Color; import java.awt.Dimension; import java.awt.Font; import java.awt.Graphics; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.ArrayList; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JComboBox; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JTextArea; import edu.jabs.bancoGnomos.mundo.Boveda; /** * Panel donde se muestran las opciones para realizar las consultas de la una bóveda. */ public class PanelBoveda extends JPanel implements ActionListener { // ----------------------------------------------------------------- // Constantes // ----------------------------------------------------------------- /** * Comando para la consulta de monedas totales guardadas en una bóveda. */ public static final String CONSULTAR_MONEDAS_BOVEDA = "Consulta monedas bóveda"; /** * Comando para la consulta de monedas de un tipo guardadas en una bóveda.. */ public static final String CONSULTAR_CANTIDAD_TIPO_MONEDA = "Consulta cantidad por tipo de moneda"; /** * Comando para consultar la información de una bóveda. */ public static final String CONSULTA_INFORMACION_BOVEDA = "Consulta información bóveda"; // ----------------------------------------------------------------- // Atributos // ----------------------------------------------------------------- /** * Ventana principal de la aplicación. */ private InterfazBancoGnomos principal; // ----------------------------------------------------------------- // Atributos de la interfaz // ----------------------------------------------------------------- /** * Área de texto donde se muestran el resultados de una consulta. */ private JTextArea textoContenidoPergamino; /** * Etiqueta con la imagen de la llave. */ private JLabel etiquetaLlave; /** * Combo con el listado de las llaves de las bóvedas existentes. */ private JComboBox comboLlaves; /** * Botón para consultar el total de monedas guardadas. */ private JButton botonConsultarMonedasBoveda; /** * Botón para consultar la cantidad de monedas por tipo. */ private JButton botonConsultarCantidadTipoMoneda; /** * Botón para realizar la consulta de información de la bóveda. */ private JButton botonConsultaInformacionBoveda; // ----------------------------------------------------------------- // Constructores // ----------------------------------------------------------------- /** * Constructor del panel. <br> * <b>post: </b> Se construyó el panel. <br> * @param pPrincipal Ventana principal. prin!=null */ public PanelBoveda( InterfazBancoGnomos pPrincipal ) { principal = pPrincipal; setLayout( new GridBagLayout( ) ); textoContenidoPergamino = new JTextArea( ); textoContenidoPergamino.setWrapStyleWord( true ); textoContenidoPergamino.setLineWrap( true ); textoContenidoPergamino.setEditable( false ); textoContenidoPergamino.setOpaque( false ); textoContenidoPergamino.setFont( new Font( "Book Antiqua", Font.BOLD, 16 ) ); textoContenidoPergamino.setPreferredSize( new Dimension( 300, 100 ) ); // Adición de los componentes GridBagConstraints gbc = new GridBagConstraints( ); gbc.gridx = 0; gbc.gridy = 0; gbc.insets = new Insets( 50, 0, 0, 0 ); add( textoContenidoPergamino, gbc ); botonConsultaInformacionBoveda = new JButton( "Ver detalle bóveda" ); botonConsultaInformacionBoveda.setActionCommand( CONSULTA_INFORMACION_BOVEDA ); botonConsultaInformacionBoveda.addActionListener( this ); botonConsultaInformacionBoveda.setPreferredSize( new Dimension( 180, 30 ) ); botonConsultaInformacionBoveda.setBackground( new Color( 255, 197, 73 ) ); gbc = new GridBagConstraints( ); gbc.gridx = 0; gbc.gridy = 1; gbc.insets = new Insets( 0, 0, 5, 0 ); add( botonConsultaInformacionBoveda, gbc ); botonConsultarMonedasBoveda = new JButton( "Ver cantidad monedas" ); botonConsultarMonedasBoveda.setActionCommand( CONSULTAR_MONEDAS_BOVEDA ); botonConsultarMonedasBoveda.addActionListener( this ); botonConsultarMonedasBoveda.setPreferredSize( new Dimension( 180, 30 ) ); botonConsultarMonedasBoveda.setBackground( new Color( 255, 197, 73 ) ); gbc = new GridBagConstraints( ); gbc.gridx = 0; gbc.gridy = 2; gbc.insets = new Insets( 0, 0, 5, 0 ); add( botonConsultarMonedasBoveda, gbc ); botonConsultarCantidadTipoMoneda = new JButton( "Ver cantidad tipo moneda" ); botonConsultarCantidadTipoMoneda.setActionCommand( CONSULTAR_CANTIDAD_TIPO_MONEDA ); botonConsultarCantidadTipoMoneda.addActionListener( this ); botonConsultarCantidadTipoMoneda.setPreferredSize( new Dimension( 180, 30 ) ); botonConsultarCantidadTipoMoneda.setBackground( new Color( 255, 197, 73 ) ); gbc = new GridBagConstraints( ); gbc.gridx = 0; gbc.gridy = 3; add( botonConsultarCantidadTipoMoneda, gbc ); // Panel con las llaves ImageIcon llave = new ImageIcon( "./data/Llave.png" ); JPanel panelLllaves = new JPanel( ); panelLllaves.setOpaque( false ); etiquetaLlave = new JLabel( llave ); etiquetaLlave.setOpaque( false ); panelLllaves.add( etiquetaLlave ); comboLlaves = new JComboBox( ); panelLllaves.add( comboLlaves ); gbc = new GridBagConstraints( ); gbc.gridx = 0; gbc.gridy = 4; gbc.insets = new Insets( 0, 0, 5, 0 ); add( panelLllaves, gbc ); } // ----------------------------------------------------------------- // Métodos // ----------------------------------------------------------------- /** * Muestra el mensaje especificado en el área de texto (pergamino). <br> * @param contenido Contenido del mensaje. contenido!=null */ public void mostrarMensaje( String contenido ) { textoContenidoPergamino.setText( contenido ); } /** * Actualiza las llaves de las bóvedas. <br> * <b>post: </b> Se actualizaron las llaves de las bóvedas existentes. <br> * @param bovedas Bóvedas existentes. bovedas!=null */ public void actualizarBovedas( ArrayList bovedas ) { comboLlaves.removeAllItems( ); for( int cont = 0; cont < bovedas.size( ); cont++ ) { Boveda boveda = ( Boveda )bovedas.get( cont ); int llave = boveda.darLlave( ); comboLlaves.addItem( Integer.toString( llave ) ); } } /** * Retorna la llave que se encuentra seleccionada. <br> * @return La llave seleccionada, -1 en caso de que ninguna llave este seleccionada. */ public int darLlaveSeleccionada( ) { int resul = -1; if( comboLlaves.getSelectedIndex( ) != -1 ) { String llave = ( String )comboLlaves.getSelectedItem( ); resul = Integer.parseInt( llave ); } return resul; } /** * Este método se encarga de pintar el panel y sus componentes, haciendo que haya una imagen en el fondo. * @param g Es la superficie del panel. */ public void paintComponent( Graphics g ) { ImageIcon icon = new ImageIcon( "./data/Pergamino.png" ); g.drawImage( icon.getImage( ), 0, 0, null ); setOpaque( false ); super.paintComponent( g ); } /** * Manejo de los eventos de los botones. * @param evento Acción que generó el evento. */ public void actionPerformed( ActionEvent evento ) { String comando = evento.getActionCommand( ); int llave; if( CONSULTAR_MONEDAS_BOVEDA.equals( comando ) ) { llave = darLlaveSeleccionada( ); principal.consultarMonedasBoveda( llave ); } else if( CONSULTAR_CANTIDAD_TIPO_MONEDA.equals( comando ) ) { llave = darLlaveSeleccionada( ); principal.mostrarDialogoConsultaMonedas( llave ); } else if( CONSULTA_INFORMACION_BOVEDA.equals( comando ) ) { llave = darLlaveSeleccionada( ); principal.consultarInformacionBoveda( llave ); } } }
[ "andres6936@live.com" ]
andres6936@live.com
580496600f650e4ef2335446f445912ad2b3589b
d3e17495c64c7e4341d1d1fc9233191f98a25cf6
/profiler/src/main/java/com/navercorp/pinpoint/profiler/monitor/collector/deadlock/DeadlockMetricCollector.java
4dcb46e2ab86636a8604a00df7ec1cef857bfffa
[ "DOC", "CC-BY-3.0", "GPL-1.0-or-later", "CC-PDDC", "MIT", "CC0-1.0", "GPL-2.0-only", "Apache-2.0", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference" ]
permissive
luceas/pinpoint
b45ff5de9e2dac18735f546722e2816e37602f91
d9482e32dbaab295a02d98e3887bdb3853821b3d
refs/heads/master
2020-03-25T10:55:57.968205
2018-08-06T05:41:13
2018-08-06T07:56:19
143,711,322
1
0
Apache-2.0
2018-08-06T10:11:43
2018-08-06T10:11:42
null
UTF-8
Java
false
false
920
java
/* * Copyright 2017 NAVER Corp. * * 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.navercorp.pinpoint.profiler.monitor.collector.deadlock; import com.navercorp.pinpoint.profiler.monitor.collector.AgentStatMetricCollector; import com.navercorp.pinpoint.thrift.dto.TDeadlock; /** * @author Taejin Koo */ public interface DeadlockMetricCollector extends AgentStatMetricCollector<TDeadlock> { }
[ "hyungil.jeong@navercorp.com" ]
hyungil.jeong@navercorp.com
35aa683fea766ed2e334625ced2423faf9a46544
2f1f883b88c35fbdd7bcdad42b364df465f61279
/ses-app/ses-mobile-rps/src/main/java/com/redescooter/ses/mobile/rps/vo/entrustorder/EntrustOrderProductDTO.java
681c8d3067946db862a16b1440d26cd97d6be11c
[ "MIT" ]
permissive
RedElect/ses-server
bd4a6c6091d063217655ab573422f4cf37c8dcbf
653cda02110cb31a36d8435cc4c72e792467d134
refs/heads/master
2023-06-19T16:16:53.418793
2021-07-19T09:19:25
2021-07-19T09:19:25
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,514
java
package com.redescooter.ses.mobile.rps.vo.entrustorder; import com.redescooter.ses.api.common.vo.base.GeneralResult; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.util.List; /** * 委托单产品信息 DTO * @author assert * @date 2021/1/4 11:11 */ @Data @ApiModel(value = "委托单产品信息") public class EntrustOrderProductDTO extends GeneralResult { @ApiModelProperty(value = "主键id(委托单子单据id)", dataType = "Long") private Long id; @ApiModelProperty(value = "bomId", dataType = "Long") private Long bomId; @ApiModelProperty(value = "名称", dataType = "String") private String name; @ApiModelProperty(value = "产品编号", dataType = "String") private String number; @ApiModelProperty(value = "数量", dataType = "Integer") private Integer qty; @ApiModelProperty(value = "实际发货数量", dataType = "Integer") private Integer consignorQty; @ApiModelProperty(value = "车型(高速、低速) - 车辆委托单使用", dataType = "String") private String groupName; @ApiModelProperty(value = "颜色名称 - 车辆委托单使用", dataType = "String") private String colorName; @ApiModelProperty(value = "是否有序列号 true/false", dataType = "boolean") private Boolean idClass; @ApiModelProperty(value = "产品序列号信息集合对象") private List<EntrustProductSerialNumDTO> productSerialNumList; }
[ "assert@redescooter.com" ]
assert@redescooter.com
cb1de4075caee2b8d69aebbd86ca0e62111045bb
11634dea16c41ca1224e00822cd873ad69111349
/src/repositories/PostRepository.java
ed93ff01f064645b557957018f233b56466b0f5f
[]
no_license
AliqanKDR/Endterm5
f40b78ecd334291fc3ddd7cb7de9bc8fdc95f765
33362970007c8139d44dd988eccb2187fa189c1f
refs/heads/master
2023-03-21T01:04:14.748246
2021-03-12T05:46:05
2021-03-12T05:46:05
345,395,802
1
0
null
null
null
null
UTF-8
Java
false
false
4,742
java
package repositories; import data.interfaces.IDB; import entities.Category; import entities.Post; import repositories.interfaces.IPostRepository; import java.sql.Connection; import java.sql.Date; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.time.LocalDate; import java.util.ArrayList; import java.util.List; public class PostRepository implements IPostRepository { private final IDB db; public PostRepository(IDB db) { this.db = db; } // This method adds post to database @Override public boolean addPost(Post post) { Connection con = null; try { con = db.getConnection(); String sql = "INSERT INTO post (title, description, added_date, category_id) VALUES(?,?,?,?)"; PreparedStatement st = con.prepareStatement(sql); st.setString(1, post.getTitle()); st.setString(2, post.getDescription()); st.setDate(3, Date.valueOf(LocalDate.now())); st.setInt(4, post.getCategory().getId()); st.execute(); return true; } catch (Exception e) { e.printStackTrace(); } return false; } // This method finds post by id and returns it @Override public Post getPost(int id) { Connection con = null; try { con = db.getConnection(); String sql = "SELECT post.id, post.title, post.description, post.added_date, category.id, category.name FROM post INNER JOIN category ON post.category_id=category.id WHERE post.id=?"; PreparedStatement st = con.prepareStatement(sql); st.setInt(1, id); ResultSet rs = st.executeQuery(); if (rs.next()) { Post post = new Post(rs.getInt(1), rs.getString(2), rs.getString(3), rs.getDate(4).toLocalDate(), new Category(rs.getInt(5), rs.getString(6))); return post; } } catch (Exception e) { e.printStackTrace(); } return null; } // This method finds posts by title and returns them @Override public List<Post> getPosts(String title) { Connection con = null; try { con = db.getConnection(); String sql = "SELECT post.id, post.title, post.description, post.added_date, category.id, category.name FROM post INNER JOIN category ON post.category_id=category.id WHERE post.title LIKE '%" + title + "%'"; PreparedStatement st = con.prepareStatement(sql); ResultSet rs = st.executeQuery(); List<Post> posts = new ArrayList<>(); while (rs.next()) { Post post = new Post(rs.getInt(1), rs.getString(2), rs.getString(3), rs.getDate(4).toLocalDate(), new Category(rs.getInt(5), rs.getString(6))); posts.add(post); } return posts; } catch (Exception e) { e.printStackTrace(); } return null; } // This method finds all posts and returns them @Override public List<Post> getAllPosts() { Connection con = null; try { con = db.getConnection(); String sql = "SELECT post.id, post.title, post.description, post.added_date, category.id, category.name FROM post INNER JOIN category ON post.category_id=category.id"; PreparedStatement st = con.prepareStatement(sql); ResultSet rs = st.executeQuery(); List<Post> posts = new ArrayList<>(); while (rs.next()) { Post post = new Post(rs.getInt(1), rs.getString(2), rs.getString(3), rs.getDate(4).toLocalDate(), new Category(rs.getInt(5), rs.getString(6))); posts.add(post); } return posts; } catch (Exception e) { e.printStackTrace(); } return null; } // This method finds post by id and removes it @Override public boolean removePost(int id) { Connection con = null; try { con = db.getConnection(); String sql = "DELETE FROM post WHERE id=?"; PreparedStatement st = con.prepareStatement(sql); st.setInt(1, id); st.execute(); return true; } catch (Exception e) { e.printStackTrace(); } return false; } }
[ "alikan.kdr@gmail.com" ]
alikan.kdr@gmail.com
94c91aa2b0f6abd62525ac64d2b2293094aad19f
9a4ae99ed0f5f79015ac13f301731a58493aecd7
/src/main/java/com/flute/atp/domain/model/report/event/ReportingTerminatedEvent.java
72594c9c62a5696aa489c7dbf910574476c883d2
[]
no_license
PiemonJ/atp
eb935fc975dd11ee7b25db8c1ef61dbe1e633e2e
963ace90c119a6e8723e028f5f7503a8c16c0ded
refs/heads/master
2022-07-03T19:39:51.453725
2019-06-04T04:20:10
2019-06-04T04:20:10
181,145,162
1
0
null
null
null
null
UTF-8
Java
false
false
421
java
package com.flute.atp.domain.model.report.event; import com.flute.atp.common.Category; import com.flute.atp.domain.model.DomainEvent; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Data @NoArgsConstructor @AllArgsConstructor public class ReportingTerminatedEvent extends DomainEvent { public String ruleGroupId; public String flowId; public Category category; }
[ "jiayu8299786" ]
jiayu8299786
5e0c2148a5dfe65ea51daa8a30c09149db72e16d
78f7fd54a94c334ec56f27451688858662e1495e
/partyanalyst-service/trunk/src/main/java/com/itgrids/partyanalyst/dto/VillageBoothElectionVO.java
2567ab46210d8591e7aaca488c02c1665a4255a4
[]
no_license
hymanath/PA
2e8f2ef9e1d3ed99df496761a7b72ec50d25e7ef
d166bf434601f0fbe45af02064c94954f6326fd7
refs/heads/master
2021-09-12T09:06:37.814523
2018-04-13T20:13:59
2018-04-13T20:13:59
129,496,146
1
0
null
null
null
null
UTF-8
Java
false
false
1,003
java
package com.itgrids.partyanalyst.dto; import java.util.List; public class VillageBoothElectionVO extends ResultStatus{ List<String> villageErrors; List<String> hamletErrors; List<String> boothErrors; List<String> dataDuplicateErrors; public List<String> getVillageErrors() { return villageErrors; } public void setVillageErrors(List<String> villageErrors) { this.villageErrors = villageErrors; } public List<String> getHamletErrors() { return hamletErrors; } public void setHamletErrors(List<String> hamletErrors) { this.hamletErrors = hamletErrors; } public List<String> getBoothErrors() { return boothErrors; } public void setBoothErrors(List<String> boothErrors) { this.boothErrors = boothErrors; } public List<String> getDataDuplicateErrors() { return dataDuplicateErrors; } public void setDataDuplicateErrors(List<String> dataDuplicateErrors) { this.dataDuplicateErrors = dataDuplicateErrors; } }
[ "itgrids@b17b186f-d863-de11-8533-00e0815b4126" ]
itgrids@b17b186f-d863-de11-8533-00e0815b4126
4bc5df9d908e6eac6458bf76e5dd87ccf68041cf
0daed982b98fbfcaf43159f4b7ad37aac925f9f6
/JavaSE/day23/src/it/cast_01/MyThreadDemo.java
5ea6bd11e9d8e9db91e96ed249f11310c8926ff5
[]
no_license
panxya/JavaExercise
041592435f45ff68f04e330e4a30226a70481b75
3a48a0ff04e64abef2642485dbbe55903d63b878
refs/heads/master
2020-05-25T20:42:59.985740
2019-06-02T02:00:11
2019-06-02T02:00:11
187,981,553
0
0
null
null
null
null
ISO-8859-7
Java
false
false
213
java
package it.cast_01; public class MyThreadDemo { public static void main(String[] args) { MyThread my1 = new MyThread("ΑΦΑΦ"); MyThread my2 = new MyThread("ΑΦ"); my1.start(); my2.start(); } }
[ "pxy6032@163.com" ]
pxy6032@163.com
018642e2072f9a155170267bf9e36c75a5294c5c
e4a27732938693272cc381fa0c5d255498187810
/src/main/java/com/supertange/community/community/CommunityApplication.java
8b71df833a6d67adf1b93644b12ad6be39069377
[]
no_license
supertange/community
1832f39bd154203324232cc53453f8399c98ab2b
bb1d030b42f782786d73b3dca3c036edac373396
refs/heads/master
2022-07-05T05:39:21.849742
2020-01-23T13:41:05
2020-01-23T13:41:05
232,462,547
2
0
null
2022-06-21T02:39:36
2020-01-08T02:43:47
JavaScript
UTF-8
Java
false
false
536
java
package com.supertange.community.community; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.scheduling.annotation.EnableScheduling; @EnableScheduling @SpringBootApplication @MapperScan("com.supertange.community.community.mapper") public class CommunityApplication { public static void main(String[] args) { SpringApplication.run(CommunityApplication.class, args); } }
[ "supertange@outlook.com" ]
supertange@outlook.com
eaa143a8f09ce32bf50106ad2b98a731831c19a3
4c2d4f32674adf257d6f5a331709b4946307c699
/NeverLand/src/com/jjoe64/graphview/GraphViewDemo.java
b57c11ffde70cdafe07f3625ae4bb9121e1aec6e
[ "Apache-2.0" ]
permissive
jabelai/Neverland
c31a70a8dfc6397534f3942cd25e770defac923d
eaa0976284815e8559bbf25ba59d92a93c2088b2
refs/heads/master
2020-05-16T22:54:27.030549
2014-09-18T16:42:52
2014-09-18T16:42:52
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,088
java
package com.jjoe64.graphview; import android.app.Activity; import android.os.Bundle; import com.jjoe64.graphview.GraphView.GraphViewData; /** * GraphViewDemo creates some dummy data to demonstrate the GraphView component. * * IMPORTANT: For examples take a look at GraphView-Demos (https://github.com/jjoe64/GraphView-Demos) * * Copyright (C) 2011 Jonas Gehring * Licensed under the GNU Lesser General Public License (LGPL) * http://www.gnu.org/licenses/lgpl.html */ public class GraphViewDemo extends Activity { /** * @param savedInstanceState */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); LineGraphView graphView = new LineGraphView( this , "GraphViewDemo" ); graphView.addSeries(new GraphViewSeries(new GraphViewData[] { new GraphViewData(1, 2.0d) , new GraphViewData(2, 1.5d) , new GraphViewData(2.5, 3.0d) , new GraphViewData(3, 2.5d) , new GraphViewData(4, 1.0d) , new GraphViewData(5, 3.0d) })); setContentView(graphView); } }
[ "lailong.ll@alibaba-inc.com" ]
lailong.ll@alibaba-inc.com
446b5fbb843ed3690c6b5ef5f55da5544826244f
ea40358345c7bc1f6886c10ddb56a43f49e985b1
/src/main/java/org/fabri1983/refactorexample/joblogger/enhanced/implementation/CompoundJobLogger.java
4b41c3a9b4c80a8061918792242ae9e11d37597e
[]
no_license
fabri1983/refactor-example
fd87ca91cb349a576bec3e7c3d9c16f9ce9dc168
0b466b799091f8eeaf2246b9e88a56a8fbdbf763
refs/heads/master
2021-12-28T16:45:45.000372
2021-12-20T18:25:56
2021-12-20T18:25:56
209,881,885
2
1
null
2020-10-13T16:11:43
2019-09-20T21:11:57
Java
UTF-8
Java
false
false
778
java
package org.fabri1983.refactorexample.joblogger.enhanced.implementation; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.fabri1983.refactorexample.joblogger.enhanced.contract.IEnhancedJobLogger; public class CompoundJobLogger implements IEnhancedJobLogger { private List<IEnhancedJobLogger> jobLoggers = Collections.emptyList(); public CompoundJobLogger(IEnhancedJobLogger[] loggers) { this.jobLoggers = Arrays.asList(loggers); } @Override public void info(String message) { jobLoggers.forEach( l -> l.info(message) ); } @Override public void warn(String message) { jobLoggers.forEach( l -> l.warn(message) ); } @Override public void error(String message) { jobLoggers.forEach( l -> l.error(message) ); } }
[ "fabri1983@gmail.com" ]
fabri1983@gmail.com
dd59eba0dccdd3967e26bc1c47e9c61818ebec19
7f98874cedb0e350c3a15c9fda1cbf15a659d45a
/src/com/codecool/acsbencetamas/pa/ant/Soldier.java
2c85c636b90828b1c29f04b36eac3aa7ae580c5f
[]
no_license
acsBenceTamas/PA-practice-Ant-Colony
c5ce39d4525e4cc8e47986595cd71c88a89e7c43
eab5cf8974667924cd3e1727a0a86a110fd06f22
refs/heads/master
2020-05-02T05:55:42.503004
2019-03-26T12:20:08
2019-03-26T12:20:08
177,782,937
0
0
null
null
null
null
UTF-8
Java
false
false
878
java
package com.codecool.acsbencetamas.pa.ant; public class Soldier extends Ant { private int direction; Soldier(Colony colony) { super(colony); direction = Util.randomBetween(0,3); } @Override void handleTurn() { if (colony.isThereAWasp()) { pursueWasps(); } else { patrol(); } } private Wasp getClosestWasp() { return colony.getClosestWasp(this); } private void pursueWasps() { Wasp closestWasp = getClosestWasp(); if (Util.getDistance(this, closestWasp) == 0) { closestWasp.kill(); System.out.println("HAJIME"); } else moveTowards(closestWasp); } private void patrol() { Cardinal cardinal = Cardinal.values()[direction]; move(cardinal); direction = (direction + 1)%4; } }
[ "acs.bence.tamas@gmail.com" ]
acs.bence.tamas@gmail.com
c1f70ccb3e0aa9634c3c52bd0ea219dab4c398d9
fbaab79b4291c51bbca4908d624d92a4d27d4257
/app/src/main/java/com/a007/robot/icanhelp/blogActivity/BlogActivity.java
381a5e40a0f6992831e1cec2ca2a3238f84b00cf
[ "Apache-2.0" ]
permissive
cherry18989/ICanHelp
57527c6338e187bbc9f8feee4f3e972a0b62956d
05585b179da02d9a4ec879bc21aa538af35400b5
refs/heads/master
2021-01-22T19:59:29.813224
2017-03-18T09:17:08
2017-03-18T09:17:08
85,267,335
0
0
null
null
null
null
UTF-8
Java
false
false
355
java
package com.a007.robot.icanhelp.blogActivity; import android.app.Activity; import android.os.Bundle; import com.a007.robot.icanhelp.R; public class BlogActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_blog); } }
[ "cherry18989@163.com" ]
cherry18989@163.com
e7fa69735c8dd36aab426fad496336a7a7f7d353
19b1ed801a2453c4f93e758ee4e2c39cb0fbe913
/RemoveDuplicatesFromSortedArray_1.java
2c8a44d1bc118cf8dbc8af628ab1422b1c201569
[]
no_license
guaguahuahua/Leetcode
c1ea867b98f2e493c3686fa9b8d089af5ecccecc
95b5554b6d8e44cd0c4fe4e23b316517791dd1a7
refs/heads/master
2021-01-23T01:56:09.973798
2017-04-07T14:26:12
2017-04-07T14:26:12
85,947,329
0
0
null
null
null
null
UTF-8
Java
false
false
905
java
package com.xjtuse.easy; public class RemoveDuplicatesFromSortedArray_1 { public static int removeDuplicates(int []nums){ if(nums.length==0){ System.out.print(0); return 0; } int i=0,length=1,total=0; for(int j=1;j<nums.length;j++){ if(nums[i]==nums[j]){ length++; }else{ if(length>2){ total+=2; i+=2; nums[i]=nums[j]; length=1; }else{ total+=length; i+=length; nums[i]=nums[j]; length=1; } } } total+=length>2?2:length; System.out.println("length:"+total); for(int K:nums){ System.out.print(K+" "); } return total; } public static void main(String[] args) { // TODO Auto-generated method stub // int []nums={1,1,1,2,2,3}; // int []nums={1,1,1,2,2,2}; // int []nums={1,2}; // int []nums={1,1,1,2}; // int []nums={1,1,1,1,1,1,1,1,1}; int []nums={1,1,1,1,3,3}; removeDuplicates(nums); } }
[ "dante.zyd@gmail.com" ]
dante.zyd@gmail.com
a7e8e5203771141496d2df3f62240f4d45b4a78c
fd2f4d3d54f12ee633a8bf27c98694ed6a4acecc
/app/build/generated/source/r/androidTest/debug/com/example/mobilesafe/test/R.java
bc31ed7e9276f50b7343046797e06247614afb5e
[]
no_license
Jospace/mobilesafe1
acba738a4ce6dc4f9fa3b390e2f6a879ca6d22d6
a52cb0e2693ec7ec12d6c523f8616b418c67b952
refs/heads/master
2020-03-23T11:34:00.225459
2018-07-19T03:21:43
2018-07-19T03:21:43
141,510,453
1
0
null
2018-07-19T03:07:11
2018-07-19T01:49:39
Java
UTF-8
Java
false
false
591,002
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.example.mobilesafe.test; 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 tooltip_enter=0x7f01000a; public static final int tooltip_exit=0x7f01000b; } public static final class attr { /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020000; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020001; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020002; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020003; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020004; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020005; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020006; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020007; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020008; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020009; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02000f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020010; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020011; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020012; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020013; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020014; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020015; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020016; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020017; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020018; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020019; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02001a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02001b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02001c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02001d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02001e; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionProviderClass=0x7f02001f; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionViewClass=0x7f020020; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020021; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020022; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int alertDialogCenterButtons=0x7f020023; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020024; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020025; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int allowStacking=0x7f020026; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int alpha=0x7f020027; /** * <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=0x7f020028; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020029; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02002a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02002b; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02002c; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02002d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02002e; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02002f; /** * <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>uniform</td><td>1</td><td></td></tr> * </table> */ public static final int autoSizeTextType=0x7f020030; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020031; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020032; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020033; /** * <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=0x7f020034; /** * <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 backgroundTintMode=0x7f020035; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020036; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int barrierAllowsGoneWidgets=0x7f020037; /** * <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>3</td><td></td></tr> * <tr><td>end</td><td>6</td><td></td></tr> * <tr><td>left</td><td>0</td><td></td></tr> * <tr><td>right</td><td>1</td><td></td></tr> * <tr><td>start</td><td>5</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> */ public static final int barrierDirection=0x7f020038; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020039; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02003a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02003b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02003c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02003d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02003e; /** * <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>top</td><td>30</td><td></td></tr> * </table> */ public static final int buttonGravity=0x7f02003f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020040; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020041; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020042; /** * <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=0x7f020043; /** * <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 buttonTintMode=0x7f020044; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int chainUseRtl=0x7f020045; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020046; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020047; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020048; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020049; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int collapseContentDescription=0x7f02004a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02004b; /** * <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=0x7f02004c; /** * <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=0x7f02004d; /** * <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=0x7f02004e; /** * <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=0x7f02004f; /** * <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=0x7f020050; /** * <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=0x7f020051; /** * <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=0x7f020052; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020053; /** * <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=0x7f020054; /** * <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=0x7f020055; /** * <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=0x7f020056; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020057; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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 constraintSet=0x7f020058; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int constraint_referenced_ids=0x7f020059; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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 content=0x7f02005a; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int contentDescription=0x7f02005b; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02005c; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02005d; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02005e; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02005f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020060; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020061; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020062; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020063; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int defaultQueryHint=0x7f020064; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020065; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020066; /** * <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=0x7f020067; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020068; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020069; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02006a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02006b; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02006c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02006d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02006e; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02006f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020070; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020071; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020072; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020073; /** * <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>gone</td><td>0</td><td></td></tr> * <tr><td>invisible</td><td>1</td><td></td></tr> * </table> */ public static final int emptyVisibility=0x7f020074; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020075; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020076; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontFamily=0x7f020077; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderAuthority=0x7f020078; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020079; /** * <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></td></tr> * <tr><td>blocking</td><td>0</td><td></td></tr> * </table> */ public static final int fontProviderFetchStrategy=0x7f02007a; /** * <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></td></tr> * </table> */ public static final int fontProviderFetchTimeout=0x7f02007b; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderPackage=0x7f02007c; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderQuery=0x7f02007d; /** * <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=0x7f02007e; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int fontWeight=0x7f02007f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020080; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020081; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020082; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnContentScroll=0x7f020083; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020084; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020085; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020086; /** * <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=0x7f020087; /** * <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 iconTintMode=0x7f020088; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int iconifiedByDefault=0x7f020089; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02008a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02008b; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int initialActivityCount=0x7f02008c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int isLightTheme=0x7f02008d; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02008e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02008f; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int layout_constrainedHeight=0x7f020090; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int layout_constrainedWidth=0x7f020091; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintBaseline_creator=0x7f020092; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBaseline_toBaselineOf=0x7f020093; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintBottom_creator=0x7f020094; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBottom_toBottomOf=0x7f020095; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBottom_toTopOf=0x7f020096; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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_constraintCircle=0x7f020097; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintCircleAngle=0x7f020098; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_constraintCircleRadius=0x7f020099; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layout_constraintDimensionRatio=0x7f02009a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintEnd_toEndOf=0x7f02009b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintEnd_toStartOf=0x7f02009c; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_constraintGuide_begin=0x7f02009d; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_constraintGuide_end=0x7f02009e; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintGuide_percent=0x7f02009f; /** * <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>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintHeight_default=0x7f0200a0; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintHeight_max=0x7f0200a1; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintHeight_min=0x7f0200a2; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHeight_percent=0x7f0200a3; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHorizontal_bias=0x7f0200a4; /** * <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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintHorizontal_chainStyle=0x7f0200a5; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHorizontal_weight=0x7f0200a6; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintLeft_creator=0x7f0200a7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintLeft_toLeftOf=0x7f0200a8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintLeft_toRightOf=0x7f0200a9; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintRight_creator=0x7f0200aa; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintRight_toLeftOf=0x7f0200ab; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintRight_toRightOf=0x7f0200ac; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintStart_toEndOf=0x7f0200ad; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintStart_toStartOf=0x7f0200ae; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintTop_creator=0x7f0200af; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintTop_toBottomOf=0x7f0200b0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>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>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintTop_toTopOf=0x7f0200b1; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintVertical_bias=0x7f0200b2; /** * <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>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintVertical_chainStyle=0x7f0200b3; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintVertical_weight=0x7f0200b4; /** * <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>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintWidth_default=0x7f0200b5; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintWidth_max=0x7f0200b6; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintWidth_min=0x7f0200b7; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintWidth_percent=0x7f0200b8; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_editor_absoluteX=0x7f0200b9; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_editor_absoluteY=0x7f0200ba; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_goneMarginBottom=0x7f0200bb; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_goneMarginEnd=0x7f0200bc; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_goneMarginLeft=0x7f0200bd; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_goneMarginRight=0x7f0200be; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_goneMarginStart=0x7f0200bf; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 layout_goneMarginTop=0x7f0200c0; /** * <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>barrier</td><td>2</td><td></td></tr> * <tr><td>chains</td><td>4</td><td></td></tr> * <tr><td>dimensions</td><td>8</td><td></td></tr> * <tr><td>direct</td><td>1</td><td>for now only direct & barriers</td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>standard</td><td>3</td><td></td></tr> * </table> */ public static final int layout_optimizationLevel=0x7f0200c1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200c2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200c3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200c4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200c5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200c6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200c7; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200c8; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200c9; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200ca; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200cb; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200cc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200cd; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int logoDescription=0x7f0200ce; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200cf; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int measureWithLargestChild=0x7f0200d0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200d1; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int navigationContentDescription=0x7f0200d2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200d3; /** * <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></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>tabMode</td><td>2</td><td></td></tr> * </table> */ public static final int navigationMode=0x7f0200d4; /** * <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=0x7f0200d5; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int overlapAnchor=0x7f0200d6; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200d7; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200d8; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200d9; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200da; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200db; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200dc; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200dd; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200de; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200df; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e0; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int preserveIconSpacing=0x7f0200e1; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0200e2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e4; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int queryHint=0x7f0200e5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200e9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200ea; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200eb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200ec; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200ed; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200ee; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200ef; /** * <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></td></tr> * <tr><td>collapseActionView</td><td>8</td><td></td></tr> * <tr><td>ifRoom</td><td>1</td><td></td></tr> * <tr><td>never</td><td>0</td><td></td></tr> * <tr><td>withText</td><td>4</td><td></td></tr> * </table> */ public static final int showAsAction=0x7f0200f0; /** * <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=0x7f0200f1; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showText=0x7f0200f2; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showTitle=0x7f0200f3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200f4; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int spinBars=0x7f0200f5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200f6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200f7; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int splitTrack=0x7f0200f8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200f9; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_above_anchor=0x7f0200fa; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200fb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200fc; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int subtitle=0x7f0200fd; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f0200fe; /** * <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=0x7f0200ff; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020100; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020101; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020102; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020103; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020104; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020105; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020106; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020107; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020108; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020109; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02010a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02010b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02010c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02010d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02010e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02010f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020110; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020111; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020112; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020113; /** * <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=0x7f020114; /** * <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 thumbTintMode=0x7f020115; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020116; /** * <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=0x7f020117; /** * <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 tickMarkTintMode=0x7f020118; /** * <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=0x7f020119; /** * <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 tintMode=0x7f02011a; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int title=0x7f02011b; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02011c; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02011d; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02011e; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f02011f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020120; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 titleMargins=0x7f020121; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020122; /** * <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=0x7f020123; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020124; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020125; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020126; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020127; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f020128; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int tooltipText=0x7f020129; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02012a; /** * <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=0x7f02012b; /** * <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 trackTintMode=0x7f02012c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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=0x7f02012d; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBar=0x7f02012e; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBarOverlay=0x7f02012f; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionModeOverlay=0x7f020130; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020131; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020132; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020133; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020134; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020135; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f020136; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowNoTitle=0x7f020137; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f030000; public static final int abc_allow_stacked_button_bar=0x7f030001; public static final int abc_config_actionMenuItemAllCaps=0x7f030002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f030003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f030004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f040000; public static final int abc_background_cache_hint_selector_material_light=0x7f040001; public static final int abc_btn_colored_borderless_text_material=0x7f040002; public static final int abc_btn_colored_text_material=0x7f040003; public static final int abc_color_highlight_material=0x7f040004; public static final int abc_hint_foreground_material_dark=0x7f040005; public static final int abc_hint_foreground_material_light=0x7f040006; public static final int abc_input_method_navigation_guard=0x7f040007; public static final int abc_primary_text_disable_only_material_dark=0x7f040008; public static final int abc_primary_text_disable_only_material_light=0x7f040009; public static final int abc_primary_text_material_dark=0x7f04000a; public static final int abc_primary_text_material_light=0x7f04000b; public static final int abc_search_url_text=0x7f04000c; public static final int abc_search_url_text_normal=0x7f04000d; public static final int abc_search_url_text_pressed=0x7f04000e; public static final int abc_search_url_text_selected=0x7f04000f; public static final int abc_secondary_text_material_dark=0x7f040010; public static final int abc_secondary_text_material_light=0x7f040011; public static final int abc_tint_btn_checkable=0x7f040012; public static final int abc_tint_default=0x7f040013; public static final int abc_tint_edittext=0x7f040014; public static final int abc_tint_seek_thumb=0x7f040015; public static final int abc_tint_spinner=0x7f040016; public static final int abc_tint_switch_track=0x7f040017; public static final int accent_material_dark=0x7f040018; public static final int accent_material_light=0x7f040019; public static final int background_floating_material_dark=0x7f04001a; public static final int background_floating_material_light=0x7f04001b; public static final int background_material_dark=0x7f04001c; public static final int background_material_light=0x7f04001d; public static final int bright_foreground_disabled_material_dark=0x7f04001e; public static final int bright_foreground_disabled_material_light=0x7f04001f; public static final int bright_foreground_inverse_material_dark=0x7f040020; public static final int bright_foreground_inverse_material_light=0x7f040021; public static final int bright_foreground_material_dark=0x7f040022; public static final int bright_foreground_material_light=0x7f040023; public static final int button_material_dark=0x7f040024; public static final int button_material_light=0x7f040025; public static final int dim_foreground_disabled_material_dark=0x7f040026; public static final int dim_foreground_disabled_material_light=0x7f040027; public static final int dim_foreground_material_dark=0x7f040028; public static final int dim_foreground_material_light=0x7f040029; public static final int error_color_material=0x7f04002a; public static final int foreground_material_dark=0x7f04002b; public static final int foreground_material_light=0x7f04002c; public static final int highlighted_text_material_dark=0x7f04002d; public static final int highlighted_text_material_light=0x7f04002e; public static final int material_blue_grey_800=0x7f04002f; public static final int material_blue_grey_900=0x7f040030; public static final int material_blue_grey_950=0x7f040031; public static final int material_deep_teal_200=0x7f040032; public static final int material_deep_teal_500=0x7f040033; public static final int material_grey_100=0x7f040034; public static final int material_grey_300=0x7f040035; public static final int material_grey_50=0x7f040036; public static final int material_grey_600=0x7f040037; public static final int material_grey_800=0x7f040038; public static final int material_grey_850=0x7f040039; public static final int material_grey_900=0x7f04003a; public static final int notification_action_color_filter=0x7f04003b; public static final int notification_icon_bg_color=0x7f04003c; public static final int notification_material_background_media_default_color=0x7f04003d; public static final int primary_dark_material_dark=0x7f04003e; public static final int primary_dark_material_light=0x7f04003f; public static final int primary_material_dark=0x7f040040; public static final int primary_material_light=0x7f040041; public static final int primary_text_default_material_dark=0x7f040042; public static final int primary_text_default_material_light=0x7f040043; public static final int primary_text_disabled_material_dark=0x7f040044; public static final int primary_text_disabled_material_light=0x7f040045; public static final int ripple_material_dark=0x7f040046; public static final int ripple_material_light=0x7f040047; public static final int secondary_text_default_material_dark=0x7f040048; public static final int secondary_text_default_material_light=0x7f040049; public static final int secondary_text_disabled_material_dark=0x7f04004a; public static final int secondary_text_disabled_material_light=0x7f04004b; public static final int switch_thumb_disabled_material_dark=0x7f04004c; public static final int switch_thumb_disabled_material_light=0x7f04004d; public static final int switch_thumb_material_dark=0x7f04004e; public static final int switch_thumb_material_light=0x7f04004f; public static final int switch_thumb_normal_material_dark=0x7f040050; public static final int switch_thumb_normal_material_light=0x7f040051; public static final int tooltip_background_dark=0x7f040052; public static final int tooltip_background_light=0x7f040053; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f050000; public static final int abc_action_bar_content_inset_with_nav=0x7f050001; public static final int abc_action_bar_default_height_material=0x7f050002; public static final int abc_action_bar_default_padding_end_material=0x7f050003; public static final int abc_action_bar_default_padding_start_material=0x7f050004; public static final int abc_action_bar_elevation_material=0x7f050005; public static final int abc_action_bar_icon_vertical_padding_material=0x7f050006; public static final int abc_action_bar_overflow_padding_end_material=0x7f050007; public static final int abc_action_bar_overflow_padding_start_material=0x7f050008; public static final int abc_action_bar_progress_bar_size=0x7f050009; public static final int abc_action_bar_stacked_max_height=0x7f05000a; public static final int abc_action_bar_stacked_tab_max_width=0x7f05000b; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05000c; public static final int abc_action_bar_subtitle_top_margin_material=0x7f05000d; public static final int abc_action_button_min_height_material=0x7f05000e; public static final int abc_action_button_min_width_material=0x7f05000f; public static final int abc_action_button_min_width_overflow_material=0x7f050010; public static final int abc_alert_dialog_button_bar_height=0x7f050011; public static final int abc_button_inset_horizontal_material=0x7f050012; public static final int abc_button_inset_vertical_material=0x7f050013; public static final int abc_button_padding_horizontal_material=0x7f050014; public static final int abc_button_padding_vertical_material=0x7f050015; public static final int abc_cascading_menus_min_smallest_width=0x7f050016; public static final int abc_config_prefDialogWidth=0x7f050017; public static final int abc_control_corner_material=0x7f050018; public static final int abc_control_inset_material=0x7f050019; public static final int abc_control_padding_material=0x7f05001a; public static final int abc_dialog_fixed_height_major=0x7f05001b; public static final int abc_dialog_fixed_height_minor=0x7f05001c; public static final int abc_dialog_fixed_width_major=0x7f05001d; public static final int abc_dialog_fixed_width_minor=0x7f05001e; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f05001f; public static final int abc_dialog_list_padding_top_no_title=0x7f050020; public static final int abc_dialog_min_width_major=0x7f050021; public static final int abc_dialog_min_width_minor=0x7f050022; public static final int abc_dialog_padding_material=0x7f050023; public static final int abc_dialog_padding_top_material=0x7f050024; public static final int abc_dialog_title_divider_material=0x7f050025; public static final int abc_disabled_alpha_material_dark=0x7f050026; public static final int abc_disabled_alpha_material_light=0x7f050027; public static final int abc_dropdownitem_icon_width=0x7f050028; public static final int abc_dropdownitem_text_padding_left=0x7f050029; public static final int abc_dropdownitem_text_padding_right=0x7f05002a; public static final int abc_edit_text_inset_bottom_material=0x7f05002b; public static final int abc_edit_text_inset_horizontal_material=0x7f05002c; public static final int abc_edit_text_inset_top_material=0x7f05002d; public static final int abc_floating_window_z=0x7f05002e; public static final int abc_list_item_padding_horizontal_material=0x7f05002f; public static final int abc_panel_menu_list_width=0x7f050030; public static final int abc_progress_bar_height_material=0x7f050031; public static final int abc_search_view_preferred_height=0x7f050032; public static final int abc_search_view_preferred_width=0x7f050033; public static final int abc_seekbar_track_background_height_material=0x7f050034; public static final int abc_seekbar_track_progress_height_material=0x7f050035; public static final int abc_select_dialog_padding_start_material=0x7f050036; public static final int abc_switch_padding=0x7f050037; public static final int abc_text_size_body_1_material=0x7f050038; public static final int abc_text_size_body_2_material=0x7f050039; public static final int abc_text_size_button_material=0x7f05003a; public static final int abc_text_size_caption_material=0x7f05003b; public static final int abc_text_size_display_1_material=0x7f05003c; public static final int abc_text_size_display_2_material=0x7f05003d; public static final int abc_text_size_display_3_material=0x7f05003e; public static final int abc_text_size_display_4_material=0x7f05003f; public static final int abc_text_size_headline_material=0x7f050040; public static final int abc_text_size_large_material=0x7f050041; public static final int abc_text_size_medium_material=0x7f050042; public static final int abc_text_size_menu_header_material=0x7f050043; public static final int abc_text_size_menu_material=0x7f050044; public static final int abc_text_size_small_material=0x7f050045; public static final int abc_text_size_subhead_material=0x7f050046; public static final int abc_text_size_subtitle_material_toolbar=0x7f050047; public static final int abc_text_size_title_material=0x7f050048; public static final int abc_text_size_title_material_toolbar=0x7f050049; public static final int compat_button_inset_horizontal_material=0x7f05004a; public static final int compat_button_inset_vertical_material=0x7f05004b; public static final int compat_button_padding_horizontal_material=0x7f05004c; public static final int compat_button_padding_vertical_material=0x7f05004d; public static final int compat_control_corner_material=0x7f05004e; public static final int disabled_alpha_material_dark=0x7f05004f; public static final int disabled_alpha_material_light=0x7f050050; public static final int highlight_alpha_material_colored=0x7f050051; public static final int highlight_alpha_material_dark=0x7f050052; public static final int highlight_alpha_material_light=0x7f050053; public static final int hint_alpha_material_dark=0x7f050054; public static final int hint_alpha_material_light=0x7f050055; public static final int hint_pressed_alpha_material_dark=0x7f050056; public static final int hint_pressed_alpha_material_light=0x7f050057; public static final int notification_action_icon_size=0x7f050058; public static final int notification_action_text_size=0x7f050059; public static final int notification_big_circle_margin=0x7f05005a; public static final int notification_content_margin_start=0x7f05005b; public static final int notification_large_icon_height=0x7f05005c; public static final int notification_large_icon_width=0x7f05005d; public static final int notification_main_column_padding_top=0x7f05005e; public static final int notification_media_narrow_margin=0x7f05005f; public static final int notification_right_icon_size=0x7f050060; public static final int notification_right_side_padding_top=0x7f050061; public static final int notification_small_icon_background_padding=0x7f050062; public static final int notification_small_icon_size_as_large=0x7f050063; public static final int notification_subtext_size=0x7f050064; public static final int notification_top_pad=0x7f050065; public static final int notification_top_pad_large_text=0x7f050066; public static final int tooltip_corner_radius=0x7f050067; public static final int tooltip_horizontal_padding=0x7f050068; public static final int tooltip_margin=0x7f050069; public static final int tooltip_precise_anchor_extra_offset=0x7f05006a; public static final int tooltip_precise_anchor_threshold=0x7f05006b; public static final int tooltip_vertical_padding=0x7f05006c; public static final int tooltip_y_offset_non_touch=0x7f05006d; public static final int tooltip_y_offset_touch=0x7f05006e; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f060000; public static final int abc_action_bar_item_background_material=0x7f060001; public static final int abc_btn_borderless_material=0x7f060002; public static final int abc_btn_check_material=0x7f060003; public static final int abc_btn_check_to_on_mtrl_000=0x7f060004; public static final int abc_btn_check_to_on_mtrl_015=0x7f060005; public static final int abc_btn_colored_material=0x7f060006; public static final int abc_btn_default_mtrl_shape=0x7f060007; public static final int abc_btn_radio_material=0x7f060008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f060009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f06000a; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f06000b; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f06000c; public static final int abc_cab_background_internal_bg=0x7f06000d; public static final int abc_cab_background_top_material=0x7f06000e; public static final int abc_cab_background_top_mtrl_alpha=0x7f06000f; public static final int abc_control_background_material=0x7f060010; public static final int abc_dialog_material_background=0x7f060011; public static final int abc_edit_text_material=0x7f060012; public static final int abc_ic_ab_back_material=0x7f060013; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f060014; public static final int abc_ic_clear_material=0x7f060015; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f060016; public static final int abc_ic_go_search_api_material=0x7f060017; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f060018; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f060019; public static final int abc_ic_menu_overflow_material=0x7f06001a; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f06001b; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f06001c; public static final int abc_ic_menu_share_mtrl_alpha=0x7f06001d; public static final int abc_ic_search_api_material=0x7f06001e; public static final int abc_ic_star_black_16dp=0x7f06001f; public static final int abc_ic_star_black_36dp=0x7f060020; public static final int abc_ic_star_black_48dp=0x7f060021; public static final int abc_ic_star_half_black_16dp=0x7f060022; public static final int abc_ic_star_half_black_36dp=0x7f060023; public static final int abc_ic_star_half_black_48dp=0x7f060024; public static final int abc_ic_voice_search_api_material=0x7f060025; public static final int abc_item_background_holo_dark=0x7f060026; public static final int abc_item_background_holo_light=0x7f060027; public static final int abc_list_divider_mtrl_alpha=0x7f060028; public static final int abc_list_focused_holo=0x7f060029; public static final int abc_list_longpressed_holo=0x7f06002a; public static final int abc_list_pressed_holo_dark=0x7f06002b; public static final int abc_list_pressed_holo_light=0x7f06002c; public static final int abc_list_selector_background_transition_holo_dark=0x7f06002d; public static final int abc_list_selector_background_transition_holo_light=0x7f06002e; public static final int abc_list_selector_disabled_holo_dark=0x7f06002f; public static final int abc_list_selector_disabled_holo_light=0x7f060030; public static final int abc_list_selector_holo_dark=0x7f060031; public static final int abc_list_selector_holo_light=0x7f060032; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f060033; public static final int abc_popup_background_mtrl_mult=0x7f060034; public static final int abc_ratingbar_indicator_material=0x7f060035; public static final int abc_ratingbar_material=0x7f060036; public static final int abc_ratingbar_small_material=0x7f060037; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f060038; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f060039; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f06003a; public static final int abc_scrubber_primary_mtrl_alpha=0x7f06003b; public static final int abc_scrubber_track_mtrl_alpha=0x7f06003c; public static final int abc_seekbar_thumb_material=0x7f06003d; public static final int abc_seekbar_tick_mark_material=0x7f06003e; public static final int abc_seekbar_track_material=0x7f06003f; public static final int abc_spinner_mtrl_am_alpha=0x7f060040; public static final int abc_spinner_textfield_background_material=0x7f060041; public static final int abc_switch_thumb_material=0x7f060042; public static final int abc_switch_track_mtrl_alpha=0x7f060043; public static final int abc_tab_indicator_material=0x7f060044; public static final int abc_tab_indicator_mtrl_alpha=0x7f060045; public static final int abc_text_cursor_material=0x7f060046; public static final int abc_text_select_handle_left_mtrl_dark=0x7f060047; public static final int abc_text_select_handle_left_mtrl_light=0x7f060048; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f060049; public static final int abc_text_select_handle_middle_mtrl_light=0x7f06004a; public static final int abc_text_select_handle_right_mtrl_dark=0x7f06004b; public static final int abc_text_select_handle_right_mtrl_light=0x7f06004c; public static final int abc_textfield_activated_mtrl_alpha=0x7f06004d; public static final int abc_textfield_default_mtrl_alpha=0x7f06004e; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f06004f; public static final int abc_textfield_search_default_mtrl_alpha=0x7f060050; public static final int abc_textfield_search_material=0x7f060051; public static final int abc_vector_test=0x7f060052; public static final int notification_action_background=0x7f060053; public static final int notification_bg=0x7f060054; public static final int notification_bg_low=0x7f060055; public static final int notification_bg_low_normal=0x7f060056; public static final int notification_bg_low_pressed=0x7f060057; public static final int notification_bg_normal=0x7f060058; public static final int notification_bg_normal_pressed=0x7f060059; public static final int notification_icon_background=0x7f06005a; public static final int notification_template_icon_bg=0x7f06005b; public static final int notification_template_icon_low_bg=0x7f06005c; public static final int notification_tile_bg=0x7f06005d; public static final int notify_panel_notification_icon_bg=0x7f06005e; public static final int tooltip_frame_dark=0x7f06005f; public static final int tooltip_frame_light=0x7f060060; } public static final class id { public static final int ALT=0x7f070000; public static final int CTRL=0x7f070001; public static final int FUNCTION=0x7f070002; public static final int META=0x7f070003; public static final int SHIFT=0x7f070004; public static final int SYM=0x7f070005; public static final int action0=0x7f070006; public static final int action_bar=0x7f070007; public static final int action_bar_activity_content=0x7f070008; public static final int action_bar_container=0x7f070009; public static final int action_bar_root=0x7f07000a; public static final int action_bar_spinner=0x7f07000b; public static final int action_bar_subtitle=0x7f07000c; public static final int action_bar_title=0x7f07000d; public static final int action_container=0x7f07000e; public static final int action_context_bar=0x7f07000f; public static final int action_divider=0x7f070010; public static final int action_image=0x7f070011; public static final int action_menu_divider=0x7f070012; public static final int action_menu_presenter=0x7f070013; public static final int action_mode_bar=0x7f070014; public static final int action_mode_bar_stub=0x7f070015; public static final int action_mode_close_button=0x7f070016; public static final int action_text=0x7f070017; public static final int actions=0x7f070018; public static final int activity_chooser_view_content=0x7f070019; public static final int add=0x7f07001a; public static final int alertTitle=0x7f07001b; public static final int always=0x7f07001c; public static final int async=0x7f07001d; public static final int barrier=0x7f07001e; public static final int beginning=0x7f07001f; public static final int blocking=0x7f070020; public static final int bottom=0x7f070021; public static final int buttonPanel=0x7f070022; public static final int cancel_action=0x7f070023; public static final int chains=0x7f070024; public static final int checkbox=0x7f070025; public static final int chronometer=0x7f070026; public static final int collapseActionView=0x7f070027; public static final int contentPanel=0x7f070028; public static final int custom=0x7f070029; public static final int customPanel=0x7f07002a; public static final int decor_content_parent=0x7f07002b; public static final int default_activity_button=0x7f07002c; public static final int dimensions=0x7f07002d; public static final int direct=0x7f07002e; public static final int disableHome=0x7f07002f; public static final int edit_query=0x7f070030; public static final int end=0x7f070031; public static final int end_padder=0x7f070032; public static final int expand_activities_button=0x7f070033; public static final int expanded_menu=0x7f070034; public static final int forever=0x7f070035; public static final int gone=0x7f070036; public static final int home=0x7f070037; public static final int homeAsUp=0x7f070038; public static final int icon=0x7f070039; public static final int icon_group=0x7f07003a; public static final int ifRoom=0x7f07003b; public static final int image=0x7f07003c; public static final int info=0x7f07003d; public static final int invisible=0x7f07003e; public static final int italic=0x7f07003f; public static final int left=0x7f070040; public static final int line1=0x7f070041; public static final int line3=0x7f070042; public static final int listMode=0x7f070043; public static final int list_item=0x7f070044; public static final int media_actions=0x7f070045; public static final int message=0x7f070046; public static final int middle=0x7f070047; public static final int multiply=0x7f070048; public static final int never=0x7f070049; public static final int none=0x7f07004a; public static final int normal=0x7f07004b; public static final int notification_background=0x7f07004c; public static final int notification_main_column=0x7f07004d; public static final int notification_main_column_container=0x7f07004e; public static final int packed=0x7f07004f; public static final int parent=0x7f070050; public static final int parentPanel=0x7f070051; public static final int percent=0x7f070052; public static final int progress_circular=0x7f070053; public static final int progress_horizontal=0x7f070054; public static final int radio=0x7f070055; public static final int right=0x7f070056; public static final int right_icon=0x7f070057; public static final int right_side=0x7f070058; public static final int screen=0x7f070059; public static final int scrollIndicatorDown=0x7f07005a; public static final int scrollIndicatorUp=0x7f07005b; public static final int scrollView=0x7f07005c; public static final int search_badge=0x7f07005d; public static final int search_bar=0x7f07005e; public static final int search_button=0x7f07005f; public static final int search_close_btn=0x7f070060; public static final int search_edit_frame=0x7f070061; public static final int search_go_btn=0x7f070062; public static final int search_mag_icon=0x7f070063; public static final int search_plate=0x7f070064; public static final int search_src_text=0x7f070065; public static final int search_voice_btn=0x7f070066; public static final int select_dialog_listview=0x7f070067; public static final int shortcut=0x7f070068; public static final int showCustom=0x7f070069; public static final int showHome=0x7f07006a; public static final int showTitle=0x7f07006b; public static final int spacer=0x7f07006c; public static final int split_action_bar=0x7f07006d; public static final int spread=0x7f07006e; public static final int spread_inside=0x7f07006f; public static final int src_atop=0x7f070070; public static final int src_in=0x7f070071; public static final int src_over=0x7f070072; public static final int standard=0x7f070073; public static final int start=0x7f070074; public static final int status_bar_latest_event_content=0x7f070075; public static final int submenuarrow=0x7f070076; public static final int submit_area=0x7f070077; public static final int tabMode=0x7f070078; public static final int text=0x7f070079; public static final int text2=0x7f07007a; public static final int textSpacerNoButtons=0x7f07007b; public static final int textSpacerNoTitle=0x7f07007c; public static final int time=0x7f07007d; public static final int title=0x7f07007e; public static final int titleDividerNoCustom=0x7f07007f; public static final int title_template=0x7f070080; public static final int top=0x7f070081; public static final int topPanel=0x7f070082; public static final int uniform=0x7f070083; public static final int up=0x7f070084; public static final int useLogo=0x7f070085; public static final int withText=0x7f070086; public static final int wrap=0x7f070087; public static final int wrap_content=0x7f070088; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f080000; public static final int abc_config_activityShortDur=0x7f080001; public static final int cancel_button_image_alpha=0x7f080002; public static final int config_tooltipAnimTime=0x7f080003; public static final int status_bar_notification_info_maxnum=0x7f080004; } public static final class layout { public static final int abc_action_bar_title_item=0x7f090000; public static final int abc_action_bar_up_container=0x7f090001; public static final int abc_action_bar_view_list_nav_layout=0x7f090002; public static final int abc_action_menu_item_layout=0x7f090003; public static final int abc_action_menu_layout=0x7f090004; public static final int abc_action_mode_bar=0x7f090005; public static final int abc_action_mode_close_item_material=0x7f090006; public static final int abc_activity_chooser_view=0x7f090007; public static final int abc_activity_chooser_view_list_item=0x7f090008; public static final int abc_alert_dialog_button_bar_material=0x7f090009; public static final int abc_alert_dialog_material=0x7f09000a; public static final int abc_alert_dialog_title_material=0x7f09000b; public static final int abc_dialog_title_material=0x7f09000c; public static final int abc_expanded_menu_layout=0x7f09000d; public static final int abc_list_menu_item_checkbox=0x7f09000e; public static final int abc_list_menu_item_icon=0x7f09000f; public static final int abc_list_menu_item_layout=0x7f090010; public static final int abc_list_menu_item_radio=0x7f090011; public static final int abc_popup_menu_header_item_layout=0x7f090012; public static final int abc_popup_menu_item_layout=0x7f090013; public static final int abc_screen_content_include=0x7f090014; public static final int abc_screen_simple=0x7f090015; public static final int abc_screen_simple_overlay_action_mode=0x7f090016; public static final int abc_screen_toolbar=0x7f090017; public static final int abc_search_dropdown_item_icons_2line=0x7f090018; public static final int abc_search_view=0x7f090019; public static final int abc_select_dialog_material=0x7f09001a; public static final int notification_action=0x7f09001b; public static final int notification_action_tombstone=0x7f09001c; public static final int notification_media_action=0x7f09001d; public static final int notification_media_cancel_action=0x7f09001e; public static final int notification_template_big_media=0x7f09001f; public static final int notification_template_big_media_custom=0x7f090020; public static final int notification_template_big_media_narrow=0x7f090021; public static final int notification_template_big_media_narrow_custom=0x7f090022; public static final int notification_template_custom_big=0x7f090023; public static final int notification_template_icon_group=0x7f090024; public static final int notification_template_lines_media=0x7f090025; public static final int notification_template_media=0x7f090026; public static final int notification_template_media_custom=0x7f090027; public static final int notification_template_part_chronometer=0x7f090028; public static final int notification_template_part_time=0x7f090029; public static final int select_dialog_item_material=0x7f09002a; public static final int select_dialog_multichoice_material=0x7f09002b; public static final int select_dialog_singlechoice_material=0x7f09002c; public static final int support_simple_spinner_dropdown_item=0x7f09002d; public static final int tooltip=0x7f09002e; } public static final class string { public static final int abc_action_bar_home_description=0x7f0a0000; public static final int abc_action_bar_home_description_format=0x7f0a0001; public static final int abc_action_bar_home_subtitle_description_format=0x7f0a0002; public static final int abc_action_bar_up_description=0x7f0a0003; public static final int abc_action_menu_overflow_description=0x7f0a0004; public static final int abc_action_mode_done=0x7f0a0005; public static final int abc_activity_chooser_view_see_all=0x7f0a0006; public static final int abc_activitychooserview_choose_application=0x7f0a0007; public static final int abc_capital_off=0x7f0a0008; public static final int abc_capital_on=0x7f0a0009; public static final int abc_font_family_body_1_material=0x7f0a000a; public static final int abc_font_family_body_2_material=0x7f0a000b; public static final int abc_font_family_button_material=0x7f0a000c; public static final int abc_font_family_caption_material=0x7f0a000d; public static final int abc_font_family_display_1_material=0x7f0a000e; public static final int abc_font_family_display_2_material=0x7f0a000f; public static final int abc_font_family_display_3_material=0x7f0a0010; public static final int abc_font_family_display_4_material=0x7f0a0011; public static final int abc_font_family_headline_material=0x7f0a0012; public static final int abc_font_family_menu_material=0x7f0a0013; public static final int abc_font_family_subhead_material=0x7f0a0014; public static final int abc_font_family_title_material=0x7f0a0015; public static final int abc_search_hint=0x7f0a0016; public static final int abc_searchview_description_clear=0x7f0a0017; public static final int abc_searchview_description_query=0x7f0a0018; public static final int abc_searchview_description_search=0x7f0a0019; public static final int abc_searchview_description_submit=0x7f0a001a; public static final int abc_searchview_description_voice=0x7f0a001b; public static final int abc_shareactionprovider_share_with=0x7f0a001c; public static final int abc_shareactionprovider_share_with_application=0x7f0a001d; public static final int abc_toolbar_collapse_description=0x7f0a001e; public static final int search_menu_title=0x7f0a001f; public static final int status_bar_notification_info_overflow=0x7f0a0020; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0b0000; public static final int AlertDialog_AppCompat_Light=0x7f0b0001; public static final int Animation_AppCompat_Dialog=0x7f0b0002; public static final int Animation_AppCompat_DropDownUp=0x7f0b0003; public static final int Animation_AppCompat_Tooltip=0x7f0b0004; public static final int Base_AlertDialog_AppCompat=0x7f0b0005; public static final int Base_AlertDialog_AppCompat_Light=0x7f0b0006; public static final int Base_Animation_AppCompat_Dialog=0x7f0b0007; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b0008; public static final int Base_Animation_AppCompat_Tooltip=0x7f0b0009; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b000b; public static final int Base_DialogWindowTitle_AppCompat=0x7f0b000a; public static final int Base_TextAppearance_AppCompat=0x7f0b000c; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b000d; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b000e; public static final int Base_TextAppearance_AppCompat_Button=0x7f0b000f; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b0010; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b0011; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b0012; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b0013; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b0014; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b0015; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b0016; public static final int Base_TextAppearance_AppCompat_Large=0x7f0b0017; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b0018; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0019; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b001a; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b001b; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b001c; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b001d; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b001e; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b001f; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b0020; public static final int Base_TextAppearance_AppCompat_Small=0x7f0b0021; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b0022; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b0023; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b0024; public static final int Base_TextAppearance_AppCompat_Title=0x7f0b0025; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b0026; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0b0027; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0028; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0029; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b002a; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b002b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b002c; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b002d; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b002e; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b002f; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b0030; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b0031; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0032; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0033; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0034; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0035; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0036; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b0037; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b0038; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0039; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b003a; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b003b; public static final int Base_ThemeOverlay_AppCompat=0x7f0b004a; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b004b; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b004c; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b004d; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0b004e; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b004f; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b0050; public static final int Base_Theme_AppCompat=0x7f0b003c; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b003d; public static final int Base_Theme_AppCompat_Dialog=0x7f0b003e; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0042; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b003f; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b0040; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0041; public static final int Base_Theme_AppCompat_Light=0x7f0b0043; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b0044; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b0045; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0049; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0046; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b0047; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0048; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0b0053; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0051; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0052; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0b0054; public static final int Base_V12_Widget_AppCompat_EditText=0x7f0b0055; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0b005a; public static final int Base_V21_Theme_AppCompat=0x7f0b0056; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b0057; public static final int Base_V21_Theme_AppCompat_Light=0x7f0b0058; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b0059; public static final int Base_V22_Theme_AppCompat=0x7f0b005b; public static final int Base_V22_Theme_AppCompat_Light=0x7f0b005c; public static final int Base_V23_Theme_AppCompat=0x7f0b005d; public static final int Base_V23_Theme_AppCompat_Light=0x7f0b005e; public static final int Base_V26_Theme_AppCompat=0x7f0b005f; public static final int Base_V26_Theme_AppCompat_Light=0x7f0b0060; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0b0061; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0b0066; public static final int Base_V7_Theme_AppCompat=0x7f0b0062; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b0063; public static final int Base_V7_Theme_AppCompat_Light=0x7f0b0064; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b0065; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b0067; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0b0068; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0b0069; public static final int Base_Widget_AppCompat_ActionBar=0x7f0b006a; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b006b; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b006c; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b006d; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b006e; public static final int Base_Widget_AppCompat_ActionButton=0x7f0b006f; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0070; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b0071; public static final int Base_Widget_AppCompat_ActionMode=0x7f0b0072; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b0073; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0074; public static final int Base_Widget_AppCompat_Button=0x7f0b0075; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b007b; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b007c; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b0076; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b0077; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0078; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0b0079; public static final int Base_Widget_AppCompat_Button_Small=0x7f0b007a; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b007d; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b007e; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b007f; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b0080; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b0081; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b0082; public static final int Base_Widget_AppCompat_EditText=0x7f0b0083; public static final int Base_Widget_AppCompat_ImageButton=0x7f0b0084; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b0085; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0086; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0087; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0088; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0089; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b008a; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b008b; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b008c; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0b008d; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b008e; public static final int Base_Widget_AppCompat_ListView=0x7f0b008f; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b0090; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b0091; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b0092; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b0093; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b0094; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b0095; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0096; public static final int Base_Widget_AppCompat_RatingBar=0x7f0b0097; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0b0098; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0b0099; public static final int Base_Widget_AppCompat_SearchView=0x7f0b009a; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b009b; public static final int Base_Widget_AppCompat_SeekBar=0x7f0b009c; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0b009d; public static final int Base_Widget_AppCompat_Spinner=0x7f0b009e; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b009f; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b00a0; public static final int Base_Widget_AppCompat_Toolbar=0x7f0b00a1; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b00a2; public static final int Platform_AppCompat=0x7f0b00a3; public static final int Platform_AppCompat_Light=0x7f0b00a4; public static final int Platform_ThemeOverlay_AppCompat=0x7f0b00a5; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b00a6; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b00a7; public static final int Platform_V11_AppCompat=0x7f0b00a8; public static final int Platform_V11_AppCompat_Light=0x7f0b00a9; public static final int Platform_V14_AppCompat=0x7f0b00aa; public static final int Platform_V14_AppCompat_Light=0x7f0b00ab; public static final int Platform_V21_AppCompat=0x7f0b00ac; public static final int Platform_V21_AppCompat_Light=0x7f0b00ad; public static final int Platform_V25_AppCompat=0x7f0b00ae; public static final int Platform_V25_AppCompat_Light=0x7f0b00af; public static final int Platform_Widget_AppCompat_Spinner=0x7f0b00b0; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b00b1; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b00b2; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b00b3; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b00b4; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b00b5; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b00b6; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b00bc; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b00b7; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b00b8; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b00b9; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b00ba; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b00bb; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b00bd; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b00be; public static final int TextAppearance_AppCompat=0x7f0b00bf; public static final int TextAppearance_AppCompat_Body1=0x7f0b00c0; public static final int TextAppearance_AppCompat_Body2=0x7f0b00c1; public static final int TextAppearance_AppCompat_Button=0x7f0b00c2; public static final int TextAppearance_AppCompat_Caption=0x7f0b00c3; public static final int TextAppearance_AppCompat_Display1=0x7f0b00c4; public static final int TextAppearance_AppCompat_Display2=0x7f0b00c5; public static final int TextAppearance_AppCompat_Display3=0x7f0b00c6; public static final int TextAppearance_AppCompat_Display4=0x7f0b00c7; public static final int TextAppearance_AppCompat_Headline=0x7f0b00c8; public static final int TextAppearance_AppCompat_Inverse=0x7f0b00c9; public static final int TextAppearance_AppCompat_Large=0x7f0b00ca; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b00cb; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b00cc; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b00cd; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00ce; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00cf; public static final int TextAppearance_AppCompat_Medium=0x7f0b00d0; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b00d1; public static final int TextAppearance_AppCompat_Menu=0x7f0b00d2; public static final int TextAppearance_AppCompat_Notification=0x7f0b00d3; public static final int TextAppearance_AppCompat_Notification_Info=0x7f0b00d4; public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0b00d5; public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0b00d6; public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0b00d7; public static final int TextAppearance_AppCompat_Notification_Media=0x7f0b00d8; public static final int TextAppearance_AppCompat_Notification_Time=0x7f0b00d9; public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0b00da; public static final int TextAppearance_AppCompat_Notification_Title=0x7f0b00db; public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0b00dc; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00dd; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b00de; public static final int TextAppearance_AppCompat_Small=0x7f0b00df; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b00e0; public static final int TextAppearance_AppCompat_Subhead=0x7f0b00e1; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00e2; public static final int TextAppearance_AppCompat_Title=0x7f0b00e3; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b00e4; public static final int TextAppearance_AppCompat_Tooltip=0x7f0b00e5; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00e6; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b00e7; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b00e8; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b00e9; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b00ea; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b00eb; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b00ec; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b00ed; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b00ee; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0b00ef; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b00f0; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b00f1; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b00f2; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00f3; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b00f4; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b00f5; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b00f6; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b00f7; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b00f8; public static final int TextAppearance_Compat_Notification=0x7f0b00f9; public static final int TextAppearance_Compat_Notification_Info=0x7f0b00fa; public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0b00fb; public static final int TextAppearance_Compat_Notification_Line2=0x7f0b00fc; public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0b00fd; public static final int TextAppearance_Compat_Notification_Media=0x7f0b00fe; public static final int TextAppearance_Compat_Notification_Time=0x7f0b00ff; public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0b0100; public static final int TextAppearance_Compat_Notification_Title=0x7f0b0101; public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0b0102; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0103; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0104; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0105; public static final int ThemeOverlay_AppCompat=0x7f0b011b; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b011c; public static final int ThemeOverlay_AppCompat_Dark=0x7f0b011d; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b011e; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0b011f; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0120; public static final int ThemeOverlay_AppCompat_Light=0x7f0b0121; public static final int Theme_AppCompat=0x7f0b0106; public static final int Theme_AppCompat_CompactMenu=0x7f0b0107; public static final int Theme_AppCompat_DayNight=0x7f0b0108; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0b0109; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0b010a; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0b010d; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0b010b; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0b010c; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0b010e; public static final int Theme_AppCompat_Dialog=0x7f0b010f; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b0112; public static final int Theme_AppCompat_Dialog_Alert=0x7f0b0110; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b0111; public static final int Theme_AppCompat_Light=0x7f0b0113; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0114; public static final int Theme_AppCompat_Light_Dialog=0x7f0b0115; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0118; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b0116; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0117; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b0119; public static final int Theme_AppCompat_NoActionBar=0x7f0b011a; public static final int Widget_AppCompat_ActionBar=0x7f0b0122; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0123; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0124; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0125; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b0126; public static final int Widget_AppCompat_ActionButton=0x7f0b0127; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b0128; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b0129; public static final int Widget_AppCompat_ActionMode=0x7f0b012a; public static final int Widget_AppCompat_ActivityChooserView=0x7f0b012b; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b012c; public static final int Widget_AppCompat_Button=0x7f0b012d; public static final int Widget_AppCompat_ButtonBar=0x7f0b0133; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b0134; public static final int Widget_AppCompat_Button_Borderless=0x7f0b012e; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b012f; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b0130; public static final int Widget_AppCompat_Button_Colored=0x7f0b0131; public static final int Widget_AppCompat_Button_Small=0x7f0b0132; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0135; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0136; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b0137; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b0138; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b0139; public static final int Widget_AppCompat_EditText=0x7f0b013a; public static final int Widget_AppCompat_ImageButton=0x7f0b013b; public static final int Widget_AppCompat_Light_ActionBar=0x7f0b013c; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b013d; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b013e; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b013f; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0140; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0141; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0142; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0143; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0144; public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0145; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b0146; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0147; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b0148; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0149; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b014a; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b014b; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b014c; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b014d; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b014e; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b014f; public static final int Widget_AppCompat_Light_SearchView=0x7f0b0150; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0151; public static final int Widget_AppCompat_ListMenuView=0x7f0b0152; public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0153; public static final int Widget_AppCompat_ListView=0x7f0b0154; public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0155; public static final int Widget_AppCompat_ListView_Menu=0x7f0b0156; public static final int Widget_AppCompat_PopupMenu=0x7f0b0157; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b0158; public static final int Widget_AppCompat_PopupWindow=0x7f0b0159; public static final int Widget_AppCompat_ProgressBar=0x7f0b015a; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b015b; public static final int Widget_AppCompat_RatingBar=0x7f0b015c; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0b015d; public static final int Widget_AppCompat_RatingBar_Small=0x7f0b015e; public static final int Widget_AppCompat_SearchView=0x7f0b015f; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b0160; public static final int Widget_AppCompat_SeekBar=0x7f0b0161; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0b0162; public static final int Widget_AppCompat_Spinner=0x7f0b0163; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b0164; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0165; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b0166; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b0167; public static final int Widget_AppCompat_Toolbar=0x7f0b0168; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0169; public static final int Widget_Compat_NotificationActionContainer=0x7f0b016a; public static final int Widget_Compat_NotificationActionText=0x7f0b016b; } public static final class styleable { /** * Attributes that can be used with a ActionBar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionBar_background com.example.mobilesafe.test:background}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_backgroundSplit com.example.mobilesafe.test:backgroundSplit}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_backgroundStacked com.example.mobilesafe.test:backgroundStacked}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEnd com.example.mobilesafe.test:contentInsetEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.example.mobilesafe.test:contentInsetEndWithActions}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetLeft com.example.mobilesafe.test:contentInsetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetRight com.example.mobilesafe.test:contentInsetRight}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStart com.example.mobilesafe.test:contentInsetStart}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.example.mobilesafe.test:contentInsetStartWithNavigation}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_customNavigationLayout com.example.mobilesafe.test:customNavigationLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_displayOptions com.example.mobilesafe.test:displayOptions}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_divider com.example.mobilesafe.test:divider}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_elevation com.example.mobilesafe.test:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_height com.example.mobilesafe.test:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_hideOnContentScroll com.example.mobilesafe.test:hideOnContentScroll}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.example.mobilesafe.test:homeAsUpIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_homeLayout com.example.mobilesafe.test:homeLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_icon com.example.mobilesafe.test:icon}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.mobilesafe.test:indeterminateProgressStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_itemPadding com.example.mobilesafe.test:itemPadding}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_logo com.example.mobilesafe.test:logo}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_navigationMode com.example.mobilesafe.test:navigationMode}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_popupTheme com.example.mobilesafe.test:popupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_progressBarPadding com.example.mobilesafe.test:progressBarPadding}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_progressBarStyle com.example.mobilesafe.test:progressBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_subtitle com.example.mobilesafe.test:subtitle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.mobilesafe.test:subtitleTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_title com.example.mobilesafe.test:title}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_titleTextStyle com.example.mobilesafe.test:titleTextStyle}</code></td><td></td></tr> * </table> * @see #ActionBar_background * @see #ActionBar_backgroundSplit * @see #ActionBar_backgroundStacked * @see #ActionBar_contentInsetEnd * @see #ActionBar_contentInsetEndWithActions * @see #ActionBar_contentInsetLeft * @see #ActionBar_contentInsetRight * @see #ActionBar_contentInsetStart * @see #ActionBar_contentInsetStartWithNavigation * @see #ActionBar_customNavigationLayout * @see #ActionBar_displayOptions * @see #ActionBar_divider * @see #ActionBar_elevation * @see #ActionBar_height * @see #ActionBar_hideOnContentScroll * @see #ActionBar_homeAsUpIndicator * @see #ActionBar_homeLayout * @see #ActionBar_icon * @see #ActionBar_indeterminateProgressStyle * @see #ActionBar_itemPadding * @see #ActionBar_logo * @see #ActionBar_navigationMode * @see #ActionBar_popupTheme * @see #ActionBar_progressBarPadding * @see #ActionBar_progressBarStyle * @see #ActionBar_subtitle * @see #ActionBar_subtitleTextStyle * @see #ActionBar_title * @see #ActionBar_titleTextStyle */ public static final int[] ActionBar={ 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020063, 0x7f020067, 0x7f020068, 0x7f020073, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020085, 0x7f020086, 0x7f02008b, 0x7f02008e, 0x7f0200cd, 0x7f0200d4, 0x7f0200df, 0x7f0200e2, 0x7f0200e3, 0x7f0200fd, 0x7f020100, 0x7f02011b, 0x7f020124 }; /** * 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; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#background} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:background */ public static final int ActionBar_background=0; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#backgroundSplit} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.mobilesafe.test:backgroundSplit */ public static final int ActionBar_backgroundSplit=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#backgroundStacked} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.mobilesafe.test:backgroundStacked */ public static final int ActionBar_backgroundStacked=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetEnd} * attribute's value can be found in the {@link #ActionBar} 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.example.mobilesafe.test:contentInsetEnd */ public static final int ActionBar_contentInsetEnd=3; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetEndWithActions} * attribute's value can be found in the {@link #ActionBar} 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.example.mobilesafe.test:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions=4; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetLeft} * attribute's value can be found in the {@link #ActionBar} 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.example.mobilesafe.test:contentInsetLeft */ public static final int ActionBar_contentInsetLeft=5; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetRight} * attribute's value can be found in the {@link #ActionBar} 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.example.mobilesafe.test:contentInsetRight */ public static final int ActionBar_contentInsetRight=6; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetStart} * attribute's value can be found in the {@link #ActionBar} 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.example.mobilesafe.test:contentInsetStart */ public static final int ActionBar_contentInsetStart=7; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetStartWithNavigation} * attribute's value can be found in the {@link #ActionBar} 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.example.mobilesafe.test:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation=8; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#customNavigationLayout} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:customNavigationLayout */ public static final int ActionBar_customNavigationLayout=9; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#displayOptions} * attribute's value can be found in the {@link #ActionBar} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>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.example.mobilesafe.test:displayOptions */ public static final int ActionBar_displayOptions=10; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#divider} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:divider */ public static final int ActionBar_divider=11; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#elevation} * attribute's value can be found in the {@link #ActionBar} 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.example.mobilesafe.test:elevation */ public static final int ActionBar_elevation=12; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#height} * attribute's value can be found in the {@link #ActionBar} 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.example.mobilesafe.test:height */ public static final int ActionBar_height=13; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#hideOnContentScroll} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll=14; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#homeAsUpIndicator} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator=15; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#homeLayout} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:homeLayout */ public static final int ActionBar_homeLayout=16; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#icon} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:icon */ public static final int ActionBar_icon=17; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#indeterminateProgressStyle} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle=18; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#itemPadding} * attribute's value can be found in the {@link #ActionBar} 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.example.mobilesafe.test:itemPadding */ public static final int ActionBar_itemPadding=19; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#logo} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:logo */ public static final int ActionBar_logo=20; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#navigationMode} * attribute's value can be found in the {@link #ActionBar} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>listMode</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>tabMode</td><td>2</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:navigationMode */ public static final int ActionBar_navigationMode=21; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#popupTheme} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:popupTheme */ public static final int ActionBar_popupTheme=22; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#progressBarPadding} * attribute's value can be found in the {@link #ActionBar} 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.example.mobilesafe.test:progressBarPadding */ public static final int ActionBar_progressBarPadding=23; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#progressBarStyle} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:progressBarStyle */ public static final int ActionBar_progressBarStyle=24; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#subtitle} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:subtitle */ public static final int ActionBar_subtitle=25; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#subtitleTextStyle} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle=26; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#title} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:title */ public static final int ActionBar_title=27; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#titleTextStyle} * attribute's value can be found in the {@link #ActionBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:titleTextStyle */ public static final int ActionBar_titleTextStyle=28; /** * 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.example.mobilesafe.test:background}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_backgroundSplit com.example.mobilesafe.test:backgroundSplit}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_closeItemLayout com.example.mobilesafe.test:closeItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_height com.example.mobilesafe.test:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.mobilesafe.test:subtitleTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_titleTextStyle com.example.mobilesafe.test:titleTextStyle}</code></td><td></td></tr> * </table> * @see #ActionMode_background * @see #ActionMode_backgroundSplit * @see #ActionMode_closeItemLayout * @see #ActionMode_height * @see #ActionMode_subtitleTextStyle * @see #ActionMode_titleTextStyle */ public static final int[] ActionMode={ 0x7f020031, 0x7f020032, 0x7f020049, 0x7f020082, 0x7f020100, 0x7f020124 }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#background} * attribute's value can be found in the {@link #ActionMode} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:background */ public static final int ActionMode_background=0; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#backgroundSplit} * attribute's value can be found in the {@link #ActionMode} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.mobilesafe.test:backgroundSplit */ public static final int ActionMode_backgroundSplit=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#closeItemLayout} * attribute's value can be found in the {@link #ActionMode} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:closeItemLayout */ public static final int ActionMode_closeItemLayout=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#height} * attribute's value can be found in the {@link #ActionMode} 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.example.mobilesafe.test:height */ public static final int ActionMode_height=3; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#subtitleTextStyle} * attribute's value can be found in the {@link #ActionMode} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle=4; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#titleTextStyle} * attribute's value can be found in the {@link #ActionMode} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test: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.example.mobilesafe.test:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.mobilesafe.test:initialActivityCount}</code></td><td></td></tr> * </table> * @see #ActivityChooserView_expandActivityOverflowButtonDrawable * @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView={ 0x7f020075, 0x7f02008c }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#expandActivityOverflowButtonDrawable} * attribute's value can be found in the {@link #ActivityChooserView} 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.example.mobilesafe.test:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#initialActivityCount} * attribute's value can be found in the {@link #ActivityChooserView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test: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_buttonPanelSideLayout com.example.mobilesafe.test:buttonPanelSideLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listItemLayout com.example.mobilesafe.test:listItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listLayout com.example.mobilesafe.test:listLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.example.mobilesafe.test:multiChoiceItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_showTitle com.example.mobilesafe.test:showTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.example.mobilesafe.test:singleChoiceItemLayout}</code></td><td></td></tr> * </table> * @see #AlertDialog_android_layout * @see #AlertDialog_buttonPanelSideLayout * @see #AlertDialog_listItemLayout * @see #AlertDialog_listLayout * @see #AlertDialog_multiChoiceItemLayout * @see #AlertDialog_showTitle * @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog={ 0x010100f2, 0x7f020040, 0x7f0200c4, 0x7f0200c5, 0x7f0200d1, 0x7f0200f3, 0x7f0200f4 }; /** * <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.example.mobilesafe.test.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.example.mobilesafe.test:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:listItemLayout */ public static final int AlertDialog_listItemLayout=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:listLayout */ public static final int AlertDialog_listLayout=3; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout=4; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:showTitle */ public static final int AlertDialog_showTitle=5; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout=6; /** * 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.example.mobilesafe.test:srcCompat}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_tint com.example.mobilesafe.test:tint}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_tintMode com.example.mobilesafe.test:tintMode}</code></td><td></td></tr> * </table> * @see #AppCompatImageView_android_src * @see #AppCompatImageView_srcCompat * @see #AppCompatImageView_tint * @see #AppCompatImageView_tintMode */ public static final int[] AppCompatImageView={ 0x01010119, 0x7f0200f9, 0x7f020119, 0x7f02011a }; /** * <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>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#srcCompat} * 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>". * * @attr name com.example.mobilesafe.test:srcCompat */ public static final int AppCompatImageView_srcCompat=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#tint} * attribute's value can be found in the {@link #AppCompatImageView} 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.example.mobilesafe.test:tint */ public static final int AppCompatImageView_tint=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#tintMode} * attribute's value can be found in the {@link #AppCompatImageView} 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.example.mobilesafe.test: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.example.mobilesafe.test:tickMark}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.example.mobilesafe.test:tickMarkTint}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.example.mobilesafe.test:tickMarkTintMode}</code></td><td></td></tr> * </table> * @see #AppCompatSeekBar_android_thumb * @see #AppCompatSeekBar_tickMark * @see #AppCompatSeekBar_tickMarkTint * @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar={ 0x01010142, 0x7f020116, 0x7f020117, 0x7f020118 }; /** * <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>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#tickMark} * 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 com.example.mobilesafe.test:tickMark */ public static final int AppCompatSeekBar_tickMark=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#tickMarkTint} * attribute's value can be found in the {@link #AppCompatSeekBar} 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.example.mobilesafe.test:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#tickMarkTintMode} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>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.example.mobilesafe.test: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#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#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; /** * <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#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#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; /** * 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.example.mobilesafe.test:autoSizeMaxTextSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.example.mobilesafe.test:autoSizeMinTextSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.example.mobilesafe.test:autoSizePresetSizes}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.example.mobilesafe.test:autoSizeStepGranularity}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.example.mobilesafe.test:autoSizeTextType}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_fontFamily com.example.mobilesafe.test:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_textAllCaps com.example.mobilesafe.test:textAllCaps}</code></td><td></td></tr> * </table> * @see #AppCompatTextView_android_textAppearance * @see #AppCompatTextView_autoSizeMaxTextSize * @see #AppCompatTextView_autoSizeMinTextSize * @see #AppCompatTextView_autoSizePresetSizes * @see #AppCompatTextView_autoSizeStepGranularity * @see #AppCompatTextView_autoSizeTextType * @see #AppCompatTextView_fontFamily * @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView={ 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020077, 0x7f020106 }; /** * <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>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#autoSizeMaxTextSize} * attribute's value can be found in the {@link #AppCompatTextView} 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.example.mobilesafe.test:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#autoSizeMinTextSize} * attribute's value can be found in the {@link #AppCompatTextView} 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.example.mobilesafe.test:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#autoSizePresetSizes} * 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 com.example.mobilesafe.test:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes=3; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#autoSizeStepGranularity} * attribute's value can be found in the {@link #AppCompatTextView} 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.example.mobilesafe.test:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity=4; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#autoSizeTextType} * attribute's value can be found in the {@link #AppCompatTextView} 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>uniform</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType=5; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#fontFamily} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:fontFamily */ public static final int AppCompatTextView_fontFamily=6; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textAllCaps} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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.example.mobilesafe.test:textAllCaps */ public static final int AppCompatTextView_textAllCaps=7; /** * 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.example.mobilesafe.test:actionBarDivider}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.example.mobilesafe.test:actionBarItemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.example.mobilesafe.test:actionBarPopupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSize com.example.mobilesafe.test:actionBarSize}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.example.mobilesafe.test:actionBarSplitStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.example.mobilesafe.test:actionBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.example.mobilesafe.test:actionBarTabBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.example.mobilesafe.test:actionBarTabStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.example.mobilesafe.test:actionBarTabTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.example.mobilesafe.test:actionBarTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.example.mobilesafe.test:actionBarWidgetTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.example.mobilesafe.test:actionButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.example.mobilesafe.test:actionDropDownStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.example.mobilesafe.test:actionMenuTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.example.mobilesafe.test:actionMenuTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.example.mobilesafe.test:actionModeBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.example.mobilesafe.test:actionModeCloseButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.example.mobilesafe.test:actionModeCloseDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.example.mobilesafe.test:actionModeCopyDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.example.mobilesafe.test:actionModeCutDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.example.mobilesafe.test:actionModeFindDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.example.mobilesafe.test:actionModePasteDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.example.mobilesafe.test:actionModePopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.example.mobilesafe.test:actionModeSelectAllDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.example.mobilesafe.test:actionModeShareDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.example.mobilesafe.test:actionModeSplitBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.example.mobilesafe.test:actionModeStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.example.mobilesafe.test:actionModeWebSearchDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.example.mobilesafe.test:actionOverflowButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.example.mobilesafe.test:actionOverflowMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.example.mobilesafe.test:activityChooserViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.example.mobilesafe.test:alertDialogButtonGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.example.mobilesafe.test:alertDialogCenterButtons}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.example.mobilesafe.test:alertDialogStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.example.mobilesafe.test:alertDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.example.mobilesafe.test:autoCompleteTextViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.example.mobilesafe.test:borderlessButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.example.mobilesafe.test:buttonBarButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.example.mobilesafe.test:buttonBarNegativeButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.example.mobilesafe.test:buttonBarNeutralButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.example.mobilesafe.test:buttonBarPositiveButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.example.mobilesafe.test:buttonBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyle com.example.mobilesafe.test:buttonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.example.mobilesafe.test:buttonStyleSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.example.mobilesafe.test:checkboxStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.example.mobilesafe.test:checkedTextViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorAccent com.example.mobilesafe.test:colorAccent}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.example.mobilesafe.test:colorBackgroundFloating}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.example.mobilesafe.test:colorButtonNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.example.mobilesafe.test:colorControlActivated}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.example.mobilesafe.test:colorControlHighlight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.example.mobilesafe.test:colorControlNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorError com.example.mobilesafe.test:colorError}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimary com.example.mobilesafe.test:colorPrimary}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.example.mobilesafe.test:colorPrimaryDark}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.example.mobilesafe.test:colorSwitchThumbNormal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_controlBackground com.example.mobilesafe.test:controlBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.example.mobilesafe.test:dialogPreferredPadding}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogTheme com.example.mobilesafe.test:dialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.example.mobilesafe.test:dividerHorizontal}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerVertical com.example.mobilesafe.test:dividerVertical}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.example.mobilesafe.test:dropDownListViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.example.mobilesafe.test:dropdownListPreferredItemHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextBackground com.example.mobilesafe.test:editTextBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextColor com.example.mobilesafe.test:editTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextStyle com.example.mobilesafe.test:editTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.example.mobilesafe.test:homeAsUpIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.example.mobilesafe.test:imageButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.example.mobilesafe.test:listChoiceBackgroundIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.example.mobilesafe.test:listDividerAlertDialog}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.example.mobilesafe.test:listMenuViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.example.mobilesafe.test:listPopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.example.mobilesafe.test:listPreferredItemHeight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.example.mobilesafe.test:listPreferredItemHeightLarge}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.example.mobilesafe.test:listPreferredItemHeightSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.example.mobilesafe.test:listPreferredItemPaddingLeft}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.example.mobilesafe.test:listPreferredItemPaddingRight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelBackground com.example.mobilesafe.test:panelBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.example.mobilesafe.test:panelMenuListTheme}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.example.mobilesafe.test:panelMenuListWidth}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.example.mobilesafe.test:popupMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.example.mobilesafe.test:popupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.example.mobilesafe.test:radioButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.example.mobilesafe.test:ratingBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.example.mobilesafe.test:ratingBarStyleIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.example.mobilesafe.test:ratingBarStyleSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.example.mobilesafe.test:searchViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.example.mobilesafe.test:seekBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.example.mobilesafe.test:selectableItemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.example.mobilesafe.test:selectableItemBackgroundBorderless}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.example.mobilesafe.test:spinnerDropDownItemStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.example.mobilesafe.test:spinnerStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_switchStyle com.example.mobilesafe.test:switchStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.example.mobilesafe.test:textAppearanceLargePopupMenu}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.example.mobilesafe.test:textAppearanceListItem}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.example.mobilesafe.test:textAppearanceListItemSecondary}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.example.mobilesafe.test:textAppearanceListItemSmall}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.example.mobilesafe.test:textAppearancePopupMenuHeader}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.example.mobilesafe.test:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.example.mobilesafe.test:textAppearanceSearchResultTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.example.mobilesafe.test:textAppearanceSmallPopupMenu}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.example.mobilesafe.test:textColorAlertDialogListItem}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.example.mobilesafe.test:textColorSearchUrl}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.example.mobilesafe.test:toolbarNavigationButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.example.mobilesafe.test:toolbarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.example.mobilesafe.test:tooltipForegroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.example.mobilesafe.test:tooltipFrameBackground}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBar com.example.mobilesafe.test:windowActionBar}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.example.mobilesafe.test:windowActionBarOverlay}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.example.mobilesafe.test:windowActionModeOverlay}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.example.mobilesafe.test:windowFixedHeightMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.example.mobilesafe.test:windowFixedHeightMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.example.mobilesafe.test:windowFixedWidthMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.example.mobilesafe.test:windowFixedWidthMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.example.mobilesafe.test:windowMinWidthMajor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.example.mobilesafe.test:windowMinWidthMinor}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.example.mobilesafe.test:windowNoTitle}</code></td><td></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_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_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, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f020041, 0x7f020042, 0x7f020046, 0x7f020047, 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020062, 0x7f020065, 0x7f020066, 0x7f020069, 0x7f02006b, 0x7f02006e, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020084, 0x7f02008a, 0x7f0200c2, 0x7f0200c3, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200db, 0x7f0200dc, 0x7f0200dd, 0x7f0200de, 0x7f0200e0, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9, 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, 0x7f0200f6, 0x7f0200f7, 0x7f020104, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02010f, 0x7f020110, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f02012e, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, 0x7f020135, 0x7f020136, 0x7f020137 }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionBarDivider} * 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.example.mobilesafe.test:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionBarItemBackground} * 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.example.mobilesafe.test:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground=3; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionBarPopupTheme} * 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.example.mobilesafe.test:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme=4; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionBarSize} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), 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.example.mobilesafe.test:actionBarSize */ public static final int AppCompatTheme_actionBarSize=5; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionBarSplitStyle} * 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.example.mobilesafe.test:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle=6; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionBarStyle} * 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.example.mobilesafe.test:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle=7; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle=8; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionBarTabStyle} * 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.example.mobilesafe.test:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle=9; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle=10; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionBarTheme} * 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.example.mobilesafe.test:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme=11; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionBarWidgetTheme} * 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.example.mobilesafe.test:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme=12; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionButtonStyle} * 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.example.mobilesafe.test:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle=13; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionDropDownStyle} * 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.example.mobilesafe.test:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle=14; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionMenuTextAppearance} * 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.example.mobilesafe.test:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance=15; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionMenuTextColor} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.mobilesafe.test:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor=16; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModeBackground} * 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.example.mobilesafe.test:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground=17; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle=18; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModeCloseDrawable} * 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.example.mobilesafe.test:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable=19; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModeCopyDrawable} * 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.example.mobilesafe.test:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable=20; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModeCutDrawable} * 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.example.mobilesafe.test:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable=21; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModeFindDrawable} * 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.example.mobilesafe.test:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable=22; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModePasteDrawable} * 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.example.mobilesafe.test:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable=23; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModePopupWindowStyle} * 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.example.mobilesafe.test:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle=24; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModeSelectAllDrawable} * 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.example.mobilesafe.test:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable=25; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModeShareDrawable} * 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.example.mobilesafe.test:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable=26; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModeSplitBackground} * 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.example.mobilesafe.test:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground=27; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle=28; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionModeWebSearchDrawable} * 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.example.mobilesafe.test:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable=29; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle=30; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle=31; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#activityChooserViewStyle} * 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.example.mobilesafe.test:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle=32; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons=34; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle=35; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#alertDialogTheme} * 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.example.mobilesafe.test:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme=36; /** * <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>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 com.example.mobilesafe.test.R.attr#autoCompleteTextViewStyle} * 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.example.mobilesafe.test:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle=37; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#borderlessButtonStyle} * 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.example.mobilesafe.test:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle=38; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#buttonBarButtonStyle} * 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.example.mobilesafe.test:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle=39; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#buttonBarNegativeButtonStyle} * 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.example.mobilesafe.test:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#buttonBarNeutralButtonStyle} * 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.example.mobilesafe.test:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#buttonBarPositiveButtonStyle} * 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.example.mobilesafe.test:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#buttonBarStyle} * 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.example.mobilesafe.test:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle=43; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#buttonStyle} * 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.example.mobilesafe.test:buttonStyle */ public static final int AppCompatTheme_buttonStyle=44; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#buttonStyleSmall} * 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.example.mobilesafe.test:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall=45; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#checkboxStyle} * 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.example.mobilesafe.test:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle=46; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#checkedTextViewStyle} * 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.example.mobilesafe.test:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle=47; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#colorAccent} * attribute's value can be found in the {@link #AppCompatTheme} 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.example.mobilesafe.test:colorAccent */ public static final int AppCompatTheme_colorAccent=48; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#colorBackgroundFloating} * attribute's value can be found in the {@link #AppCompatTheme} 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.example.mobilesafe.test:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating=49; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#colorButtonNormal} * attribute's value can be found in the {@link #AppCompatTheme} 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.example.mobilesafe.test:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal=50; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#colorControlActivated} * attribute's value can be found in the {@link #AppCompatTheme} 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.example.mobilesafe.test:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated=51; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#colorControlHighlight} * attribute's value can be found in the {@link #AppCompatTheme} 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.example.mobilesafe.test:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight=52; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#colorControlNormal} * attribute's value can be found in the {@link #AppCompatTheme} 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.example.mobilesafe.test:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal=53; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#colorError} * 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>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.mobilesafe.test:colorError */ public static final int AppCompatTheme_colorError=54; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#colorPrimary} * attribute's value can be found in the {@link #AppCompatTheme} 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.example.mobilesafe.test:colorPrimary */ public static final int AppCompatTheme_colorPrimary=55; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#colorPrimaryDark} * attribute's value can be found in the {@link #AppCompatTheme} 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.example.mobilesafe.test:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark=56; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#colorSwitchThumbNormal} * attribute's value can be found in the {@link #AppCompatTheme} 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.example.mobilesafe.test:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal=57; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#controlBackground} * 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.example.mobilesafe.test:controlBackground */ public static final int AppCompatTheme_controlBackground=58; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#dialogPreferredPadding} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.mobilesafe.test:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding=59; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#dialogTheme} * 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.example.mobilesafe.test:dialogTheme */ public static final int AppCompatTheme_dialogTheme=60; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#dividerHorizontal} * 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.example.mobilesafe.test:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal=61; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#dividerVertical} * 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.example.mobilesafe.test:dividerVertical */ public static final int AppCompatTheme_dividerVertical=62; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#dropDownListViewStyle} * 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.example.mobilesafe.test:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle=63; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#dropdownListPreferredItemHeight} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.mobilesafe.test:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight=64; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#editTextBackground} * 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.example.mobilesafe.test:editTextBackground */ public static final int AppCompatTheme_editTextBackground=65; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#editTextColor} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.mobilesafe.test:editTextColor */ public static final int AppCompatTheme_editTextColor=66; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#editTextStyle} * 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.example.mobilesafe.test:editTextStyle */ public static final int AppCompatTheme_editTextStyle=67; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#homeAsUpIndicator} * 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.example.mobilesafe.test:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator=68; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#imageButtonStyle} * 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.example.mobilesafe.test:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle=69; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#listChoiceBackgroundIndicator} * 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.example.mobilesafe.test:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator=70; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#listDividerAlertDialog} * 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.example.mobilesafe.test:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog=71; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#listMenuViewStyle} * 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.example.mobilesafe.test:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle=72; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle=73; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#listPreferredItemHeight} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.mobilesafe.test:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight=74; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#listPreferredItemHeightLarge} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.mobilesafe.test:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge=75; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#listPreferredItemHeightSmall} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.mobilesafe.test:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall=76; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#listPreferredItemPaddingLeft} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.mobilesafe.test:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft=77; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#listPreferredItemPaddingRight} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.mobilesafe.test:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight=78; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#panelBackground} * 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.example.mobilesafe.test:panelBackground */ public static final int AppCompatTheme_panelBackground=79; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#panelMenuListTheme} * 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.example.mobilesafe.test:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme=80; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#panelMenuListWidth} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.example.mobilesafe.test:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth=81; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#popupMenuStyle} * 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.example.mobilesafe.test:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle=82; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#popupWindowStyle} * 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.example.mobilesafe.test:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle=83; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#radioButtonStyle} * 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.example.mobilesafe.test:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle=84; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#ratingBarStyle} * 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.example.mobilesafe.test:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle=85; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#ratingBarStyleIndicator} * 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.example.mobilesafe.test:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator=86; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#ratingBarStyleSmall} * 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.example.mobilesafe.test:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall=87; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#searchViewStyle} * 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.example.mobilesafe.test:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle=88; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#seekBarStyle} * 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.example.mobilesafe.test:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle=89; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#selectableItemBackground} * 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.example.mobilesafe.test:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground=90; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#selectableItemBackgroundBorderless} * 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.example.mobilesafe.test:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless=91; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#spinnerDropDownItemStyle} * 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.example.mobilesafe.test:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle=92; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#spinnerStyle} * 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.example.mobilesafe.test:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle=93; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#switchStyle} * 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.example.mobilesafe.test:switchStyle */ public static final int AppCompatTheme_switchStyle=94; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textAppearanceLargePopupMenu} * 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.example.mobilesafe.test:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu=95; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textAppearanceListItem} * 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.example.mobilesafe.test:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem=96; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textAppearanceListItemSecondary} * 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.example.mobilesafe.test:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary=97; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textAppearanceListItemSmall} * 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.example.mobilesafe.test:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall=98; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textAppearancePopupMenuHeader} * 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.example.mobilesafe.test:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader=99; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textAppearanceSearchResultSubtitle} * 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.example.mobilesafe.test:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=100; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textAppearanceSearchResultTitle} * 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.example.mobilesafe.test:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle=101; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textAppearanceSmallPopupMenu} * 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.example.mobilesafe.test:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu=102; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textColorAlertDialogListItem} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.mobilesafe.test:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem=103; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textColorSearchUrl} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.mobilesafe.test:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl=104; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#toolbarNavigationButtonStyle} * 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.example.mobilesafe.test:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle=105; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#toolbarStyle} * 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.example.mobilesafe.test:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle=106; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#tooltipForegroundColor} * 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>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.example.mobilesafe.test:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor=107; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#tooltipFrameBackground} * 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.example.mobilesafe.test:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground=108; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#windowActionBar} * 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.example.mobilesafe.test:windowActionBar */ public static final int AppCompatTheme_windowActionBar=109; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#windowActionBarOverlay} * 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.example.mobilesafe.test:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay=110; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#windowActionModeOverlay} * 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.example.mobilesafe.test:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay=111; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#windowFixedHeightMajor} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), 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.example.mobilesafe.test:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor=112; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#windowFixedHeightMinor} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), 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.example.mobilesafe.test:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor=113; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#windowFixedWidthMajor} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), 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.example.mobilesafe.test:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor=114; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#windowFixedWidthMinor} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), 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.example.mobilesafe.test:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor=115; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#windowMinWidthMajor} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), 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.example.mobilesafe.test:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor=116; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#windowMinWidthMinor} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), 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.example.mobilesafe.test:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor=117; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#windowNoTitle} * 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.example.mobilesafe.test:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle=118; /** * Attributes that can be used with a ButtonBarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ButtonBarLayout_allowStacking com.example.mobilesafe.test:allowStacking}</code></td><td></td></tr> * </table> * @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout={ 0x7f020026 }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#allowStacking} * attribute's value can be found in the {@link #ButtonBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:allowStacking */ public static final int ButtonBarLayout_allowStacking=0; /** * 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.example.mobilesafe.test:alpha}</code></td><td></td></tr> * </table> * @see #ColorStateListItem_android_color * @see #ColorStateListItem_android_alpha * @see #ColorStateListItem_alpha */ public static final int[] ColorStateListItem={ 0x010101a5, 0x0101031f, 0x7f020027 }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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 com.example.mobilesafe.test:alpha */ public static final int ColorStateListItem_alpha=2; /** * <p>This symbol is the offset where the {@link android.R.attr#alpha} * attribute's value can be found in the {@link #ColorStateListItem} array. * * <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>This symbol is the offset where the {@link android.R.attr#color} * attribute's value can be found in the {@link #ColorStateListItem} 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:color */ public static final int ColorStateListItem_android_color=0; /** * Attributes that can be used with a CompoundButton. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> * <tr><td><code>{@link #CompoundButton_buttonTint com.example.mobilesafe.test:buttonTint}</code></td><td></td></tr> * <tr><td><code>{@link #CompoundButton_buttonTintMode com.example.mobilesafe.test:buttonTintMode}</code></td><td></td></tr> * </table> * @see #CompoundButton_android_button * @see #CompoundButton_buttonTint * @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton={ 0x01010107, 0x7f020043, 0x7f020044 }; /** * <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>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#buttonTint} * attribute's value can be found in the {@link #CompoundButton} 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.example.mobilesafe.test:buttonTint */ public static final int CompoundButton_buttonTint=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#buttonTintMode} * attribute's value can be found in the {@link #CompoundButton} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>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.example.mobilesafe.test:buttonTintMode */ public static final int CompoundButton_buttonTintMode=2; /** * Attributes that can be used with a ConstraintLayout_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_barrierAllowsGoneWidgets com.example.mobilesafe.test:barrierAllowsGoneWidgets}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_barrierDirection com.example.mobilesafe.test:barrierDirection}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_chainUseRtl com.example.mobilesafe.test:chainUseRtl}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_constraintSet com.example.mobilesafe.test:constraintSet}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_constraint_referenced_ids com.example.mobilesafe.test:constraint_referenced_ids}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constrainedHeight com.example.mobilesafe.test:layout_constrainedHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constrainedWidth com.example.mobilesafe.test:layout_constrainedWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.example.mobilesafe.test:layout_constraintBaseline_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.example.mobilesafe.test:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.example.mobilesafe.test:layout_constraintBottom_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.example.mobilesafe.test:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.example.mobilesafe.test:layout_constraintBottom_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircle com.example.mobilesafe.test:layout_constraintCircle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircleAngle com.example.mobilesafe.test:layout_constraintCircleAngle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircleRadius com.example.mobilesafe.test:layout_constraintCircleRadius}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.example.mobilesafe.test:layout_constraintDimensionRatio}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.example.mobilesafe.test:layout_constraintEnd_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.example.mobilesafe.test:layout_constraintEnd_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.example.mobilesafe.test:layout_constraintGuide_begin}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.example.mobilesafe.test:layout_constraintGuide_end}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.example.mobilesafe.test:layout_constraintGuide_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.example.mobilesafe.test:layout_constraintHeight_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.example.mobilesafe.test:layout_constraintHeight_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.example.mobilesafe.test:layout_constraintHeight_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_percent com.example.mobilesafe.test:layout_constraintHeight_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.example.mobilesafe.test:layout_constraintHorizontal_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.example.mobilesafe.test:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.example.mobilesafe.test:layout_constraintHorizontal_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.example.mobilesafe.test:layout_constraintLeft_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.example.mobilesafe.test:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.example.mobilesafe.test:layout_constraintLeft_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.example.mobilesafe.test:layout_constraintRight_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.example.mobilesafe.test:layout_constraintRight_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.example.mobilesafe.test:layout_constraintRight_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.example.mobilesafe.test:layout_constraintStart_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.example.mobilesafe.test:layout_constraintStart_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.example.mobilesafe.test:layout_constraintTop_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.example.mobilesafe.test:layout_constraintTop_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.example.mobilesafe.test:layout_constraintTop_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.example.mobilesafe.test:layout_constraintVertical_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.example.mobilesafe.test:layout_constraintVertical_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.example.mobilesafe.test:layout_constraintVertical_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.example.mobilesafe.test:layout_constraintWidth_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.example.mobilesafe.test:layout_constraintWidth_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.example.mobilesafe.test:layout_constraintWidth_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_percent com.example.mobilesafe.test:layout_constraintWidth_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.example.mobilesafe.test:layout_editor_absoluteX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.example.mobilesafe.test:layout_editor_absoluteY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.example.mobilesafe.test:layout_goneMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.example.mobilesafe.test:layout_goneMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.example.mobilesafe.test:layout_goneMarginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.example.mobilesafe.test:layout_goneMarginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.example.mobilesafe.test:layout_goneMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.example.mobilesafe.test:layout_goneMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.example.mobilesafe.test:layout_optimizationLevel}</code></td><td></td></tr> * </table> * @see #ConstraintLayout_Layout_android_orientation * @see #ConstraintLayout_Layout_android_maxWidth * @see #ConstraintLayout_Layout_android_maxHeight * @see #ConstraintLayout_Layout_android_minWidth * @see #ConstraintLayout_Layout_android_minHeight * @see #ConstraintLayout_Layout_barrierAllowsGoneWidgets * @see #ConstraintLayout_Layout_barrierDirection * @see #ConstraintLayout_Layout_chainUseRtl * @see #ConstraintLayout_Layout_constraintSet * @see #ConstraintLayout_Layout_constraint_referenced_ids * @see #ConstraintLayout_Layout_layout_constrainedHeight * @see #ConstraintLayout_Layout_layout_constrainedWidth * @see #ConstraintLayout_Layout_layout_constraintBaseline_creator * @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf * @see #ConstraintLayout_Layout_layout_constraintBottom_creator * @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf * @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf * @see #ConstraintLayout_Layout_layout_constraintCircle * @see #ConstraintLayout_Layout_layout_constraintCircleAngle * @see #ConstraintLayout_Layout_layout_constraintCircleRadius * @see #ConstraintLayout_Layout_layout_constraintDimensionRatio * @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf * @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf * @see #ConstraintLayout_Layout_layout_constraintGuide_begin * @see #ConstraintLayout_Layout_layout_constraintGuide_end * @see #ConstraintLayout_Layout_layout_constraintGuide_percent * @see #ConstraintLayout_Layout_layout_constraintHeight_default * @see #ConstraintLayout_Layout_layout_constraintHeight_max * @see #ConstraintLayout_Layout_layout_constraintHeight_min * @see #ConstraintLayout_Layout_layout_constraintHeight_percent * @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias * @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle * @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight * @see #ConstraintLayout_Layout_layout_constraintLeft_creator * @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf * @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf * @see #ConstraintLayout_Layout_layout_constraintRight_creator * @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf * @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf * @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf * @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf * @see #ConstraintLayout_Layout_layout_constraintTop_creator * @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf * @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf * @see #ConstraintLayout_Layout_layout_constraintVertical_bias * @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle * @see #ConstraintLayout_Layout_layout_constraintVertical_weight * @see #ConstraintLayout_Layout_layout_constraintWidth_default * @see #ConstraintLayout_Layout_layout_constraintWidth_max * @see #ConstraintLayout_Layout_layout_constraintWidth_min * @see #ConstraintLayout_Layout_layout_constraintWidth_percent * @see #ConstraintLayout_Layout_layout_editor_absoluteX * @see #ConstraintLayout_Layout_layout_editor_absoluteY * @see #ConstraintLayout_Layout_layout_goneMarginBottom * @see #ConstraintLayout_Layout_layout_goneMarginEnd * @see #ConstraintLayout_Layout_layout_goneMarginLeft * @see #ConstraintLayout_Layout_layout_goneMarginRight * @see #ConstraintLayout_Layout_layout_goneMarginStart * @see #ConstraintLayout_Layout_layout_goneMarginTop * @see #ConstraintLayout_Layout_layout_optimizationLevel */ public static final int[] ConstraintLayout_Layout={ 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f020037, 0x7f020038, 0x7f020045, 0x7f020058, 0x7f020059, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1 }; /** * <p>This symbol is the offset where the {@link android.R.attr#maxHeight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:maxHeight */ public static final int ConstraintLayout_Layout_android_maxHeight=2; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 ConstraintLayout_Layout_android_maxWidth=1; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 ConstraintLayout_Layout_android_minHeight=4; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 ConstraintLayout_Layout_android_minWidth=3; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <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 ConstraintLayout_Layout_android_orientation=0; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#barrierAllowsGoneWidgets} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:barrierAllowsGoneWidgets */ public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets=5; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#barrierDirection} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>3</td><td></td></tr> * <tr><td>end</td><td>6</td><td></td></tr> * <tr><td>left</td><td>0</td><td></td></tr> * <tr><td>right</td><td>1</td><td></td></tr> * <tr><td>start</td><td>5</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:barrierDirection */ public static final int ConstraintLayout_Layout_barrierDirection=6; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#chainUseRtl} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:chainUseRtl */ public static final int ConstraintLayout_Layout_chainUseRtl=7; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#constraintSet} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:constraintSet */ public static final int ConstraintLayout_Layout_constraintSet=8; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#constraint_referenced_ids} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:constraint_referenced_ids */ public static final int ConstraintLayout_Layout_constraint_referenced_ids=9; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constrainedHeight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:layout_constrainedHeight */ public static final int ConstraintLayout_Layout_layout_constrainedHeight=10; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constrainedWidth} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:layout_constrainedWidth */ public static final int ConstraintLayout_Layout_layout_constrainedWidth=11; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintBaseline_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintBaseline_creator */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator=12; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintBaseline_toBaselineOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf=13; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintBottom_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintBottom_creator */ public static final int ConstraintLayout_Layout_layout_constraintBottom_creator=14; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintBottom_toBottomOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintBottom_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf=15; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintBottom_toTopOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintBottom_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf=16; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintCircle} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:layout_constraintCircle */ public static final int ConstraintLayout_Layout_layout_constraintCircle=17; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintCircleAngle} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintCircleAngle */ public static final int ConstraintLayout_Layout_layout_constraintCircleAngle=18; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintCircleRadius} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_constraintCircleRadius */ public static final int ConstraintLayout_Layout_layout_constraintCircleRadius=19; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintDimensionRatio} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:layout_constraintDimensionRatio */ public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio=20; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintEnd_toEndOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintEnd_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf=21; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintEnd_toStartOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintEnd_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf=22; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintGuide_begin} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_constraintGuide_begin */ public static final int ConstraintLayout_Layout_layout_constraintGuide_begin=23; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintGuide_end} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_constraintGuide_end */ public static final int ConstraintLayout_Layout_layout_constraintGuide_end=24; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintGuide_percent} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintGuide_percent */ public static final int ConstraintLayout_Layout_layout_constraintGuide_percent=25; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHeight_default} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintHeight_default */ public static final int ConstraintLayout_Layout_layout_constraintHeight_default=26; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHeight_max} * attribute's value can be found in the {@link #ConstraintLayout_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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintHeight_max */ public static final int ConstraintLayout_Layout_layout_constraintHeight_max=27; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHeight_min} * attribute's value can be found in the {@link #ConstraintLayout_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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintHeight_min */ public static final int ConstraintLayout_Layout_layout_constraintHeight_min=28; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHeight_percent} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintHeight_percent */ public static final int ConstraintLayout_Layout_layout_constraintHeight_percent=29; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHorizontal_bias} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintHorizontal_bias */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias=30; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHorizontal_chainStyle} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintHorizontal_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle=31; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHorizontal_weight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintHorizontal_weight */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight=32; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintLeft_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintLeft_creator */ public static final int ConstraintLayout_Layout_layout_constraintLeft_creator=33; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintLeft_toLeftOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintLeft_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf=34; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintLeft_toRightOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintLeft_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf=35; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintRight_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintRight_creator */ public static final int ConstraintLayout_Layout_layout_constraintRight_creator=36; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintRight_toLeftOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintRight_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf=37; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintRight_toRightOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintRight_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf=38; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintStart_toEndOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintStart_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf=39; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintStart_toStartOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintStart_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf=40; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintTop_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintTop_creator */ public static final int ConstraintLayout_Layout_layout_constraintTop_creator=41; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintTop_toBottomOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintTop_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf=42; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintTop_toTopOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintTop_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf=43; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintVertical_bias} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintVertical_bias */ public static final int ConstraintLayout_Layout_layout_constraintVertical_bias=44; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintVertical_chainStyle} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintVertical_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle=45; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintVertical_weight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintVertical_weight */ public static final int ConstraintLayout_Layout_layout_constraintVertical_weight=46; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintWidth_default} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintWidth_default */ public static final int ConstraintLayout_Layout_layout_constraintWidth_default=47; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintWidth_max} * attribute's value can be found in the {@link #ConstraintLayout_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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintWidth_max */ public static final int ConstraintLayout_Layout_layout_constraintWidth_max=48; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintWidth_min} * attribute's value can be found in the {@link #ConstraintLayout_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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintWidth_min */ public static final int ConstraintLayout_Layout_layout_constraintWidth_min=49; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintWidth_percent} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintWidth_percent */ public static final int ConstraintLayout_Layout_layout_constraintWidth_percent=50; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_editor_absoluteX} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_editor_absoluteX */ public static final int ConstraintLayout_Layout_layout_editor_absoluteX=51; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_editor_absoluteY} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_editor_absoluteY */ public static final int ConstraintLayout_Layout_layout_editor_absoluteY=52; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginBottom} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_goneMarginBottom */ public static final int ConstraintLayout_Layout_layout_goneMarginBottom=53; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginEnd} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_goneMarginEnd */ public static final int ConstraintLayout_Layout_layout_goneMarginEnd=54; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginLeft} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_goneMarginLeft */ public static final int ConstraintLayout_Layout_layout_goneMarginLeft=55; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginRight} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_goneMarginRight */ public static final int ConstraintLayout_Layout_layout_goneMarginRight=56; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginStart} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_goneMarginStart */ public static final int ConstraintLayout_Layout_layout_goneMarginStart=57; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginTop} * attribute's value can be found in the {@link #ConstraintLayout_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.example.mobilesafe.test:layout_goneMarginTop */ public static final int ConstraintLayout_Layout_layout_goneMarginTop=58; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_optimizationLevel} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>barrier</td><td>2</td><td></td></tr> * <tr><td>chains</td><td>4</td><td></td></tr> * <tr><td>dimensions</td><td>8</td><td></td></tr> * <tr><td>direct</td><td>1</td><td>for now only direct & barriers</td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>standard</td><td>3</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_optimizationLevel */ public static final int ConstraintLayout_Layout_layout_optimizationLevel=59; /** * Attributes that can be used with a ConstraintLayout_placeholder. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ConstraintLayout_placeholder_content com.example.mobilesafe.test:content}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_placeholder_emptyVisibility com.example.mobilesafe.test:emptyVisibility}</code></td><td></td></tr> * </table> * @see #ConstraintLayout_placeholder_content * @see #ConstraintLayout_placeholder_emptyVisibility */ public static final int[] ConstraintLayout_placeholder={ 0x7f02005a, 0x7f020074 }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#content} * attribute's value can be found in the {@link #ConstraintLayout_placeholder} 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.example.mobilesafe.test:content */ public static final int ConstraintLayout_placeholder_content=0; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#emptyVisibility} * attribute's value can be found in the {@link #ConstraintLayout_placeholder} 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>gone</td><td>0</td><td></td></tr> * <tr><td>invisible</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:emptyVisibility */ public static final int ConstraintLayout_placeholder_emptyVisibility=1; /** * Attributes that can be used with a ConstraintSet. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ConstraintSet_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_visibility android:visibility}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_width android:layout_width}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_height android:layout_height}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_alpha android:alpha}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_transformPivotX android:transformPivotX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_transformPivotY android:transformPivotY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationX android:translationX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationY android:translationY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_scaleX android:scaleX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_scaleY android:scaleY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotation android:rotation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotationX android:rotationX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotationY android:rotationY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationZ android:translationZ}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_elevation android:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constrainedHeight com.example.mobilesafe.test:layout_constrainedHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constrainedWidth com.example.mobilesafe.test:layout_constrainedWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_creator com.example.mobilesafe.test:layout_constraintBaseline_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.example.mobilesafe.test:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.example.mobilesafe.test:layout_constraintBottom_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.example.mobilesafe.test:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.example.mobilesafe.test:layout_constraintBottom_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintCircle com.example.mobilesafe.test:layout_constraintCircle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintCircleAngle com.example.mobilesafe.test:layout_constraintCircleAngle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintCircleRadius com.example.mobilesafe.test:layout_constraintCircleRadius}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.example.mobilesafe.test:layout_constraintDimensionRatio}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.example.mobilesafe.test:layout_constraintEnd_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.example.mobilesafe.test:layout_constraintEnd_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.example.mobilesafe.test:layout_constraintGuide_begin}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.example.mobilesafe.test:layout_constraintGuide_end}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.example.mobilesafe.test:layout_constraintGuide_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.example.mobilesafe.test:layout_constraintHeight_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.example.mobilesafe.test:layout_constraintHeight_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.example.mobilesafe.test:layout_constraintHeight_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_percent com.example.mobilesafe.test:layout_constraintHeight_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.example.mobilesafe.test:layout_constraintHorizontal_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.example.mobilesafe.test:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.example.mobilesafe.test:layout_constraintHorizontal_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.example.mobilesafe.test:layout_constraintLeft_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.example.mobilesafe.test:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.example.mobilesafe.test:layout_constraintLeft_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.example.mobilesafe.test:layout_constraintRight_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.example.mobilesafe.test:layout_constraintRight_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.example.mobilesafe.test:layout_constraintRight_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.example.mobilesafe.test:layout_constraintStart_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.example.mobilesafe.test:layout_constraintStart_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.example.mobilesafe.test:layout_constraintTop_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.example.mobilesafe.test:layout_constraintTop_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.example.mobilesafe.test:layout_constraintTop_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.example.mobilesafe.test:layout_constraintVertical_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.example.mobilesafe.test:layout_constraintVertical_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.example.mobilesafe.test:layout_constraintVertical_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.example.mobilesafe.test:layout_constraintWidth_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.example.mobilesafe.test:layout_constraintWidth_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.example.mobilesafe.test:layout_constraintWidth_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_percent com.example.mobilesafe.test:layout_constraintWidth_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.example.mobilesafe.test:layout_editor_absoluteX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.example.mobilesafe.test:layout_editor_absoluteY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.example.mobilesafe.test:layout_goneMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.example.mobilesafe.test:layout_goneMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.example.mobilesafe.test:layout_goneMarginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.example.mobilesafe.test:layout_goneMarginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.example.mobilesafe.test:layout_goneMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.example.mobilesafe.test:layout_goneMarginTop}</code></td><td></td></tr> * </table> * @see #ConstraintSet_android_orientation * @see #ConstraintSet_android_id * @see #ConstraintSet_android_visibility * @see #ConstraintSet_android_layout_width * @see #ConstraintSet_android_layout_height * @see #ConstraintSet_android_layout_marginLeft * @see #ConstraintSet_android_layout_marginTop * @see #ConstraintSet_android_layout_marginRight * @see #ConstraintSet_android_layout_marginBottom * @see #ConstraintSet_android_alpha * @see #ConstraintSet_android_transformPivotX * @see #ConstraintSet_android_transformPivotY * @see #ConstraintSet_android_translationX * @see #ConstraintSet_android_translationY * @see #ConstraintSet_android_scaleX * @see #ConstraintSet_android_scaleY * @see #ConstraintSet_android_rotation * @see #ConstraintSet_android_rotationX * @see #ConstraintSet_android_rotationY * @see #ConstraintSet_android_layout_marginStart * @see #ConstraintSet_android_layout_marginEnd * @see #ConstraintSet_android_translationZ * @see #ConstraintSet_android_elevation * @see #ConstraintSet_layout_constrainedHeight * @see #ConstraintSet_layout_constrainedWidth * @see #ConstraintSet_layout_constraintBaseline_creator * @see #ConstraintSet_layout_constraintBaseline_toBaselineOf * @see #ConstraintSet_layout_constraintBottom_creator * @see #ConstraintSet_layout_constraintBottom_toBottomOf * @see #ConstraintSet_layout_constraintBottom_toTopOf * @see #ConstraintSet_layout_constraintCircle * @see #ConstraintSet_layout_constraintCircleAngle * @see #ConstraintSet_layout_constraintCircleRadius * @see #ConstraintSet_layout_constraintDimensionRatio * @see #ConstraintSet_layout_constraintEnd_toEndOf * @see #ConstraintSet_layout_constraintEnd_toStartOf * @see #ConstraintSet_layout_constraintGuide_begin * @see #ConstraintSet_layout_constraintGuide_end * @see #ConstraintSet_layout_constraintGuide_percent * @see #ConstraintSet_layout_constraintHeight_default * @see #ConstraintSet_layout_constraintHeight_max * @see #ConstraintSet_layout_constraintHeight_min * @see #ConstraintSet_layout_constraintHeight_percent * @see #ConstraintSet_layout_constraintHorizontal_bias * @see #ConstraintSet_layout_constraintHorizontal_chainStyle * @see #ConstraintSet_layout_constraintHorizontal_weight * @see #ConstraintSet_layout_constraintLeft_creator * @see #ConstraintSet_layout_constraintLeft_toLeftOf * @see #ConstraintSet_layout_constraintLeft_toRightOf * @see #ConstraintSet_layout_constraintRight_creator * @see #ConstraintSet_layout_constraintRight_toLeftOf * @see #ConstraintSet_layout_constraintRight_toRightOf * @see #ConstraintSet_layout_constraintStart_toEndOf * @see #ConstraintSet_layout_constraintStart_toStartOf * @see #ConstraintSet_layout_constraintTop_creator * @see #ConstraintSet_layout_constraintTop_toBottomOf * @see #ConstraintSet_layout_constraintTop_toTopOf * @see #ConstraintSet_layout_constraintVertical_bias * @see #ConstraintSet_layout_constraintVertical_chainStyle * @see #ConstraintSet_layout_constraintVertical_weight * @see #ConstraintSet_layout_constraintWidth_default * @see #ConstraintSet_layout_constraintWidth_max * @see #ConstraintSet_layout_constraintWidth_min * @see #ConstraintSet_layout_constraintWidth_percent * @see #ConstraintSet_layout_editor_absoluteX * @see #ConstraintSet_layout_editor_absoluteY * @see #ConstraintSet_layout_goneMarginBottom * @see #ConstraintSet_layout_goneMarginEnd * @see #ConstraintSet_layout_goneMarginLeft * @see #ConstraintSet_layout_goneMarginRight * @see #ConstraintSet_layout_goneMarginStart * @see #ConstraintSet_layout_goneMarginTop */ public static final int[] ConstraintSet={ 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0 }; /** * <p>This symbol is the offset where the {@link android.R.attr#alpha} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:alpha */ public static final int ConstraintSet_android_alpha=9; /** * <p>This symbol is the offset where the {@link android.R.attr#elevation} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:elevation */ public static final int ConstraintSet_android_elevation=22; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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 ConstraintSet_android_id=1; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_height} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 ConstraintSet_android_layout_height=4; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginBottom} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:layout_marginBottom */ public static final int ConstraintSet_android_layout_marginBottom=8; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginEnd} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:layout_marginEnd */ public static final int ConstraintSet_android_layout_marginEnd=20; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginLeft} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:layout_marginLeft */ public static final int ConstraintSet_android_layout_marginLeft=5; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginRight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:layout_marginRight */ public static final int ConstraintSet_android_layout_marginRight=7; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginStart} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:layout_marginStart */ public static final int ConstraintSet_android_layout_marginStart=19; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginTop} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:layout_marginTop */ public static final int ConstraintSet_android_layout_marginTop=6; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_width} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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 ConstraintSet_android_layout_width=3; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #ConstraintSet} array. * * <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 ConstraintSet_android_orientation=0; /** * <p>This symbol is the offset where the {@link android.R.attr#rotation} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotation */ public static final int ConstraintSet_android_rotation=16; /** * <p>This symbol is the offset where the {@link android.R.attr#rotationX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotationX */ public static final int ConstraintSet_android_rotationX=17; /** * <p>This symbol is the offset where the {@link android.R.attr#rotationY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotationY */ public static final int ConstraintSet_android_rotationY=18; /** * <p>This symbol is the offset where the {@link android.R.attr#scaleX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:scaleX */ public static final int ConstraintSet_android_scaleX=14; /** * <p>This symbol is the offset where the {@link android.R.attr#scaleY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:scaleY */ public static final int ConstraintSet_android_scaleY=15; /** * <p>This symbol is the offset where the {@link android.R.attr#transformPivotX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:transformPivotX */ public static final int ConstraintSet_android_transformPivotX=10; /** * <p>This symbol is the offset where the {@link android.R.attr#transformPivotY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:transformPivotY */ public static final int ConstraintSet_android_transformPivotY=11; /** * <p>This symbol is the offset where the {@link android.R.attr#translationX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:translationX */ public static final int ConstraintSet_android_translationX=12; /** * <p>This symbol is the offset where the {@link android.R.attr#translationY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:translationY */ public static final int ConstraintSet_android_translationY=13; /** * <p>This symbol is the offset where the {@link android.R.attr#translationZ} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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:translationZ */ public static final int ConstraintSet_android_translationZ=21; /** * <p>This symbol is the offset where the {@link android.R.attr#visibility} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>gone</td><td>2</td><td></td></tr> * <tr><td>invisible</td><td>1</td><td></td></tr> * <tr><td>visible</td><td>0</td><td></td></tr> * </table> * * @attr name android:visibility */ public static final int ConstraintSet_android_visibility=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constrainedHeight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:layout_constrainedHeight */ public static final int ConstraintSet_layout_constrainedHeight=23; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constrainedWidth} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:layout_constrainedWidth */ public static final int ConstraintSet_layout_constrainedWidth=24; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintBaseline_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintBaseline_creator */ public static final int ConstraintSet_layout_constraintBaseline_creator=25; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintBaseline_toBaselineOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf=26; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintBottom_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintBottom_creator */ public static final int ConstraintSet_layout_constraintBottom_creator=27; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintBottom_toBottomOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintBottom_toBottomOf */ public static final int ConstraintSet_layout_constraintBottom_toBottomOf=28; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintBottom_toTopOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintBottom_toTopOf */ public static final int ConstraintSet_layout_constraintBottom_toTopOf=29; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintCircle} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.example.mobilesafe.test:layout_constraintCircle */ public static final int ConstraintSet_layout_constraintCircle=30; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintCircleAngle} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintCircleAngle */ public static final int ConstraintSet_layout_constraintCircleAngle=31; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintCircleRadius} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_constraintCircleRadius */ public static final int ConstraintSet_layout_constraintCircleRadius=32; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintDimensionRatio} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:layout_constraintDimensionRatio */ public static final int ConstraintSet_layout_constraintDimensionRatio=33; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintEnd_toEndOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintEnd_toEndOf */ public static final int ConstraintSet_layout_constraintEnd_toEndOf=34; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintEnd_toStartOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintEnd_toStartOf */ public static final int ConstraintSet_layout_constraintEnd_toStartOf=35; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintGuide_begin} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_constraintGuide_begin */ public static final int ConstraintSet_layout_constraintGuide_begin=36; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintGuide_end} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_constraintGuide_end */ public static final int ConstraintSet_layout_constraintGuide_end=37; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintGuide_percent} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintGuide_percent */ public static final int ConstraintSet_layout_constraintGuide_percent=38; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHeight_default} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintHeight_default */ public static final int ConstraintSet_layout_constraintHeight_default=39; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHeight_max} * attribute's value can be found in the {@link #ConstraintSet} 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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintHeight_max */ public static final int ConstraintSet_layout_constraintHeight_max=40; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHeight_min} * attribute's value can be found in the {@link #ConstraintSet} 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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintHeight_min */ public static final int ConstraintSet_layout_constraintHeight_min=41; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHeight_percent} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintHeight_percent */ public static final int ConstraintSet_layout_constraintHeight_percent=42; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHorizontal_bias} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintHorizontal_bias */ public static final int ConstraintSet_layout_constraintHorizontal_bias=43; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHorizontal_chainStyle} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintHorizontal_chainStyle */ public static final int ConstraintSet_layout_constraintHorizontal_chainStyle=44; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintHorizontal_weight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintHorizontal_weight */ public static final int ConstraintSet_layout_constraintHorizontal_weight=45; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintLeft_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintLeft_creator */ public static final int ConstraintSet_layout_constraintLeft_creator=46; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintLeft_toLeftOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintLeft_toLeftOf */ public static final int ConstraintSet_layout_constraintLeft_toLeftOf=47; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintLeft_toRightOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintLeft_toRightOf */ public static final int ConstraintSet_layout_constraintLeft_toRightOf=48; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintRight_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintRight_creator */ public static final int ConstraintSet_layout_constraintRight_creator=49; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintRight_toLeftOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintRight_toLeftOf */ public static final int ConstraintSet_layout_constraintRight_toLeftOf=50; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintRight_toRightOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintRight_toRightOf */ public static final int ConstraintSet_layout_constraintRight_toRightOf=51; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintStart_toEndOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintStart_toEndOf */ public static final int ConstraintSet_layout_constraintStart_toEndOf=52; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintStart_toStartOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintStart_toStartOf */ public static final int ConstraintSet_layout_constraintStart_toStartOf=53; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintTop_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.example.mobilesafe.test:layout_constraintTop_creator */ public static final int ConstraintSet_layout_constraintTop_creator=54; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintTop_toBottomOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintTop_toBottomOf */ public static final int ConstraintSet_layout_constraintTop_toBottomOf=55; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintTop_toTopOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></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>parent</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintTop_toTopOf */ public static final int ConstraintSet_layout_constraintTop_toTopOf=56; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintVertical_bias} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintVertical_bias */ public static final int ConstraintSet_layout_constraintVertical_bias=57; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintVertical_chainStyle} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintVertical_chainStyle */ public static final int ConstraintSet_layout_constraintVertical_chainStyle=58; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintVertical_weight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintVertical_weight */ public static final int ConstraintSet_layout_constraintVertical_weight=59; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintWidth_default} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintWidth_default */ public static final int ConstraintSet_layout_constraintWidth_default=60; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintWidth_max} * attribute's value can be found in the {@link #ConstraintSet} 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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintWidth_max */ public static final int ConstraintSet_layout_constraintWidth_max=61; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintWidth_min} * attribute's value can be found in the {@link #ConstraintSet} 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>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:layout_constraintWidth_min */ public static final int ConstraintSet_layout_constraintWidth_min=62; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_constraintWidth_percent} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.example.mobilesafe.test:layout_constraintWidth_percent */ public static final int ConstraintSet_layout_constraintWidth_percent=63; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_editor_absoluteX} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_editor_absoluteX */ public static final int ConstraintSet_layout_editor_absoluteX=64; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_editor_absoluteY} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_editor_absoluteY */ public static final int ConstraintSet_layout_editor_absoluteY=65; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginBottom} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_goneMarginBottom */ public static final int ConstraintSet_layout_goneMarginBottom=66; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginEnd} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_goneMarginEnd */ public static final int ConstraintSet_layout_goneMarginEnd=67; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginLeft} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_goneMarginLeft */ public static final int ConstraintSet_layout_goneMarginLeft=68; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginRight} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_goneMarginRight */ public static final int ConstraintSet_layout_goneMarginRight=69; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginStart} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_goneMarginStart */ public static final int ConstraintSet_layout_goneMarginStart=70; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout_goneMarginTop} * attribute's value can be found in the {@link #ConstraintSet} 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.example.mobilesafe.test:layout_goneMarginTop */ public static final int ConstraintSet_layout_goneMarginTop=71; /** * Attributes that can be used with a DrawerArrowToggle. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.example.mobilesafe.test:arrowHeadLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.example.mobilesafe.test:arrowShaftLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_barLength com.example.mobilesafe.test:barLength}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_color com.example.mobilesafe.test:color}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.example.mobilesafe.test:drawableSize}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.example.mobilesafe.test:gapBetweenBars}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_spinBars com.example.mobilesafe.test:spinBars}</code></td><td></td></tr> * <tr><td><code>{@link #DrawerArrowToggle_thickness com.example.mobilesafe.test:thickness}</code></td><td></td></tr> * </table> * @see #DrawerArrowToggle_arrowHeadLength * @see #DrawerArrowToggle_arrowShaftLength * @see #DrawerArrowToggle_barLength * @see #DrawerArrowToggle_color * @see #DrawerArrowToggle_drawableSize * @see #DrawerArrowToggle_gapBetweenBars * @see #DrawerArrowToggle_spinBars * @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle={ 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004c, 0x7f02006c, 0x7f020080, 0x7f0200f5, 0x7f020112 }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#arrowHeadLength} * attribute's value can be found in the {@link #DrawerArrowToggle} 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.example.mobilesafe.test:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength=0; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#arrowShaftLength} * attribute's value can be found in the {@link #DrawerArrowToggle} 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.example.mobilesafe.test:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#barLength} * attribute's value can be found in the {@link #DrawerArrowToggle} 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.example.mobilesafe.test:barLength */ public static final int DrawerArrowToggle_barLength=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#color} * attribute's value can be found in the {@link #DrawerArrowToggle} 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.example.mobilesafe.test:color */ public static final int DrawerArrowToggle_color=3; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#drawableSize} * attribute's value can be found in the {@link #DrawerArrowToggle} 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.example.mobilesafe.test:drawableSize */ public static final int DrawerArrowToggle_drawableSize=4; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#gapBetweenBars} * attribute's value can be found in the {@link #DrawerArrowToggle} 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.example.mobilesafe.test:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars=5; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#spinBars} * attribute's value can be found in the {@link #DrawerArrowToggle} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:spinBars */ public static final int DrawerArrowToggle_spinBars=6; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#thickness} * attribute's value can be found in the {@link #DrawerArrowToggle} 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.example.mobilesafe.test:thickness */ public static final int DrawerArrowToggle_thickness=7; /** * 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.example.mobilesafe.test:fontProviderAuthority}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderCerts com.example.mobilesafe.test:fontProviderCerts}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.example.mobilesafe.test:fontProviderFetchStrategy}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.example.mobilesafe.test:fontProviderFetchTimeout}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderPackage com.example.mobilesafe.test:fontProviderPackage}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamily_fontProviderQuery com.example.mobilesafe.test:fontProviderQuery}</code></td><td></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={ 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d }; /** * 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_font com.example.mobilesafe.test:font}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_fontStyle com.example.mobilesafe.test:fontStyle}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_fontWeight com.example.mobilesafe.test:fontWeight}</code></td><td></td></tr> * </table> * @see #FontFamilyFont_font * @see #FontFamilyFont_fontStyle * @see #FontFamilyFont_fontWeight */ public static final int[] FontFamilyFont={ 0x7f020076, 0x7f02007e, 0x7f02007f }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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 com.example.mobilesafe.test:font */ public static final int FontFamilyFont_font=0; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#fontStyle} * attribute's value can be found in the {@link #FontFamilyFont} 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>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:fontStyle */ public static final int FontFamilyFont_fontStyle=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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 com.example.mobilesafe.test:fontWeight */ public static final int FontFamilyFont_fontWeight=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#fontProviderAuthority} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority=0; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#fontProviderCerts} * attribute's value can be found in the {@link #FontFamily} 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.example.mobilesafe.test:fontProviderCerts */ public static final int FontFamily_fontProviderCerts=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#fontProviderFetchStrategy} * attribute's value can be found in the {@link #FontFamily} 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>async</td><td>1</td><td></td></tr> * <tr><td>blocking</td><td>0</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#fontProviderFetchTimeout} * attribute's value can be found in the {@link #FontFamily} array. * * <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></td></tr> * </table> * * @attr name com.example.mobilesafe.test:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout=3; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#fontProviderPackage} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:fontProviderPackage */ public static final int FontFamily_fontProviderPackage=4; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#fontProviderQuery} * attribute's value can be found in the {@link #FontFamily} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:fontProviderQuery */ public static final int FontFamily_fontProviderQuery=5; /** * Attributes that can be used with a LinearConstraintLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearConstraintLayout_android_orientation android:orientation}</code></td><td></td></tr> * </table> * @see #LinearConstraintLayout_android_orientation */ public static final int[] LinearConstraintLayout={ 0x010100c4 }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #LinearConstraintLayout} array. * * <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 LinearConstraintLayout_android_orientation=0; /** * Attributes that can be used with a LinearLayoutCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_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.example.mobilesafe.test:divider}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.example.mobilesafe.test:dividerPadding}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.example.mobilesafe.test:measureWithLargestChild}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_showDividers com.example.mobilesafe.test:showDividers}</code></td><td></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, 0x7f020068, 0x7f02006a, 0x7f0200d0, 0x7f0200f1 }; /** * 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_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; /** * <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#baselineAligned} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <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>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <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>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #LinearLayoutCompat} 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 LinearLayoutCompat_android_orientation=1; /** * <p>This symbol is the offset where the {@link android.R.attr#weightSum} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <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>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#divider} * attribute's value can be found in the {@link #LinearLayoutCompat} 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.example.mobilesafe.test:divider */ public static final int LinearLayoutCompat_divider=5; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#dividerPadding} * attribute's value can be found in the {@link #LinearLayoutCompat} 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.example.mobilesafe.test:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding=6; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#measureWithLargestChild} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild=7; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#showDividers} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>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.example.mobilesafe.test:showDividers */ public static final int LinearLayoutCompat_showDividers=8; /** * Attributes that can be used with a ListPopupWindow. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> * <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> * </table> * @see #ListPopupWindow_android_dropDownHorizontalOffset * @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow={ 0x010102ac, 0x010102ad }; /** * <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} * attribute's value can be found in the {@link #ListPopupWindow} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} * attribute's value can be found in the {@link #ListPopupWindow} 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:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset=1; /** * Attributes that can be used with a MenuGroup. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuGroup_android_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>This symbol is the offset where the {@link android.R.attr#checkableBehavior} * attribute's value can be found in the {@link #MenuGroup} 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>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; /** * <p>This symbol is the offset where the {@link android.R.attr#enabled} * attribute's value can be found in the {@link #MenuGroup} array. * * <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>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #MenuGroup} 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 MenuGroup_android_id=1; /** * <p>This symbol is the offset where the {@link android.R.attr#menuCategory} * attribute's value can be found in the {@link #MenuGroup} array. * * <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>This symbol is the offset where the {@link android.R.attr#orderInCategory} * attribute's value can be found in the {@link #MenuGroup} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory=4; /** * <p>This symbol is the offset where the {@link android.R.attr#visible} * attribute's value can be found in the {@link #MenuGroup} array. * * <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; /** * 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.example.mobilesafe.test:actionLayout}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionProviderClass com.example.mobilesafe.test:actionProviderClass}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionViewClass com.example.mobilesafe.test:actionViewClass}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_alphabeticModifiers com.example.mobilesafe.test:alphabeticModifiers}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_contentDescription com.example.mobilesafe.test:contentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_iconTint com.example.mobilesafe.test:iconTint}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_iconTintMode com.example.mobilesafe.test:iconTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_numericModifiers com.example.mobilesafe.test:numericModifiers}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_showAsAction com.example.mobilesafe.test:showAsAction}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_tooltipText com.example.mobilesafe.test:tooltipText}</code></td><td></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, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f02005b, 0x7f020087, 0x7f020088, 0x7f0200d5, 0x7f0200f0, 0x7f020129 }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionLayout} * attribute's value can be found in the {@link #MenuItem} 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.example.mobilesafe.test:actionLayout */ public static final int MenuItem_actionLayout=13; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionProviderClass} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:actionProviderClass */ public static final int MenuItem_actionProviderClass=14; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#actionViewClass} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:actionViewClass */ public static final int MenuItem_actionViewClass=15; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#alphabeticModifiers} * attribute's value can be found in the {@link #MenuItem} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>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.example.mobilesafe.test:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers=16; /** * <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} * attribute's value can be found in the {@link #MenuItem} array. * * <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>This symbol is the offset where the {@link android.R.attr#checkable} * attribute's value can be found in the {@link #MenuItem} array. * * <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>This symbol is the offset where the {@link android.R.attr#checked} * attribute's value can be found in the {@link #MenuItem} array. * * <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>This symbol is the offset where the {@link android.R.attr#enabled} * attribute's value can be found in the {@link #MenuItem} array. * * <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>This symbol is the offset where the {@link android.R.attr#icon} * attribute's value can be found in the {@link #MenuItem} 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 MenuItem_android_icon=0; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>This symbol is the offset where the {@link android.R.attr#menuCategory} * attribute's value can be found in the {@link #MenuItem} 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>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>This symbol is the offset where the {@link android.R.attr#numericShortcut} * attribute's value can be found in the {@link #MenuItem} array. * * <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>This symbol is the offset where the {@link android.R.attr#onClick} * attribute's value can be found in the {@link #MenuItem} array. * * <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>This symbol is the offset where the {@link android.R.attr#orderInCategory} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory=6; /** * <p>This symbol is the offset where the {@link android.R.attr#title} * attribute's value can be found in the {@link #MenuItem} array. * * <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>This symbol is the offset where the {@link android.R.attr#titleCondensed} * attribute's value can be found in the {@link #MenuItem} array. * * <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>This symbol is the offset where the {@link android.R.attr#visible} * attribute's value can be found in the {@link #MenuItem} array. * * <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>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentDescription} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:contentDescription */ public static final int MenuItem_contentDescription=17; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#iconTint} * attribute's value can be found in the {@link #MenuItem} 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.example.mobilesafe.test:iconTint */ public static final int MenuItem_iconTint=18; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#iconTintMode} * attribute's value can be found in the {@link #MenuItem} 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.example.mobilesafe.test:iconTintMode */ public static final int MenuItem_iconTintMode=19; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#numericModifiers} * attribute's value can be found in the {@link #MenuItem} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>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.example.mobilesafe.test:numericModifiers */ public static final int MenuItem_numericModifiers=20; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#showAsAction} * attribute's value can be found in the {@link #MenuItem} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>always</td><td>2</td><td></td></tr> * <tr><td>collapseActionView</td><td>8</td><td></td></tr> * <tr><td>ifRoom</td><td>1</td><td></td></tr> * <tr><td>never</td><td>0</td><td></td></tr> * <tr><td>withText</td><td>4</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:showAsAction */ public static final int MenuItem_showAsAction=21; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#tooltipText} * attribute's value can be found in the {@link #MenuItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test: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.example.mobilesafe.test:preserveIconSpacing}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_subMenuArrow com.example.mobilesafe.test:subMenuArrow}</code></td><td></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, 0x7f0200e1, 0x7f0200fb }; /** * <p>This symbol is the offset where the {@link android.R.attr#headerBackground} * attribute's value can be found in the {@link #MenuView} 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:headerBackground */ public static final int MenuView_android_headerBackground=4; /** * <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>This symbol is the offset where the {@link android.R.attr#itemBackground} * attribute's value can be found in the {@link #MenuView} 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:itemBackground */ public static final int MenuView_android_itemBackground=5; /** * <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} * attribute's value can be found in the {@link #MenuView} array. * * <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>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} * attribute's value can be found in the {@link #MenuView} 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:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance=1; /** * <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} * attribute's value can be found in the {@link #MenuView} 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 MenuView_android_windowAnimationStyle=0; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#preserveIconSpacing} * attribute's value can be found in the {@link #MenuView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing=7; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#subMenuArrow} * attribute's value can be found in the {@link #MenuView} 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.example.mobilesafe.test:subMenuArrow */ public static final int MenuView_subMenuArrow=8; /** * 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.example.mobilesafe.test:overlapAnchor}</code></td><td></td></tr> * </table> * @see #PopupWindow_android_popupBackground * @see #PopupWindow_android_popupAnimationStyle * @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow={ 0x01010176, 0x010102c9, 0x7f0200d6 }; /** * Attributes that can be used with a PopupWindowBackgroundState. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.example.mobilesafe.test:state_above_anchor}</code></td><td></td></tr> * </table> * @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState={ 0x7f0200fa }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#state_above_anchor} * attribute's value can be found in the {@link #PopupWindowBackgroundState} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor=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>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 com.example.mobilesafe.test.R.attr#overlapAnchor} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:overlapAnchor */ public static final int PopupWindow_overlapAnchor=2; /** * 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.example.mobilesafe.test:paddingBottomNoButtons}</code></td><td></td></tr> * <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.example.mobilesafe.test:paddingTopNoTitle}</code></td><td></td></tr> * </table> * @see #RecycleListView_paddingBottomNoButtons * @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView={ 0x7f0200d7, 0x7f0200da }; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#paddingBottomNoButtons} * attribute's value can be found in the {@link #RecycleListView} 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.example.mobilesafe.test:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons=0; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#paddingTopNoTitle} * attribute's value can be found in the {@link #RecycleListView} 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.example.mobilesafe.test:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle=1; /** * 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.example.mobilesafe.test:closeIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_commitIcon com.example.mobilesafe.test:commitIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_defaultQueryHint com.example.mobilesafe.test:defaultQueryHint}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_goIcon com.example.mobilesafe.test:goIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_iconifiedByDefault com.example.mobilesafe.test:iconifiedByDefault}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_layout com.example.mobilesafe.test:layout}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_queryBackground com.example.mobilesafe.test:queryBackground}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_queryHint com.example.mobilesafe.test:queryHint}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_searchHintIcon com.example.mobilesafe.test:searchHintIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_searchIcon com.example.mobilesafe.test:searchIcon}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_submitBackground com.example.mobilesafe.test:submitBackground}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_suggestionRowLayout com.example.mobilesafe.test:suggestionRowLayout}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_voiceIcon com.example.mobilesafe.test:voiceIcon}</code></td><td></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, 0x7f020048, 0x7f020057, 0x7f020064, 0x7f020081, 0x7f020089, 0x7f02008f, 0x7f0200e4, 0x7f0200e5, 0x7f0200ea, 0x7f0200eb, 0x7f0200fc, 0x7f020101, 0x7f02012d }; /** * <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>This symbol is the offset where the {@link android.R.attr#imeOptions} * attribute's value can be found in the {@link #SearchView} 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>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>This symbol is the offset where the {@link android.R.attr#inputType} * attribute's value can be found in the {@link #SearchView} 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>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>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #SearchView} 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 SearchView_android_maxWidth=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#closeIcon} * attribute's value can be found in the {@link #SearchView} 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.example.mobilesafe.test:closeIcon */ public static final int SearchView_closeIcon=4; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#commitIcon} * attribute's value can be found in the {@link #SearchView} 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.example.mobilesafe.test:commitIcon */ public static final int SearchView_commitIcon=5; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#defaultQueryHint} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:defaultQueryHint */ public static final int SearchView_defaultQueryHint=6; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#goIcon} * attribute's value can be found in the {@link #SearchView} 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.example.mobilesafe.test:goIcon */ public static final int SearchView_goIcon=7; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#iconifiedByDefault} * 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>". * * @attr name com.example.mobilesafe.test:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault=8; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#layout} * attribute's value can be found in the {@link #SearchView} 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.example.mobilesafe.test:layout */ public static final int SearchView_layout=9; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#queryBackground} * attribute's value can be found in the {@link #SearchView} 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.example.mobilesafe.test:queryBackground */ public static final int SearchView_queryBackground=10; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#queryHint} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.example.mobilesafe.test:queryHint */ public static final int SearchView_queryHint=11; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#searchHintIcon} * attribute's value can be found in the {@link #SearchView} 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.example.mobilesafe.test:searchHintIcon */ public static final int SearchView_searchHintIcon=12; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#searchIcon} * attribute's value can be found in the {@link #SearchView} 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.example.mobilesafe.test:searchIcon */ public static final int SearchView_searchIcon=13; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#submitBackground} * attribute's value can be found in the {@link #SearchView} 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.example.mobilesafe.test:submitBackground */ public static final int SearchView_submitBackground=14; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#suggestionRowLayout} * attribute's value can be found in the {@link #SearchView} 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.example.mobilesafe.test:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout=15; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#voiceIcon} * attribute's value can be found in the {@link #SearchView} 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.example.mobilesafe.test:voiceIcon */ public static final int SearchView_voiceIcon=16; /** * 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.example.mobilesafe.test:popupTheme}</code></td><td></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, 0x7f0200df }; /** * <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} * attribute's value can be found in the {@link #Spinner} 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:dropDownWidth */ public static final int Spinner_android_dropDownWidth=3; /** * <p>This symbol is the offset where the {@link android.R.attr#entries} * attribute's value can be found in the {@link #Spinner} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>This symbol is the offset where the {@link android.R.attr#popupBackground} * attribute's value can be found in the {@link #Spinner} 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 Spinner_android_popupBackground=1; /** * <p>This symbol is the offset where the {@link android.R.attr#prompt} * attribute's value can be found in the {@link #Spinner} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#popupTheme} * attribute's value can be found in the {@link #Spinner} 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.example.mobilesafe.test:popupTheme */ public static final int Spinner_popupTheme=4; /** * Attributes that can be used with a SwitchCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SwitchCompat_android_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.example.mobilesafe.test:showText}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_splitTrack com.example.mobilesafe.test:splitTrack}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchMinWidth com.example.mobilesafe.test:switchMinWidth}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchPadding com.example.mobilesafe.test:switchPadding}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.example.mobilesafe.test:switchTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.example.mobilesafe.test:thumbTextPadding}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTint com.example.mobilesafe.test:thumbTint}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTintMode com.example.mobilesafe.test:thumbTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_track com.example.mobilesafe.test:track}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_trackTint com.example.mobilesafe.test:trackTint}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_trackTintMode com.example.mobilesafe.test:trackTintMode}</code></td><td></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, 0x7f0200f2, 0x7f0200f8, 0x7f020102, 0x7f020103, 0x7f020105, 0x7f020113, 0x7f020114, 0x7f020115, 0x7f02012a, 0x7f02012b, 0x7f02012c }; /** * <p>This symbol is the offset where the {@link android.R.attr#textOff} * attribute's value can be found in the {@link #SwitchCompat} array. * * <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>This symbol is the offset where the {@link android.R.attr#textOn} * attribute's value can be found in the {@link #SwitchCompat} array. * * <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>This symbol is the offset where the {@link android.R.attr#thumb} * attribute's value can be found in the {@link #SwitchCompat} 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 SwitchCompat_android_thumb=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#showText} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:showText */ public static final int SwitchCompat_showText=3; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#splitTrack} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.example.mobilesafe.test:splitTrack */ public static final int SwitchCompat_splitTrack=4; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#switchMinWidth} * attribute's value can be found in the {@link #SwitchCompat} 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.example.mobilesafe.test:switchMinWidth */ public static final int SwitchCompat_switchMinWidth=5; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#switchPadding} * attribute's value can be found in the {@link #SwitchCompat} 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.example.mobilesafe.test:switchPadding */ public static final int SwitchCompat_switchPadding=6; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#switchTextAppearance} * attribute's value can be found in the {@link #SwitchCompat} 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.example.mobilesafe.test:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance=7; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#thumbTextPadding} * attribute's value can be found in the {@link #SwitchCompat} 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.example.mobilesafe.test:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding=8; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#thumbTint} * attribute's value can be found in the {@link #SwitchCompat} 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.example.mobilesafe.test:thumbTint */ public static final int SwitchCompat_thumbTint=9; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#thumbTintMode} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>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.example.mobilesafe.test:thumbTintMode */ public static final int SwitchCompat_thumbTintMode=10; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#track} * attribute's value can be found in the {@link #SwitchCompat} 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.example.mobilesafe.test:track */ public static final int SwitchCompat_track=11; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#trackTint} * attribute's value can be found in the {@link #SwitchCompat} 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.example.mobilesafe.test:trackTint */ public static final int SwitchCompat_trackTint=12; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#trackTintMode} * attribute's value can be found in the {@link #SwitchCompat} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>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.example.mobilesafe.test:trackTintMode */ public static final int SwitchCompat_trackTintMode=13; /** * 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.example.mobilesafe.test:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_textAllCaps com.example.mobilesafe.test:textAllCaps}</code></td><td></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, 0x7f020077, 0x7f020106 }; /** * <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>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#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#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#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#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 com.example.mobilesafe.test.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 com.example.mobilesafe.test:fontFamily */ public static final int TextAppearance_fontFamily=11; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#textAllCaps} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or 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.example.mobilesafe.test:textAllCaps */ public static final int TextAppearance_textAllCaps=12; /** * 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.example.mobilesafe.test:buttonGravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseContentDescription com.example.mobilesafe.test:collapseContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseIcon com.example.mobilesafe.test:collapseIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEnd com.example.mobilesafe.test:contentInsetEnd}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.example.mobilesafe.test:contentInsetEndWithActions}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetLeft com.example.mobilesafe.test:contentInsetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetRight com.example.mobilesafe.test:contentInsetRight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStart com.example.mobilesafe.test:contentInsetStart}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.example.mobilesafe.test:contentInsetStartWithNavigation}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_logo com.example.mobilesafe.test:logo}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_logoDescription com.example.mobilesafe.test:logoDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_maxButtonHeight com.example.mobilesafe.test:maxButtonHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationContentDescription com.example.mobilesafe.test:navigationContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationIcon com.example.mobilesafe.test:navigationIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_popupTheme com.example.mobilesafe.test:popupTheme}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitle com.example.mobilesafe.test:subtitle}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.example.mobilesafe.test:subtitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextColor com.example.mobilesafe.test:subtitleTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_title com.example.mobilesafe.test:title}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargin com.example.mobilesafe.test:titleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginBottom com.example.mobilesafe.test:titleMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginEnd com.example.mobilesafe.test:titleMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginStart com.example.mobilesafe.test:titleMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMarginTop com.example.mobilesafe.test:titleMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargins com.example.mobilesafe.test:titleMargins}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextAppearance com.example.mobilesafe.test:titleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextColor com.example.mobilesafe.test:titleTextColor}</code></td><td></td></tr> * </table> * @see #Toolbar_android_gravity * @see #Toolbar_android_minHeight * @see #Toolbar_buttonGravity * @see #Toolbar_collapseContentDescription * @see #Toolbar_collapseIcon * @see #Toolbar_contentInsetEnd * @see #Toolbar_contentInsetEndWithActions * @see #Toolbar_contentInsetLeft * @see #Toolbar_contentInsetRight * @see #Toolbar_contentInsetStart * @see #Toolbar_contentInsetStartWithNavigation * @see #Toolbar_logo * @see #Toolbar_logoDescription * @see #Toolbar_maxButtonHeight * @see #Toolbar_navigationContentDescription * @see #Toolbar_navigationIcon * @see #Toolbar_popupTheme * @see #Toolbar_subtitle * @see #Toolbar_subtitleTextAppearance * @see #Toolbar_subtitleTextColor * @see #Toolbar_title * @see #Toolbar_titleMargin * @see #Toolbar_titleMarginBottom * @see #Toolbar_titleMarginEnd * @see #Toolbar_titleMarginStart * @see #Toolbar_titleMarginTop * @see #Toolbar_titleMargins * @see #Toolbar_titleTextAppearance * @see #Toolbar_titleTextColor */ public static final int[] Toolbar={ 0x010100af, 0x01010140, 0x7f02003f, 0x7f02004a, 0x7f02004b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d2, 0x7f0200d3, 0x7f0200df, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, 0x7f02011f, 0x7f020120, 0x7f020121, 0x7f020122, 0x7f020123 }; /** * <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.example.mobilesafe.test.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></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.example.mobilesafe.test:buttonGravity */ public static final int Toolbar_buttonGravity=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#collapseContentDescription} * 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.example.mobilesafe.test:collapseContentDescription */ public static final int Toolbar_collapseContentDescription=3; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#collapseIcon} * 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.example.mobilesafe.test:collapseIcon */ public static final int Toolbar_collapseIcon=4; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetEnd} * 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.example.mobilesafe.test:contentInsetEnd */ public static final int Toolbar_contentInsetEnd=5; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetEndWithActions} * 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.example.mobilesafe.test:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions=6; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetLeft} * 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.example.mobilesafe.test:contentInsetLeft */ public static final int Toolbar_contentInsetLeft=7; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetRight} * 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.example.mobilesafe.test:contentInsetRight */ public static final int Toolbar_contentInsetRight=8; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetStart} * 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.example.mobilesafe.test:contentInsetStart */ public static final int Toolbar_contentInsetStart=9; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#contentInsetStartWithNavigation} * 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.example.mobilesafe.test:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation=10; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#logo} * 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.example.mobilesafe.test:logo */ public static final int Toolbar_logo=11; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#logoDescription} * 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.example.mobilesafe.test:logoDescription */ public static final int Toolbar_logoDescription=12; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:maxButtonHeight */ public static final int Toolbar_maxButtonHeight=13; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#navigationContentDescription} * 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.example.mobilesafe.test:navigationContentDescription */ public static final int Toolbar_navigationContentDescription=14; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#navigationIcon} * 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.example.mobilesafe.test:navigationIcon */ public static final int Toolbar_navigationIcon=15; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#popupTheme} * 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.example.mobilesafe.test:popupTheme */ public static final int Toolbar_popupTheme=16; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#subtitle} * 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.example.mobilesafe.test:subtitle */ public static final int Toolbar_subtitle=17; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance=18; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#subtitleTextColor} * attribute's value can be found in the {@link #Toolbar} 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.example.mobilesafe.test:subtitleTextColor */ public static final int Toolbar_subtitleTextColor=19; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:title */ public static final int Toolbar_title=20; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#titleMargin} * 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.example.mobilesafe.test:titleMargin */ public static final int Toolbar_titleMargin=21; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#titleMarginBottom} * 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.example.mobilesafe.test:titleMarginBottom */ public static final int Toolbar_titleMarginBottom=22; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#titleMarginEnd} * 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.example.mobilesafe.test:titleMarginEnd */ public static final int Toolbar_titleMarginEnd=23; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#titleMarginStart} * 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.example.mobilesafe.test:titleMarginStart */ public static final int Toolbar_titleMarginStart=24; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#titleMarginTop} * 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.example.mobilesafe.test:titleMarginTop */ public static final int Toolbar_titleMarginTop=25; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#titleMargins} * 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.example.mobilesafe.test:titleMargins */ public static final int Toolbar_titleMargins=26; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.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.example.mobilesafe.test:titleTextAppearance */ public static final int Toolbar_titleTextAppearance=27; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#titleTextColor} * attribute's value can be found in the {@link #Toolbar} 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.example.mobilesafe.test: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.example.mobilesafe.test:paddingEnd}</code></td><td></td></tr> * <tr><td><code>{@link #View_paddingStart com.example.mobilesafe.test:paddingStart}</code></td><td></td></tr> * <tr><td><code>{@link #View_theme com.example.mobilesafe.test:theme}</code></td><td></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, 0x7f0200d8, 0x7f0200d9, 0x7f020111 }; /** * Attributes that can be used with a ViewBackgroundHelper. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.example.mobilesafe.test:backgroundTint}</code></td><td></td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.example.mobilesafe.test:backgroundTintMode}</code></td><td></td></tr> * </table> * @see #ViewBackgroundHelper_android_background * @see #ViewBackgroundHelper_backgroundTint * @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper={ 0x010100d4, 0x7f020034, 0x7f020035 }; /** * <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>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#backgroundTint} * attribute's value can be found in the {@link #ViewBackgroundHelper} 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.example.mobilesafe.test:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint=1; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#backgroundTintMode} * attribute's value can be found in the {@link #ViewBackgroundHelper} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>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.example.mobilesafe.test: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>This symbol is the offset where the {@link android.R.attr#inflatedId} * 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:inflatedId */ public static final int ViewStubCompat_android_inflatedId=2; /** * <p>This symbol is the offset where the {@link android.R.attr#layout} * attribute's value can be found in the {@link #ViewStubCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>This symbol is the offset where the {@link android.R.attr#focusable} * attribute's value can be found in the {@link #View} 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 View_android_focusable=1; /** * <p>This symbol is the offset where the {@link android.R.attr#theme} * attribute's value can be found in the {@link #View} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>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>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#paddingEnd} * attribute's value can be found in the {@link #View} 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.example.mobilesafe.test:paddingEnd */ public static final int View_paddingEnd=2; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#paddingStart} * attribute's value can be found in the {@link #View} 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.example.mobilesafe.test:paddingStart */ public static final int View_paddingStart=3; /** * <p>This symbol is the offset where the {@link com.example.mobilesafe.test.R.attr#theme} * attribute's value can be found in the {@link #View} 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.example.mobilesafe.test:theme */ public static final int View_theme=4; } }
[ "719078007@qq.com" ]
719078007@qq.com
35b76e13c81d48ffcad1d8ebdcf32a39ac3a09c1
ce3f4af489020ad7ab2bbbbec512c93d07ac0bfd
/src/main/java/com/sbmssc/beerorder/app/sbmsscbeerorderservice/web/mappers/BeerOrderMapper.java
d606114b79155594da3ef43abde9ce6efed5bf4e
[]
no_license
habtom-wmichael/sbmssc-beer-order-service
dea26ace65f02c64cd8276cc603c5774f968a739
8c8ed733d69c0d3b88c0faba36c8c00ee45e6105
refs/heads/master
2022-11-17T18:13:09.725647
2020-07-12T08:18:57
2020-07-12T08:18:57
278,997,138
0
0
null
2020-07-12T08:18:59
2020-07-12T05:22:09
Java
UTF-8
Java
false
false
544
java
package com.sbmssc.beerorder.app.sbmsscbeerorderservice.web.mappers; import com.sbmssc.beerorder.app.sbmsscbeerorderservice.domains.BeerOrder; import com.sbmssc.beerorder.app.sbmsscbeerorderservice.web.model.BeerOrderDto; import org.mapstruct.Mapper; import org.mapstruct.Mapping; @Mapper(uses = {DateMapper.class, BeerOrderLineMapper.class}) public interface BeerOrderMapper { @Mapping(target = "customerId",source = "customer.id") BeerOrderDto beerOrderToDto(BeerOrder beerOrder); BeerOrder dtoToBeerOrder(BeerOrderDto dto); }
[ "yaduhat@gmail.com" ]
yaduhat@gmail.com
73b52a0cb96ab3ec97a7d9ec9625cf8d66681819
9a9a1911d5a46e1b2e3dafea03c4fc29243b5dd7
/DRTS/src/gov/ed/fsa/drts/bean/PageMsg.java
6d66e2954c58591e48d9177bbedcffc0b0e01157
[]
no_license
gusgustafsen/drts
988014c0641f9979e49f3c964095f82eb1c843df
f842c6a5ec014a2451ac394ee8ab294d5a029b87
refs/heads/master
2020-04-07T18:49:08.884262
2017-07-14T02:42:31
2017-07-14T02:42:31
158,624,659
0
0
null
null
null
null
UTF-8
Java
false
false
2,194
java
package gov.ed.fsa.drts.bean; import java.text.MessageFormat; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; import gov.ed.fsa.drts.util.DrtsUtils; @ManagedBean(name = "PageMsg") @SessionScoped public class PageMsg { private String message; private Messages messageKey; private String[] messageList; private boolean display = false; private PageMsgSeverity severity; private boolean errMsg = false; private boolean warnMsg = false; private boolean successMsg = false; public void createMsg(final Messages msgKey, final PageMsgSeverity severity, final String... msgArgs) { messageKey = msgKey; int len = msgArgs.length; messageList = new String[len]; for (int i = 0; i < len; i++) { messageList[i] = msgArgs[i]; } // getMessage(); display = true; setSeverityFlag(severity); } public void createMsg(final Messages msgKey, PageMsgSeverity severity) { messageKey = msgKey; display = true; setSeverityFlag(severity); message = ""; } public void createMsg(final String msg, PageMsgSeverity severity) { message = msg; display = true; setSeverityFlag(severity); message = ""; } public String getMessage() { if (messageKey == null && DrtsUtils.isEmpty(message)) { return ""; } if (DrtsUtils.isEmpty(message)) { message = MessageFormat.format(messageKey.getStringValue(), (Object[]) messageList); } display = false; return message; } public void clearMessage() { messageKey = null; messageList = new String[0]; message = ""; } public boolean isDisplayMsg() { return display; } private void setSeverityFlag(PageMsgSeverity sev) { switch (sev) { case ERROR: errMsg = true; warnMsg = false; successMsg = false; break; case WARNING: errMsg = false; warnMsg = true; successMsg = false; break; case SUCCESS: errMsg = false; warnMsg = false; successMsg = true; break; case NONE: default: errMsg = false; warnMsg = false; successMsg = false; } } public boolean isErrMsg() { return errMsg; } public boolean isWarnMsg() { return warnMsg; } public boolean isSuccessMsg() { return successMsg; } }
[ "barnetm@gmail.com" ]
barnetm@gmail.com
36bee72f25d0a177ace11abc65b248160de7c844
b766da19efb83dd2c9c79010daf7d18948d2a014
/YatzyTest/src/YatzyTest.java
c7eb8c48a56fad17a84430bc95b4dadabb115c09
[]
no_license
wassen1/LTU-java
66d7a9e3c47affb77f61a77fa7a495339bf85a99
07136f9125a8e60616859e9fd04a0e2855f78740
refs/heads/master
2020-05-05T00:33:22.853980
2019-04-04T21:17:57
2019-04-04T21:17:57
179,578,542
0
0
null
null
null
null
UTF-8
Java
false
false
12,863
java
import java.util.Scanner; /* * YATSY - saknar vissa steg men är över godkändgränsen * */ public class YatzyTest { public static void main(String[] args) { boolean play; do { play = onePlayerGame(); } while(play); } //-------------------------------- // Spelar ett spel för en person //-------------------------------- public static boolean onePlayerGame() { Scanner in = new Scanner(System.in); // Texten som ska skrivas ut före poängen presenteras String[] resultBoard = { "", "Ettor", "Tvåor", "Treor", "Fyror", "Femmor", "Sexor" }; // Här lagras poängen för de olika spelhalvorna int[] points = new int[resultBoard.length]; startNewTurn(resultBoard.length-1, resultBoard, points); System.out.print("Vill du spela ett nytt spel? "); String cont = in.nextLine(); if(cont.equalsIgnoreCase("ja") || cont.equalsIgnoreCase("j")) return true; return false; } /** * En ny omgång * @param noOfTurns Antal kast som görs för en omgång (3) * @param resultBoard Resultatlistan (del 1 eller del 2) * @param points Listan med poängen * @return */ public static boolean startNewTurn(int noOfTurns, String[] resultBoard, int[] points) { final int NO_OF_DICES = 5; Scanner in = new Scanner(System.in); in.useDelimiter(":|\\s"); // Anger att en inläsning kan avslutas med : förutom av vanliga mellanslag/radbyte boolean yatsy = false; int[] dices = new int[7]; // 1-6, index noll används ej for(int i = 1; i < noOfTurns+1; i++) { System.out.println("Ny omgång, kastar tärningarna..."); // Se till så att alla tärningar är nollade clearDices(dices, 0); // Kastar tärningarna throwDices(dices, NO_OF_DICES); // Presenterar kastet graphicalPrintDices(dices); // Två återstående kast, här får man chansen att spara på tärningar mellan kasten // Man kan inte avbryta kasten i förtid, utan får alltid göra alla tre kasten for(int k = 0; k < 2; k++) { System.out.print("\nVilket värde vill du spara på (0 om inget)?"); int save = in.nextInt(); in.nextLine(); // Nu måste vi rensa inmatningsbufferten så att efterföljande inläsningar ska fungera... save = clearDices(dices, save); // Nytt kast med färre tärningar om någon tärning ska sparas throwDices(dices, NO_OF_DICES-save); graphicalPrintDices(dices); } int save = 0; do { printStatistics(resultBoard, points); // Här ska man välja var man vill föra in poängen System.out.printf("\nPoängen ska föras in på vilken rad (1-%d)? ", (resultBoard.length-1)); save = in.nextInt(); // Man ska inte kunna skriva över sparade poäng if(points[save] != 0) { System.out.print("\nDu har redan sparat " + resultBoard[save]); in.nextLine(); // Nu måste vi rensa inmatningsbufferten igen... } } while(points[save] != 0); // Summerar och sparar valda värden points[save] = sumUnits(save, dices); // Skriver ut hur många poäng som man tilldelats System.out.println("\nDin poäng för " + resultBoard[save] + " " + points[save]); in.nextLine(); // Nu måste vi rensa inmatningsbufferten igen... printStatistics(resultBoard, points); } return yatsy; } //------------------------------------------------------------------------------------------ // Skriver ut resultaten // INPARAMETRAR: int[] text - Text som inleder en rad // int[] points - Arrayen där poängen är sparad, ettor ligger på index 1 //------------------------------------------------------------------------------------------ public static void printStatistics(String[] text, int[] points) { int sum = 0, bonus = 0; for(int i = 1; i < text.length; i++) { System.out.print("\n" + text[i]); System.out.print("\t" + points[i]); sum += points[i]; } if(sum >= 63) bonus = 50; System.out.println("\n-----------"); System.out.println("Summa\t" + sum); System.out.println("Bonus\t" + bonus); System.out.println("==========="); System.out.println("TOTALT\t" + (sum + bonus)); } //------------------------------------------------------------------------------------------ // Skriver ut resultaten, för flera spelare // INPARAMETRAR: int[] text - Text som inleder en rad // int[] points - Arrayen där poängen är sparad, ettor ligger på index 1 //------------------------------------------------------------------------------------------ public static void printStatistics(String[] text, int[][] points, String[] player) { // Namnen på deltagarna skrivs ut först for(int i = 0; i < player.length; i++) System.out.print("\t" + player[i] ); for(int i = 1; i < text.length; i++) { System.out.print("\n" + text[i]); for(int j = 0; j < player.length; j++) System.out.print("\t" + points[j][i]); } System.out.println(); System.out.println(); } //##################// // STEG 1 - METODER // //##################// //------------------------------------------------------------------------------------------ // Metod som simulerar ett kast med ett antal tärningar // Frekvensen, alltså antalet ettor, tvåor osv sparas arrayen // INPARAMETRAR: int[] dices - Arrayen dit frekvensen ska sparas, ettor sparas till index 1 // så arrayen ska ha 7 platser 0-6 där index 0 inte används // int no - Antalet tärningar som ska slås //------------------------------------------------------------------------------------------ public static void throwDices(int[] dices, int no) { for(int i = 0; i < no; i++) { int number = (int)(Math.random()*6)+1; dices[number]++; } } //------------------------------------------------------------------------------------------ // Nollar tidigare kast med tärningarna men sparar alla tärningar med angivet värde // INPARAMETRAR: int[] dices - Arrayen där frekvensen är sparad, ettor ligger på index 1 // så arrayen ska ha 7 platser 0-6 där index 0 inte används // int save - Tärningsvärde som ska sparas // RETURVÄRDE: - Antal tärningar som sparas //------------------------------------------------------------------------------------------ public static int clearDices(int[] dices, int save) { int noOfSaved = dices[save]; for(int i = 1; i < dices.length; i++) { if(i == save) continue; dices[i] = 0; } return noOfSaved; } //------------------------------------------------------------------------------------------ // Nollar tidigare kast med tärningarna men sparar alla tärningar med angivna värden // INPARAMETRAR: int[] dices - Arrayen där frekvensen är sparad, ettor ligger på index 1 // så arrayen ska ha 7 platser 0-6 där index 0 inte används // int[] save - Vilka tärningar som ska sparas (antal ettor som ska sparas finns på index 1) // RETURVÄRDE: - Antal tärningar som sparas //------------------------------------------------------------------------------------------ public static int clearDices(int[] dices, int[] save) { int noOfSaved = 0; for(int i = 1; i < dices.length; i++) { if(save[i] == 0) // Spara inte dices[i] = 0; // Nollställ tärningen else { // Om vi inte vill spara alla av en tärning, vi kanske vill ha en stege så vi vill spara en etta, en tvåa osv. if(dices[i] >= save[i]) dices[i] = save[i]; // Ta bort eventella extra ettor, tvåor... noOfSaved += dices[i]; // Håller reda på hur många tärningar som sparats } } return noOfSaved; } //------------------------------------------------------------------------------------------ // Skriver ut genomfört kast med tärningarna // INPARAMETRAR: int[] dices - Arrayen där frekvensen är sparad, ettor ligger på index 1 // så arrayen ska ha 7 platser 0-6 där index 0 inte används //------------------------------------------------------------------------------------------ public static void printDices(int[] dices) { System.out.println(); for(int i = 1; i < dices.length; i++) for(int j = 0; j < dices[i]; j++) System.out.print(i + "\t"); } //------------------------------------------------------------------------------------------ // Summerar angivet värde, antalet multipliceras med värdet // INPARAMETRAR: int[] dices - Arrayen där frekvensen är sparad, ettor ligger på index 1 // så arrayen ska ha 7 platser 0-6 där index 0 inte används //------------------------------------------------------------------------------------------ public static int sumUnits(int number, int[] dices) { return dices[number]*number; } //###############################// // GRAFISK UTSKRIFT AV TÄRNINGAR // //###############################// //------------------------------------------------------------------------------------------ // Skriver ut genomfört kast med tärningarna grafiskt // INPARAMETRAR: int[] dices - Arrayen där frekvensen är sparad, ettor ligger på index 1 // så arrayen ska ha 7 platser 0-6 där index 0 inte används //------------------------------------------------------------------------------------------ public static void graphicalPrintDices(int[] dices) { String[] dice1 = { "", "| |", "|* |", "|* |", "|* *|", "|* *|", "|* *|"}; String[] dice2 = { "", "| * |", "| |", "| * |", "| |", "| * |", "|* *|"}; String[] dice3 = { "", "| |", "| *|", "| *|", "|* *|", "|* *|", "|* *|"}; for(int i = 1; i < dices.length; i++) for(int j = 0; j < dices[i]; j++) System.out.print(dice1[i] + "\t"); System.out.println(); for(int i = 1; i < dices.length; i++) for(int j = 0; j < dices[i]; j++) System.out.print(dice2[i] + "\t"); System.out.println(); for(int i = 1; i < dices.length; i++) for(int j = 0; j < dices[i]; j++) System.out.print(dice3[i] + "\t"); } }
[ "info@wassemann.se" ]
info@wassemann.se
8da782650c7f37740311cb08814e385d643775b6
db64a6b3982b55a0e7405dce12bab95cb8535172
/back-end/core/src/main/java/kr/co/queenssmile/core/domain/coin/Coin.java
e153d70fce59c592b2839df9e6305af09ad02464
[]
no_license
Chenmiku/coin
259f3dea5a808e2ef6de151b33901d2699e5545f
48cb87b07d5e95bde978714b3a39a9782c1a5c03
refs/heads/master
2022-09-07T13:46:24.414541
2020-05-24T15:51:40
2020-05-24T15:51:40
266,568,183
0
1
null
2020-05-24T15:54:45
2020-05-24T15:21:33
HTML
UTF-8
Java
false
false
1,642
java
package kr.co.queenssmile.core.domain.coin; import com.fasterxml.jackson.annotation.JsonIgnore; import kr.co.queenssmile.core.domain.AbstractEntity; import kr.co.queenssmile.core.domain.AbstractEntityInternational; import kr.co.queenssmile.core.domain.International.InterText; import lombok.Getter; import lombok.Setter; import lombok.ToString; import lombok.extern.slf4j.Slf4j; import javax.persistence.*; import java.util.ArrayList; import java.util.List; @Slf4j @Entity @Getter @Setter @ToString public class Coin extends AbstractEntityInternational<Long> { private static final long serialVersionUID = 2538945088285644707L; public static String[] IGNORE_PROPERTIES = { "id" }; @Id @Column(unique = true) @GeneratedValue private Long id; private String name; private String code; @Embedded @AttributeOverrides({ @AttributeOverride(name = "textKoKr", column = @Column(name = "introduceKoKr", columnDefinition = "TEXT")), @AttributeOverride(name = "textEnUs", column = @Column(name = "introduceEnUs", columnDefinition = "TEXT")), @AttributeOverride(name = "textJaJp", column = @Column(name = "introduceJaJp", columnDefinition = "TEXT")), @AttributeOverride(name = "textZhCn", column = @Column(name = "introduceZhCn", columnDefinition = "TEXT")), @AttributeOverride(name = "textZhTw", column = @Column(name = "introduceZhTw", columnDefinition = "TEXT")) }) private InterText introduce; @Column(columnDefinition = "BIT(1) default 1") private boolean active; @Override public void delete() { } @Override public void lazy() { } }
[ "thaivh@miraway.vn" ]
thaivh@miraway.vn
a82ce791d5351c1d2d850e880f4cd26fbbc941fc
a4bb1e329d4f86c4a3cd729cecfcb023ad1eb12d
/app/src/main/java/com/example/ihass/pressureproject/Fragments/Sugar_Activity.java
bd30b46a130b5d6f4cd4d90ee56e7aaf3b393676
[]
no_license
hassanibrahim49/PressureProject
770d599b637462a7037c78bee87c5bc64a81f6e1
db4b436837bf823796133b3fa6ba2f99141949e3
refs/heads/master
2022-03-04T05:24:03.859897
2018-12-04T01:18:41
2018-12-04T01:18:41
null
0
0
null
null
null
null
UTF-8
Java
false
false
405
java
package com.example.ihass.pressureproject.Fragments; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import com.example.ihass.pressureproject.R; public class Sugar_Activity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_sugar_); } }
[ "hassani49@h-eng.helwan.edu.eg" ]
hassani49@h-eng.helwan.edu.eg
bbfb9971c42c89f1a271a3c5c1a1489aefac34e2
ada34e1ab769786044d8527b9b24de66aa9ffca5
/src/main/java/com/project/service/impl/UserServiceImpl.java
2fd62f4b67ae1c7b6a7b87ee51464056a179f914
[]
no_license
kunalacharya58/ICINBank
e432e3951f7b6da22f8b3b52079cfbb0259e5b90
afe0f9725143f2b731a520ee6c45054850b52b03
refs/heads/master
2022-12-04T13:53:34.995721
2020-08-17T10:57:15
2020-08-17T10:57:15
286,968,061
0
2
null
2020-08-13T08:37:16
2020-08-12T09:08:28
Java
UTF-8
Java
false
false
1,483
java
package com.project.service.impl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.project.dao.UserDAO; import com.project.model.User; import com.project.service.UserService; @Service public class UserServiceImpl implements UserService { @Autowired UserDAO dao; @Override public User updateUser(User user) { // TODO Auto-generated method stub return dao.save(user); } @Override public void deleteUserbyId(long id) { // TODO Auto-generated method stub dao.deleteById(id); } @Override public Iterable<User> getAllUsers() { // TODO Auto-generated method stub return dao.findAll(); } @Override public User getUserById(long id) { // TODO Auto-generated method stub return dao.findById(id).orElse(null); } @Override public User getUserByEmail(String email) { // TODO Auto-generated method stub return dao.findByEmail(email); } @Override public User getUserByUsername(String username) { // TODO Auto-generated method stub return dao.findByUsername(username); } @Override public void enableUser(long id) { // TODO Auto-generated method stub User user = getUserById(id); user.setEnabled(true); dao.save(user); } @Override public void disableUser(long id) { // TODO Auto-generated method stub User user = getUserById(id); user.setEnabled(false); dao.save(user); } @Override public User saveUser(User user) { return dao.save(user); } }
[ "kunalacharya58@gmail.com" ]
kunalacharya58@gmail.com
17d345d0cd7fe041bdeff752b1d5f054638e0e82
055d6cba46f124cf36cf24c5c0558fca9d4c0811
/pet-clinic-data/src/main/java/pl/iamkonradkrakowiecki/sfgpetclinic/services/PetService.java
174b41a0978a2e9830174815652e469a06a884af
[]
no_license
konradkrakowiecki/sfg-pet-clinic
9289f6ff2668125daccde19c4dd1ce4756914257
c5840a25f838c13060f864706695982abc394733
refs/heads/master
2020-06-06T10:44:29.341430
2019-08-01T14:55:34
2019-08-01T14:55:34
192,718,477
1
0
null
2019-07-15T17:06:37
2019-06-19T11:24:05
Java
UTF-8
Java
false
false
175
java
package pl.iamkonradkrakowiecki.sfgpetclinic.services; import pl.iamkonradkrakowiecki.sfgpetclinic.model.Pet; public interface PetService extends CrudService<Pet, Long>{ }
[ "konrad.krakowiecki@gmail.com" ]
konrad.krakowiecki@gmail.com
415f26c612fd970d6fb36279b7313e9a8d272030
bde9cf35609c884a7340f243edce98395663b4b4
/PLP/Assignment6/src/cop5555sp15/ast/CopyOfCodeGenVisitor.java
199a328425d0c91456da1681ae35a2f91a691efa
[]
no_license
harshtarang/Compiler
ab1b4fb582999eb372b4d5d7f63b19287eb7f4c5
9d556e4342782479ed086a61f5bc03f5ac5b1a31
refs/heads/master
2021-01-10T11:32:59.909564
2015-10-19T21:47:22
2015-10-19T21:47:22
44,564,970
0
0
null
null
null
null
UTF-8
Java
false
false
28,664
java
package cop5555sp15.ast; import javax.swing.Icon; import org.objectweb.asm.*; import cop5555sp15.TokenStream.Kind; import cop5555sp15.symbolTable.SymbolTable; import cop5555sp15.TypeConstants; public class CopyOfCodeGenVisitor implements ASTVisitor, Opcodes, TypeConstants { ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_FRAMES); // Because we used the COMPUTE_FRAMES flag, we do not need to // insert the mv.visitFrame calls that you will see in some of the // asmifier examples. ASM will insert those for us. // FYI, the purpose of those instructions is to provide information // about what is on the stack just before each branch target in order // to speed up class verification. FieldVisitor fv; String className; String classDescriptor; // This class holds all attributes that need to be passed downwards as the // AST is traversed. Initially, it only holds the current MethodVisitor. // Later, we may add more attributes. static class InheritedAttributes { public InheritedAttributes(MethodVisitor mv) { super(); this.mv = mv; } MethodVisitor mv; } @Override public Object visitAssignmentStatement(AssignmentStatement assignmentStatement, Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; if(assignmentStatement.lvalue instanceof ExpressionLValue) { ExpressionLValue expr= (ExpressionLValue)assignmentStatement.lvalue; String ident=expr.identToken.getText(); mv.visitFieldInsn(GETSTATIC, className, ident, "Ljava/util/ArrayList;"); mv.visitInsn(DUP); expr.expression.visit(this, arg); /* Label l1=new Label(); Label l2=new Label(); mv.visitMethodInsn(INVOKEVIRTUAL, "java/util/ArrayList", "size", "()I",false); mv.visitJumpInsn(IF_ICMPGE,l1); mv.visitInsn(POP); mv.visitInsn(ICONST_0); mv.visitJumpInsn(GOTO, l2); mv.visitLabel(l1); mv.visitInsn(POP); mv.visitInsn(ICONST_1); mv.visitInsn(DUP);*/ String type=(String)assignmentStatement.expression.visit(this, arg); if(type.equals(intType)) mv.visitMethodInsn(INVOKESTATIC, "java/lang/Integer", "valueOf", "(I)Ljava/lang/Integer;",false); else if(type.equals(booleanType)) mv.visitMethodInsn(INVOKESTATIC, "java/lang/Boolean", "valueOf", "(Z)Ljava/lang/Boolean;",false); mv.visitMethodInsn(INVOKEVIRTUAL, "java/util/ArrayList", "set", "(ILjava/lang/Object;)Ljava/lang/Object;", false); // mv.visitMethodInsn(INVOKEVIRTUAL, "java/util/ArrayList", "get", "(I)Ljava/lang/Object;", false); mv.visitInsn(POP); mv.visitFieldInsn(PUTSTATIC, className, ident, "Ljava/util/ArrayList;"); } else { String ident=(String)assignmentStatement.lvalue.visit(this, arg); String type=(String)assignmentStatement.expression.visit(this, arg); assignmentStatement.lvalue.setType(type);//assignmentStatement.expression.expressionType); mv.visitFieldInsn(PUTSTATIC, className, ident, type); } return null; //throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitBinaryExpression(BinaryExpression binaryExpression, Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; Kind op=binaryExpression.op.kind; binaryExpression.setType(binaryExpression.expression0.getType()); switch(op) { case PLUS: if(binaryExpression.expression0.getType().equalsIgnoreCase(intType) || binaryExpression.expression0.getType().equalsIgnoreCase(booleanType)) { binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitInsn(IADD); } else if(binaryExpression.expression0.getType().equalsIgnoreCase(stringType)) { mv.visitTypeInsn(NEW, "java/lang/StringBuilder"); mv.visitInsn(DUP); binaryExpression.expression0.visit(this, arg); mv.visitMethodInsn(INVOKESPECIAL, "java/lang/StringBuilder", "<init>", "(Ljava/lang/String;)V", false); binaryExpression.expression1.visit(this, arg); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/StringBuilder", "append", "(Ljava/lang/String;)Ljava/lang/StringBuilder;", false); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/StringBuilder", "toString", "()Ljava/lang/String;", false); } break; case MINUS: binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitInsn(ISUB); break; case TIMES: binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitInsn(IMUL); break; case DIV: binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitInsn(IDIV); break; case LSHIFT: binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitInsn(ISHL); break; case RSHIFT: binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitInsn(ISHR); break; case BAR: binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitInsn(IOR); break; case AND: binaryExpression.expression0.visit(this, arg); Label l1 = new Label(); mv.visitJumpInsn(IFEQ, l1); binaryExpression.expression1.visit(this,arg); mv.visitJumpInsn(IFEQ, l1); mv.visitInsn(ICONST_1); Label l2 = new Label(); mv.visitJumpInsn(GOTO, l2); mv.visitLabel(l1); mv.visitInsn(ICONST_0); mv.visitLabel(l2); break; case EQUAL: Label falseLabel = new Label(); Label end = new Label(); if(binaryExpression.expression0.getType().equalsIgnoreCase(intType) || binaryExpression.expression0.getType().equalsIgnoreCase(booleanType)) { binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitJumpInsn(IF_ICMPNE,falseLabel); mv.visitInsn(ICONST_1); mv.visitJumpInsn(GOTO, end); mv.visitLabel(falseLabel); mv.visitInsn(ICONST_0); mv.visitLabel(end); } else { binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/String", "compareTo", "(Ljava/lang/String;)I",false); mv.visitJumpInsn(IFNE, falseLabel); mv.visitInsn(ICONST_1); mv.visitJumpInsn(GOTO, end); mv.visitLabel(falseLabel); mv.visitInsn(ICONST_0); mv.visitLabel(end); } binaryExpression.setType(booleanType); break; case NOTEQUAL: falseLabel = new Label(); end = new Label(); if(binaryExpression.expression0.getType().equalsIgnoreCase(intType) || binaryExpression.expression0.getType().equalsIgnoreCase(booleanType)) { binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitJumpInsn(IF_ICMPEQ,falseLabel); mv.visitInsn(ICONST_1); mv.visitJumpInsn(GOTO, end); mv.visitLabel(falseLabel); mv.visitInsn(ICONST_0); mv.visitLabel(end); } else { binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/String", "compareTo", "(Ljava/lang/String;)I",false); mv.visitJumpInsn(IFEQ, falseLabel); mv.visitInsn(ICONST_1); mv.visitJumpInsn(GOTO, end); mv.visitLabel(falseLabel); mv.visitInsn(ICONST_0); mv.visitLabel(end); } binaryExpression.setType(booleanType); break; case LT: falseLabel = new Label(); binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitJumpInsn(IF_ICMPGE,falseLabel); mv.visitInsn(ICONST_1); end = new Label(); mv.visitJumpInsn(GOTO, end); mv.visitLabel(falseLabel); mv.visitInsn(ICONST_0); mv.visitLabel(end); binaryExpression.setType(booleanType); break; case GT: falseLabel = new Label(); binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitJumpInsn(IF_ICMPLE,falseLabel); mv.visitInsn(ICONST_1); end = new Label(); mv.visitJumpInsn(GOTO, end); mv.visitLabel(falseLabel); mv.visitInsn(ICONST_0); mv.visitLabel(end); binaryExpression.setType(booleanType); break; case LE: falseLabel = new Label(); binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitJumpInsn(IF_ICMPGT,falseLabel); mv.visitInsn(ICONST_1); end = new Label(); mv.visitJumpInsn(GOTO, end); mv.visitLabel(falseLabel); mv.visitInsn(ICONST_0); mv.visitLabel(end); binaryExpression.setType(booleanType); break; case GE: falseLabel = new Label(); binaryExpression.expression0.visit(this, arg); binaryExpression.expression1.visit(this, arg); mv.visitJumpInsn(IF_ICMPLT,falseLabel); mv.visitInsn(ICONST_1); end = new Label(); mv.visitJumpInsn(GOTO, end); mv.visitLabel(falseLabel); mv.visitInsn(ICONST_0); mv.visitLabel(end); binaryExpression.setType(booleanType); break; } return binaryExpression.getType(); //throw new UnsupportedOperationException("code generation not yet implemented"); } @Override public Object visitBlock(Block block, Object arg) throws Exception { for (BlockElem elem : block.elems) { elem.visit(this, arg); } return null; } @Override public Object visitBooleanLitExpression(BooleanLitExpression booleanLitExpression, Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; // this should be the // first statement // of all visit // methods that // generate // instructions mv.visitLdcInsn(booleanLitExpression.value); return booleanType; //throw new UnsupportedOperationException("code generation not yet implemented"); } @Override public Object visitClosure(Closure closure, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitClosureDec(ClosureDec closureDeclaration, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitClosureEvalExpression( ClosureEvalExpression closureExpression, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitClosureExpression(ClosureExpression closureExpression, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitExpressionLValue(ExpressionLValue expressionLValue,Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; if(expressionLValue.getType().equalsIgnoreCase("Ljava/util/List<I>;")) { mv.visitFieldInsn(GETSTATIC, className, expressionLValue.identToken.getText(), expressionLValue.getType()); expressionLValue.expression.visit(this, arg); //mv.visitMethodInsn(INVOKESTATIC, "java/lang/Integer", "valueOf", "(I)Ljava/lang/Integer;",false); mv.visitMethodInsn(INVOKEVIRTUAL, "java/util/ArrayList", "get", "(I)Ljava/lang/Object;", false); Label l1=new Label(); mv.visitInsn(DUP); mv.visitJumpInsn(IFNONNULL, l1); mv.visitInsn(POP); mv.visitTypeInsn(NEW, "java/util/ArrayList"); mv.visitInsn(DUP); mv.visitMethodInsn(INVOKESPECIAL, "java/util/ArrayList", "<init>", "()V", false); mv.visitLabel(l1); mv.visitTypeInsn(CHECKCAST, "java/util/ArrayList"); mv.visitInsn(POP); } return null; } @Override public Object visitExpressionStatement( ExpressionStatement expressionStatement, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitIdentExpression(IdentExpression identExpression,Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; if(identExpression.expressionType.startsWith("Ljava/util/List")) identExpression.setType(emptyList); else identExpression.setType(identExpression.expressionType); mv.visitFieldInsn(GETSTATIC, className, identExpression.identToken.getText(), identExpression.expressionType); return identExpression.expressionType; //throw new UnsupportedOperationException("code generation not yet implemented"); } @Override public Object visitIdentLValue(IdentLValue identLValue, Object arg) throws Exception { return identLValue.identToken.getText(); //throw new UnsupportedOperationException("code generation not yet implemented"); } @Override public Object visitIfElseStatement(IfElseStatement ifElseStatement,Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; ifElseStatement.expression.visit(this, arg); Label l1=new Label(); Label l2=new Label(); mv.visitJumpInsn(IFEQ, l1); // mv.visitInsn(ICONST_0); ifElseStatement.ifBlock.visit(this, arg); mv.visitJumpInsn(GOTO, l2); mv.visitLabel(l1); // mv.visitInsn(ICONST_1); ifElseStatement.elseBlock.visit(this, arg); mv.visitLabel(l2); return null; } @Override public Object visitIfStatement(IfStatement ifStatement, Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; ifStatement.expression.visit(this, arg); Label l=new Label(); mv.visitJumpInsn(IFEQ, l); ifStatement.block.visit(this, arg); mv.visitLabel(l); return null; } @Override public Object visitIntLitExpression(IntLitExpression intLitExpression,Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; // this should be the // first statement // of all visit // methods that // generate // instructions mv.visitLdcInsn(intLitExpression.value); return intType; } @Override public Object visitKeyExpression(KeyExpression keyExpression, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitKeyValueExpression( KeyValueExpression keyValueExpression, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitKeyValueType(KeyValueType keyValueType, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitListExpression(ListExpression listExpression, Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; if(listExpression.expressionType.equalsIgnoreCase("Ljava/util/List;")) { mv.visitTypeInsn(NEW, "java/util/ArrayList"); mv.visitInsn(DUP); mv.visitMethodInsn(INVOKESPECIAL, "java/util/ArrayList", "<init>", "()V", false); } else if(listExpression.expressionType.startsWith("Ljava/util/List<")) { mv.visitTypeInsn(NEW, "java/util/ArrayList"); mv.visitInsn(DUP); mv.visitMethodInsn(INVOKESPECIAL, "java/util/ArrayList", "<init>", "()V", false); for(Expression expr: listExpression.expressionList) { //expr. mv.visitInsn(DUP); expr.visit(this, arg); if(listExpression.expressionType.equalsIgnoreCase("Ljava/util/List<I>;")) mv.visitMethodInsn(INVOKESTATIC, "java/lang/Integer", "valueOf", "(I)Ljava/lang/Integer;",false); else if(listExpression.expressionType.equalsIgnoreCase("Ljava/util/List<Z>;")) mv.visitMethodInsn(INVOKESTATIC, "java/lang/Boolean", "valueOf", "(Z)Ljava/lang/Boolean;",false); // else if(listExpression.expressionType.startsWith("Ljava/util/List<Ljava/util/List")) // mv.visitMethodInsn(INVOKESTATIC, "java/util/ArrayList", "valueOf", "(I)Ljava/lang/Integer;",false); mv.visitMethodInsn(INVOKEVIRTUAL, "java/util/ArrayList", "add", "(Ljava/lang/Object;)Z", false); mv.visitInsn(POP); } } /*else if(listExpression.expressionType.equalsIgnoreCase("Ljava/util/List<Z>;")) { mv.visitTypeInsn(NEW, "java/util/ArrayList"); mv.visitInsn(DUP); mv.visitMethodInsn(INVOKESPECIAL, "java/util/ArrayList", "<init>", "()V", false); for(Expression expr: listExpression.expressionList) { mv.visitInsn(DUP); expr.visit(this, arg); mv.visitMethodInsn(INVOKESTATIC, "java/lang/Boolean", "valueOf", "(Z)Ljava/lang/Boolean;",false); mv.visitMethodInsn(INVOKEVIRTUAL, "java/util/ArrayList", "add", "(Ljava/lang/Object;)Z", false); mv.visitInsn(POP); } } else { mv.visitTypeInsn(NEW, "java/util/ArrayList"); mv.visitInsn(DUP); mv.visitMethodInsn(INVOKESPECIAL, "java/util/ArrayList", "<init>", "()V", false); for(Expression expr: listExpression.expressionList) { mv.visitInsn(DUP); expr.visit(this, arg); //mv.visitMethodInsn(INVOKESTATIC, "java/lang/String", "valueOf", "(java/lang/String)Ljava/lang/Boolean;",false); mv.visitMethodInsn(INVOKEVIRTUAL, "java/util/ArrayList", "add", "(Ljava/lang/Object;)Z", false); mv.visitInsn(POP); } } */ //if(listExpression.expressionType.startsWith("Ljava/util/List<Ljava/util/List")) // listExpression.setType(removeLayer(listExpression.expressionType)); //else listExpression.setType(emptyList); return listExpression.expressionType; } private String removeLayer(String expressionType) { String temp=expressionType.substring(16, expressionType.length()-3); System.out.println(temp); return temp; } @Override public Object visitListOrMapElemExpression(ListOrMapElemExpression listOrMapElemExpression, Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; mv.visitFieldInsn(GETSTATIC, className, listOrMapElemExpression.identToken.getText(), emptyList); listOrMapElemExpression.expression.visit(this, arg); mv.visitMethodInsn(INVOKEVIRTUAL, "java/util/ArrayList", "get", "(I)Ljava/lang/Object;", false); if(listOrMapElemExpression.expressionType.equalsIgnoreCase(intType)) { mv.visitTypeInsn(CHECKCAST, "java/lang/Integer"); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Integer","intValue","()I",false); } else if(listOrMapElemExpression.expressionType.equalsIgnoreCase(booleanType)) { mv.visitTypeInsn(CHECKCAST, "java/lang/Boolean"); mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Boolean","booleanValue","()Z",false); } else if(listOrMapElemExpression.expressionType.equalsIgnoreCase(stringType)) mv.visitTypeInsn(CHECKCAST, "java/lang/String"); else if(listOrMapElemExpression.expressionType.startsWith("Ljava/util/List<Ljava/util/List")) { mv.visitTypeInsn(CHECKCAST, "java/util/ArrayList"); listOrMapElemExpression.setType(emptyList); //mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Integer","intValue","()I",false); return "Ljava/util/ArrayList;"; } //mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Integer","intValue","()I",false); return listOrMapElemExpression.getType(); } @Override public Object visitListType(ListType listType, Object arg) throws Exception { return listType.getJVMType(); } @Override public Object visitMapListExpression(MapListExpression mapListExpression, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitPrintStatement(PrintStatement printStatement, Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; Label l0 = new Label(); mv.visitLabel(l0); mv.visitLineNumber(printStatement.firstToken.getLineNumber(), l0); mv.visitFieldInsn(GETSTATIC, "java/lang/System", "out", "Ljava/io/PrintStream;"); printStatement.expression.visit(this, arg); // adds code to leave value // of expression on top of // stack. // Unless there is a good // reason to do otherwise, // pass arg down the tree String etype = printStatement.expression.getType(); if (etype.equals("I") || etype.equals("Z") || etype.equals("Ljava/lang/String;")) { String desc = "(" + etype + ")V"; mv.visitMethodInsn(INVOKEVIRTUAL, "java/io/PrintStream", "println", desc, false); } else { //mv.visitMethodInsn(INVOKEVIRTUAL, "java/lang/Integer", "toString", "()Ljava/lang/String;",false); mv.visitMethodInsn(INVOKEVIRTUAL, "java/io/PrintStream", "println", "(Ljava/lang/Object;)V",false); } return null; } @Override public Object visitProgram(Program program, Object arg) throws Exception { className = program.JVMName; classDescriptor = 'L' + className + ';'; cw.visit(52, // version ACC_PUBLIC + ACC_SUPER, // access codes className, // fully qualified classname null, // signature "java/lang/Object", // superclass new String[] { "cop5555sp15/Codelet" } // implemented interfaces ); cw.visitSource(null, null); // maybe replace first argument with source // file name // create init method { MethodVisitor mv; mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null); mv.visitCode(); Label l0 = new Label(); mv.visitLabel(l0); mv.visitLineNumber(3, l0); mv.visitVarInsn(ALOAD, 0); mv.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V", false); mv.visitInsn(RETURN); Label l1 = new Label(); mv.visitLabel(l1); mv.visitLocalVariable("this", classDescriptor, null, l0, l1, 0); mv.visitMaxs(1, 1); mv.visitEnd(); } // generate the execute method MethodVisitor mv = cw.visitMethod(ACC_PUBLIC, "execute", // name of top // level // method "()V", // descriptor: this method is parameterless with no // return value null, // signature. This is null for us, it has to do with generic types null // array of strings containing exceptions ); mv.visitCode(); Label lbeg = new Label(); mv.visitLabel(lbeg); mv.visitLineNumber(program.firstToken.lineNumber, lbeg); program.block.visit(this, new InheritedAttributes(mv)); mv.visitInsn(RETURN); Label lend = new Label(); mv.visitLabel(lend); mv.visitLocalVariable("this", classDescriptor, null, lbeg, lend, 0); mv.visitMaxs(0, 0); //this is required just before the end of a method. //It causes asm to calculate information about the //stack usage of this method. mv.visitEnd(); cw.visitEnd(); return cw.toByteArray(); } @Override public Object visitQualifiedName(QualifiedName qualifiedName, Object arg) { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitRangeExpression(RangeExpression rangeExpression, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitReturnStatement(ReturnStatement returnStatement, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitSimpleType(SimpleType simpleType, Object arg) throws Exception { return simpleType.getJVMType(); } @Override public Object visitSizeExpression(SizeExpression sizeExpression, Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; sizeExpression.expression.visit(this, arg); mv.visitMethodInsn(INVOKEVIRTUAL, "java/util/ArrayList", "size", "()I",false); sizeExpression.setType(intType); return intType; } @Override public Object visitStringLitExpression(StringLitExpression stringLitExpression, Object arg) throws Exception { //throw new UnsupportedOperationException("code generation not yet implemented"); MethodVisitor mv = ((InheritedAttributes) arg).mv; // this should be the // first statement // of all visit // methods that // generate // instructions mv.visitLdcInsn(stringLitExpression.value); return stringType; } @Override public Object visitUnaryExpression(UnaryExpression unaryExpression,Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; // this should be the Kind op=unaryExpression.op.kind; unaryExpression.expression.visit(this, arg); String type=unaryExpression.expression.expressionType; if(op.equals(Kind.MINUS)) { unaryExpression.setType(intType); mv.visitInsn(INEG); } else if(op.equals(Kind.NOT)) { unaryExpression.setType(booleanType); Label l1=new Label(); mv.visitJumpInsn(IFEQ, l1); mv.visitInsn(ICONST_0); Label l2=new Label(); mv.visitJumpInsn(GOTO, l2); mv.visitLabel(l1); mv.visitInsn(ICONST_1); mv.visitLabel(l2); } return unaryExpression.getType(); } @Override public Object visitValueExpression(ValueExpression valueExpression, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitVarDec(VarDec varDec, Object arg) throws Exception { //System.out.println(varDec.type.getJVMType()); if(varDec.type.getJVMType().startsWith("Ljava/util/List")) fv=cw.visitField(ACC_STATIC, varDec.identToken.getText(), emptyList, null, null); else fv=cw.visitField(ACC_STATIC, varDec.identToken.getText(), varDec.type.getJVMType(), null, null); fv.visitEnd(); return null; //throw new UnsupportedOperationException("code generation not yet implemented"); } @Override public Object visitWhileRangeStatement( WhileRangeStatement whileRangeStatement, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitWhileStarStatement(WhileStarStatement whileStarStatment, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } @Override public Object visitWhileStatement(WhileStatement whileStatement, Object arg) throws Exception { MethodVisitor mv = ((InheritedAttributes) arg).mv; Label l1=new Label(); mv.visitJumpInsn(GOTO, l1); Label l2=new Label(); mv.visitLabel(l2); whileStatement.block.visit(this, arg); mv.visitLabel(l1); whileStatement.expression.visit(this, arg); mv.visitJumpInsn(IFNE, l2); return null; } @Override public Object visitUndeclaredType(UndeclaredType undeclaredType, Object arg) throws Exception { throw new UnsupportedOperationException( "code generation not yet implemented"); } }
[ "harshtarang@gmail.com" ]
harshtarang@gmail.com
d09b7b0234d4009bf7820de5a128adffd46e2c52
c70eb3c865eee5bf8d82e5d634185e68e3565053
/FinalProject/.svn/pristine/d0/d09b7b0234d4009bf7820de5a128adffd46e2c52.svn-base
d86fa84400152e53c04563750bd63e417095ed5e
[]
no_license
TomClarke/Final-Project-Sudoku-Solver
dfb5d925e40d93cd8d5d781011ee43844ab9fe27
60ad2778869c7f6c3efadd9c9465fe6dccec4b57
refs/heads/master
2016-09-06T14:00:06.147132
2015-02-25T15:50:00
2015-02-25T15:50:00
31,320,735
0
0
null
null
null
null
UTF-8
Java
false
false
22,176
package src; import java.awt.BorderLayout; import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.Image; import java.awt.Toolkit; import javax.imageio.ImageIO; import javax.swing.JFrame; import java.awt.Dimension; import javax.swing.JPanel; import javax.swing.border.BevelBorder; import javax.swing.border.EmptyBorder; import javax.swing.border.LineBorder; import javax.swing.JButton; import java.awt.GridLayout; import javax.swing.BorderFactory; import javax.swing.JLabel; import javax.swing.ImageIcon; import javax.swing.GroupLayout; import javax.swing.GroupLayout.Alignment; import javax.swing.JOptionPane; import javax.swing.LayoutStyle.ComponentPlacement; import javax.swing.SwingUtilities; import javax.swing.SwingWorker; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.awt.event.MouseAdapter; import java.io.File; import java.io.IOException; import java.util.ArrayList; import javax.swing.JRadioButton; import javax.swing.ButtonGroup; import java.awt.event.ActionEvent; import javax.swing.JTextField; /** * The Class View is the class that is visible to the user and this is all created using windowbuider * and adapted to work within a MVC. */ public class SudokuMenuView extends JFrame implements KeyListener{ /** * */ private static final long serialVersionUID = 1L; /** The content pane. */ private JPanel contentPane; public String chosenDate; /** The btn erase. */ private JButton btnErase = new JButton("Erase"); /** The btn load. */ private JButton btnLoad = new JButton("Load"); /** The btn help. */ private JButton btnHelp = new JButton("Hint"); /** The btn save. */ private JButton btnSave = new JButton("Save"); private JButton btnSolve = new JButton("Solve"); private JButton btnNew = new JButton("New"); private JButton btnDescribe = new JButton("How To Play"); /** The btn number. */ //public JLabel btnNumber[][]; public CellView btnNumber[][]; public SudokuBoard current; /** The suduko grid. */ //private JPanel sudukoGrid = new JPanel(new GridLayout(9,9)); int rows = 3; int col = 3; public JPanel sudukoGrid = new JPanel(new GridLayout(rows*col,rows*col)); public String output = (" "); public String outputString; private final ButtonGroup buttonGroup = new ButtonGroup(); private JRadioButton rdbtnEnterValue = new JRadioButton("Enter Value"); private JRadioButton rdbtnEnterPosValue = new JRadioButton("Enter Possible Value"); private final JLabel lblCreatesANew = new JLabel("Creates a new puzzle"); private final JLabel lblClickToSolve = new JLabel("Click to solve the puzzle"); private final JLabel lblLoadPreviousPuzzle = new JLabel("Load previous puzzle"); private final JLabel lblDeleteAllInputs = new JLabel("Delete all inputs"); private final JLabel lblSaveCurrentPuzzle = new JLabel("Save current puzzle"); private final JLabel lblProvideSomeHelp = new JLabel("Provide some help"); public int tempRow = 0; public int tempCol = 0; public int tempValue = 0; public boolean done; public JLabel getLabel (int row,int col){ return btnNumber[row][col]; } public void setLabel (int row,int col,int sudokuBoard){ setButton(sudokuBoard,btnNumber[row][col]); } /** * Sets the button using a switch that takes the button and the input * provided by the input text box * * @param string the input * @param event the test */ public static void setButton(int input, CellView test){ //test.addPropertyChangeListener(listener) Font f = new Font("Dialog", Font.ITALIC, 22); test.setFont(f); switch(input){ case 1: test.setText("1"); break; case 2: test.setText("2"); break; case 3: test.setText("3"); break; case 4: test.setText("4"); break; case 5: test.setText("5"); break; case 6: test.setText("6"); break; case 7: test.setText("7"); break; case 8: test.setText("8"); break; case 9: test.setText("9"); break; case 0: test.setText(" "); break; } if(test.intValue!= 0){ System.out.println("Label: current"+test.getName()+" = "+test.intValue+ "| Text: "+test.getText()); } test.paintImmediately(test.getVisibleRect()); test.validate(); } public static void possibleValue(String inputstrings,JLabel test) { char[] array = inputstrings.toCharArray(); array = removeDuplicates(array); String b = new String(array); Font f = new Font("Dialog", Font.ITALIC, 10); test.setFont(f); test.setText(b); } //http://stackoverflow.com/questions/3398153/removing-duplicate-character-from-array public static char[] removeDuplicates(char[] str) { int len = str.length; int tail = 1; for (int i = 1; i < len; ++i) { int j; for (j = 0; j < tail; ++j) { if (str[i] == str[j]) { break; } } if (j == tail) { str[tail] = str[i]; ++tail; } } for(; tail < len;tail++){ str[tail] = 0; } return str; } /** * Instantiates a new view. * * Create the frame. */ public SudokuMenuView() { System.out.println("Set Label Placement"); addMouseListener(null); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setBounds(100, 100, 1000, 800); contentPane = new JPanel(); contentPane.setBackground(Color.WHITE); contentPane.setBorder(new EmptyBorder(5, 5, 5, 5)); //contentPane.add(new JLabel( new ImageIcon( "/src/backgrounds.jpg"))); setContentPane(contentPane); buttonGroup.add(rdbtnEnterValue); buttonGroup.add(rdbtnEnterPosValue); JLabel lblNewLabel = new JLabel(""); lblNewLabel.setIcon(new ImageIcon(SudokuMenuView.class.getResource("/src/SudokuTitle.jpg"))); rdbtnEnterValue.setSelected(true); sudukoGrid.setBorder(BorderFactory.createLineBorder(Color.BLACK,2)); lblClickToSolve.setVisible(false); lblLoadPreviousPuzzle.setVisible(false); lblDeleteAllInputs.setVisible(false); lblSaveCurrentPuzzle.setVisible(false); lblProvideSomeHelp.setVisible(false); GroupLayout gl_contentPane = new GroupLayout(contentPane); gl_contentPane.setHorizontalGroup( gl_contentPane.createParallelGroup(Alignment.TRAILING) .addGroup(Alignment.LEADING, gl_contentPane.createSequentialGroup() .addContainerGap() .addComponent(sudukoGrid, GroupLayout.PREFERRED_SIZE, 737, GroupLayout.PREFERRED_SIZE) .addGap(18) .addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING) .addComponent(btnDescribe, GroupLayout.PREFERRED_SIZE, 152, GroupLayout.PREFERRED_SIZE) .addComponent(rdbtnEnterPosValue) .addComponent(rdbtnEnterValue) .addGroup(gl_contentPane.createSequentialGroup() .addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING, false) .addComponent(btnLoad, Alignment.TRAILING, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(btnErase, Alignment.TRAILING, GroupLayout.DEFAULT_SIZE, 93, Short.MAX_VALUE) .addComponent(btnSave, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(btnHelp, Alignment.TRAILING, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(btnNew, Alignment.TRAILING, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) .addPreferredGap(ComponentPlacement.RELATED) .addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING) .addComponent(lblProvideSomeHelp) .addComponent(lblSaveCurrentPuzzle) .addComponent(lblDeleteAllInputs) .addComponent(lblLoadPreviousPuzzle) .addComponent(lblCreatesANew))))) .addGroup(Alignment.LEADING, gl_contentPane.createSequentialGroup() .addGap(274) .addComponent(btnSolve, GroupLayout.PREFERRED_SIZE, 167, GroupLayout.PREFERRED_SIZE) .addGap(18) .addComponent(lblClickToSolve) .addContainerGap(473, Short.MAX_VALUE)) .addGroup(gl_contentPane.createSequentialGroup() .addContainerGap(220, Short.MAX_VALUE) .addComponent(lblNewLabel) .addGap(213)) ); gl_contentPane.setVerticalGroup( gl_contentPane.createParallelGroup(Alignment.LEADING) .addGroup(gl_contentPane.createSequentialGroup() .addContainerGap() .addComponent(lblNewLabel, GroupLayout.PREFERRED_SIZE, 146, GroupLayout.PREFERRED_SIZE) .addGroup(gl_contentPane.createParallelGroup(Alignment.LEADING) .addGroup(gl_contentPane.createSequentialGroup() .addGap(12) .addComponent(btnDescribe) .addPreferredGap(ComponentPlacement.RELATED) .addComponent(rdbtnEnterValue) .addPreferredGap(ComponentPlacement.RELATED) .addComponent(rdbtnEnterPosValue) .addGap(18) .addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE) .addComponent(btnNew) .addComponent(lblCreatesANew, GroupLayout.PREFERRED_SIZE, 48, GroupLayout.PREFERRED_SIZE)) .addPreferredGap(ComponentPlacement.UNRELATED) .addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE) .addComponent(btnErase) .addComponent(lblDeleteAllInputs)) .addGap(18) .addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE) .addComponent(btnLoad) .addComponent(lblLoadPreviousPuzzle)) .addGap(18) .addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE) .addComponent(btnSave) .addComponent(lblSaveCurrentPuzzle)) .addGap(18) .addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE) .addComponent(btnHelp) .addComponent(lblProvideSomeHelp))) .addGroup(gl_contentPane.createSequentialGroup() .addPreferredGap(ComponentPlacement.RELATED) .addComponent(sudukoGrid, GroupLayout.PREFERRED_SIZE, 558, GroupLayout.PREFERRED_SIZE))) .addGap(18) .addGroup(gl_contentPane.createParallelGroup(Alignment.BASELINE) .addComponent(btnSolve) .addComponent(lblClickToSolve)) .addContainerGap(GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); lblCreatesANew.setVisible(false); contentPane.setLayout(gl_contentPane); } /** * Save. * This as an example is done to show a message box * @return */ public boolean Save() { JOptionPane.showMessageDialog(this,"File Saved"); return true; } /** * Load. */ public String loadMenu() { FileStore saved = new FileStore(); File[] savedBoards = saved.getSavedFiles(); int i = savedBoards.length; JFrame frame = new JFrame("Choose A Date To Load"); ImageIcon icon = new ImageIcon(SudokuMenuView.class.getResource("/src/SudokuTitle.jpg")); Object[] possibilities = new Object[i]; for ( int j = 0; j < i-1; j++){ possibilities[j] = savedBoards[j].getName(); } //{savedBoards[0].getName(),savedBoards[1].getName(),savedBoards[2].getName(),savedBoards[3].getName(),savedBoards[4].getName(),}; String chosenDate = (String)JOptionPane.showInputDialog(frame,"Load: \n", " 32", JOptionPane.PLAIN_MESSAGE, icon, possibilities, "savedBoards[1].getName()"); return chosenDate; } /** * Adds the save listener. * * @param Describe the describe */ void addDescribeListener(ActionListener Describe){ btnDescribe.addActionListener(Describe); } /** * Adds the save listener. * * @param save the save */ void addSaveListener(ActionListener save) { btnSave.addActionListener(save); } /** * Adds the solve listener. * * @param Solve the solve */ void addSolveListener(ActionListener Solve) { btnSolve.addActionListener(Solve); } /** * Adds the load listener. * * @param Load the load */ void addLoadListener(ActionListener Load) { btnLoad.addActionListener(Load); } /** * Adds the erase listener. * * @param Erase the erase */ void addEraseListener(ActionListener Erase) { btnErase.addActionListener(Erase); } void addNewListener(ActionListener New) { btnNew.addActionListener(New); } public synchronized void addMouseListener(MouseListener Button) { //this.btnNumber = new JLabel[9][9]; //System.out.println("Setup Start Board"); this.current = new SudokuBoard(); //this.btnNumber = new SudokuBoard(); for(int i=0 ; i<9 ; i++){ for(int j=0 ; j<9 ; j++){ current.sudokuBoard[i][j].setValue(0); //current.sudokuBoard[i][j].setPencil(" 1"); //current.sudokuBoard[i][j].setValue(i, j, 0); current.sudokuBoard[i][j].setPreferredSize(new Dimension(20,20)); current.sudokuBoard[i][j].setOpaque(true); current.sudokuBoard[i][j].setBorder(new LineBorder(Color.GRAY)); current.sudokuBoard[i][j].setHorizontalAlignment(JLabel.CENTER); //btnNumber[i][j].addMouseListener(Button); // btnNumber[i][j].addMouseListener(Button); current.sudokuBoard[i][j].setName("gridLocation"+i+","+j); current.sudokuBoard[i][j].setEnabled(true); current.sudokuBoard[i][j].addMouseListener(new MouseAdapter(){ public void mouseClicked(MouseEvent e) { event(e); } }); current.sudokuBoard[i][j].setBackground(Color.LIGHT_GRAY); if((i == 0 || i == 1 || i == 2) && (j == 0 || j == 1 || j == 2)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); current.sudokuBoard[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.WHITE)); } if((i == 0 || i == 1 || i == 2) && (j == 3 || j == 4 || j == 5)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); current.sudokuBoard[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.GRAY)); } if((i == 0 || i == 1 || i == 2) && (j == 6 || j == 7 || j == 8)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); current.sudokuBoard[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.WHITE)); } if((i == 3 || i == 4 || i == 5) && (j == 0 || j == 1 || j == 2)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); current.sudokuBoard[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.GRAY)); } if((i == 3 || i == 4 || i == 5) && (j == 3 || j == 4 || j == 5)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); current.sudokuBoard[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.WHITE)); } if((i == 3 || i == 4 || i == 5) && (j == 6 || j == 7 || j == 8)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); current.sudokuBoard[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.GRAY)); } if((i == 6 || i == 7 || i == 8) && (j == 0 || j == 1 || j == 2)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); current.sudokuBoard[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.WHITE)); } if((i == 6 || i == 7 || i == 8) && (j == 3 || j == 4 || j == 5)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); current.sudokuBoard[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.GRAY)); } if((i == 6 || i == 7 || i == 8) && (j == 6 || j == 7 || j == 8)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); current.sudokuBoard[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.WHITE)); } sudukoGrid.add(current.sudokuBoard[i][j]); /*btnNumber[i][j].setText(" "); btnNumber[i][j].setPreferredSize(new Dimension(20,20)); //btnNumber[i][j].setBackground(Color.BLACK); btnNumber[i][j].setOpaque(true); btnNumber[i][j].setBorder(new LineBorder(Color.GRAY)); btnNumber[i][j].setHorizontalAlignment(JLabel.CENTER); //btnNumber[i][j].addMouseListener(Button); // btnNumber[i][j].addMouseListener(Button); btnNumber[i][j].setName("gridLocation"+i+","+j); btnNumber[i][j].setEnabled(true); btnNumber[i][j].addMouseListener(new MouseAdapter(){ public void mouseClicked(MouseEvent e) { event(e); } }); btnNumber[i][j].setBackground(Color.LIGHT_GRAY); //sudukoGrid.add(btnNumber[i][j]); // btnNumber[i][j].setBorder(new LineBorder(Color.BLACK)); //btnNumber[i][j].addListener(Button); //btnNumber[1][1].setBackground(Color.RED); //GroupButtons(); if((i == 0 || i == 1 || i == 2) && (j == 0 || j == 1 || j == 2)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); btnNumber[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.WHITE)); } if((i == 0 || i == 1 || i == 2) && (j == 3 || j == 4 || j == 5)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); btnNumber[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.GRAY)); } if((i == 0 || i == 1 || i == 2) && (j == 6 || j == 7 || j == 8)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); btnNumber[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.WHITE)); } if((i == 3 || i == 4 || i == 5) && (j == 0 || j == 1 || j == 2)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); btnNumber[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.GRAY)); } if((i == 3 || i == 4 || i == 5) && (j == 3 || j == 4 || j == 5)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); btnNumber[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.WHITE)); } if((i == 3 || i == 4 || i == 5) && (j == 6 || j == 7 || j == 8)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); btnNumber[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.GRAY)); } if((i == 6 || i == 7 || i == 8) && (j == 0 || j == 1 || j == 2)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); btnNumber[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.WHITE)); } if((i == 6 || i == 7 || i == 8) && (j == 3 || j == 4 || j == 5)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); btnNumber[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.GRAY)); } if((i == 6 || i == 7 || i == 8) && (j == 6 || j == 7 || j == 8)){ //btnNumber[i][j].setBackground(Color.DARK_GRAY); btnNumber[i][j].setBorder(new BevelBorder(1, Color.BLACK, Color.WHITE)); } sudukoGrid.add(btnNumber[i][j]); */ } } } public void event(MouseEvent event) { //JLabel test = (JLabel)event.getSource(); CellView test = (CellView)event.getSource(); if (rdbtnEnterValue.isSelected()== false || rdbtnEnterPosValue.isSelected()==true){ System.out.println("FIND POS1: "+test.getText()); findPosInput(test); String inputstrings = outputString; System.out.println("Output Possible: " + inputstrings); //int inInputs = Integer.parseInt(inputs); test.setPencil(inputstrings); //possibleValue(inputstrings,test); } else{ System.out.println("FIND POS2: "+test.getText()); findInput(test); test.requestFocusInWindow(); String input = output; System.out.println("Output: " + input); int inInput = 0; if(input != " "){ inInput = Integer.parseInt(input); } System.out.println("setButton: "+inInput); test.setValue(inInput); //setButton(inInput,test); } outputString = ""; } public void findPosInput(JLabel test) { test.setFocusable(true); test.setEnabled(true); test.requestFocusInWindow(); test.addKeyListener(this); System.out.println("selected:" + test); } public void findInput(JLabel test) { test.setFocusable(true); test.setEnabled(true); test.requestFocusInWindow(); test.addKeyListener(this); System.out.println("selected:" + test); } @Override public void keyPressed(KeyEvent e) { displayInfo(e, "KEY TYPED: "); } @Override public void keyReleased(KeyEvent e) { //displayInfo(e, "KEY PRESSED: "); } @Override public void keyTyped(KeyEvent e) { //displayInfo(e, "KEY RELEASED: "); } private void displayInfo(KeyEvent e, String string) { System.out.println("Display Info"); char c = e.getKeyChar(); if (outputString == null || output == null){ output = ""; outputString =""; } output = Character.toString(c); System.out.println("Output Num: "+ outputString); outputString = convertoString(c); System.out.println("OutputString: "+outputString); } private String convertoString(char c) { String tempString = outputString; tempString = "" + c; return tempString; } public void describe() { if (done == true){ lblCreatesANew.setVisible(false); lblClickToSolve.setVisible(false); lblLoadPreviousPuzzle.setVisible(false); lblDeleteAllInputs.setVisible(false); lblSaveCurrentPuzzle.setVisible(false); lblProvideSomeHelp.setVisible(false); done = false; } else{ lblCreatesANew.setVisible(true); lblClickToSolve.setVisible(true); lblProvideSomeHelp.setVisible(true); lblSaveCurrentPuzzle.setVisible(true); lblDeleteAllInputs.setVisible(true); lblLoadPreviousPuzzle.setVisible(true); JOptionPane.showMessageDialog(this,"How To Play: "+"\n"+ "The aim is to fill in each of the squares that are split into 9x9 grids, " +"\n"+ "each row, column and grid needs to contain the numbers 1-9 without "+"\n"+ "repeating a number"+"\n"+"\n"+"Tip: To add a value to a square " + "click on the desired square and use the"+"\n"+ "keyboard to enter the value needed and click on the square again. " + "To add" +"\n"+ " a possible value select the possible values option."); done = true; } } public void setBoard(SudokuBoard loaded){ System.out.println("Loaded: Set Buttons "); } /*for ( int i = 0; i < 9; i++){ for ( int j = 0; j < 9; j++){ //btnNumber[i][j].setText(""+loaded.sudokuBoard[i][j]); //setLabel(i,j,loaded.sudokuBoard[i][j]); setButton(loaded.sudokuBoard[i][j].intValue,btnNumber[i][j]); Font font = new Font("Dialog", Font.BOLD, 22); btnNumber[i][j].setFont(font); //btnNumber[i][j]. //btnNumber[i][j].setEnabled(false); } } } */ }
[ "t.c.1991@hotmail.com" ]
t.c.1991@hotmail.com
78a3c66f08e1d6c4ce11c1437c30b432f40c5f34
cd9a79ebbb2669a4461da3b6047b5359428ee4ec
/Bases_de_datos/src/EDITARyCREAR.java
fe11a216c80b752c662e3345781c0ce2e6b3d764
[]
no_license
JustinBogantes99/BASES-PROYECTO-1
fb22bd3b56d820839d436cde3ec31c2538306242
d4506d1cba55f409ba7bba3656defb86090953ad
refs/heads/master
2020-07-13T06:48:39.887055
2020-03-16T05:11:53
2020-03-16T05:11:53
205,022,623
0
0
null
2020-03-16T05:15:09
2019-08-28T21:00:37
PLSQL
UTF-8
Java
false
false
6,923
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author Justin */ public class EDITARyCREAR extends javax.swing.JFrame { /** * Creates new form EDITARyCREAR */ public EDITARyCREAR() { initComponents(); } /** * 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() { jComboBox1 = new javax.swing.JComboBox<>(); jButton1 = new javax.swing.JButton(); jButton2 = new javax.swing.JButton(); jTextField1 = new javax.swing.JTextField(); jLabel1 = new javax.swing.JLabel(); jLabel2 = new javax.swing.JLabel(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jComboBox1.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "Item 1", "Item 2", "Item 3", "Item 4" })); jButton1.setText("ACEPTAR"); jButton2.setText("REGRESAR"); jTextField1.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jTextField1ActionPerformed(evt); } }); jLabel1.setText("DATOS"); jLabel2.setText("NUEVO DATO"); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addContainerGap() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addComponent(jButton2) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) .addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 90, javax.swing.GroupLayout.PREFERRED_SIZE)) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING) .addComponent(jComboBox1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.PREFERRED_SIZE, 161, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jLabel1, javax.swing.GroupLayout.Alignment.LEADING)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 36, Short.MAX_VALUE) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(jLabel2) .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 161, javax.swing.GroupLayout.PREFERRED_SIZE)))) .addGap(30, 30, 30)) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGap(22, 22, 22) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jLabel1) .addComponent(jLabel2)) .addGap(18, 18, 18) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 24, javax.swing.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 184, Short.MAX_VALUE) .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) .addComponent(jButton1) .addComponent(jButton2)) .addContainerGap()) ); pack(); }// </editor-fold>//GEN-END:initComponents private void jTextField1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jTextField1ActionPerformed // TODO add your handling code here: }//GEN-LAST:event_jTextField1ActionPerformed /** * @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(EDITARyCREAR.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (InstantiationException ex) { java.util.logging.Logger.getLogger(EDITARyCREAR.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { java.util.logging.Logger.getLogger(EDITARyCREAR.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } catch (javax.swing.UnsupportedLookAndFeelException ex) { java.util.logging.Logger.getLogger(EDITARyCREAR.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); } //</editor-fold> /* Create and display the form */ java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new EDITARyCREAR().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton jButton1; private javax.swing.JButton jButton2; private javax.swing.JComboBox<String> jComboBox1; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel2; private javax.swing.JTextField jTextField1; // End of variables declaration//GEN-END:variables }
[ "justin.bogantes99@gmail.com" ]
justin.bogantes99@gmail.com
333c849047a54d64e2f12d10e07e2c6753e8b851
e281cd185bb38476d2d58dbd858a16aa93a6806e
/test/chk/jsphelper/service/servlet/CharsetFilterTest.java
ad66ae986ad29277b580f1e7fe67b141205a8cd0
[]
no_license
corestone/jsphelper3
445cda34f901854ecd6dab4347f053abe050d8ee
80093aa632fdd8140291813813cab3125888f5fb
refs/heads/master
2021-01-01T17:28:46.041660
2014-01-07T01:54:45
2014-01-07T01:54:45
null
0
0
null
null
null
null
UTF-8
Java
false
false
238
java
package chk.jsphelper.service.servlet; /** * Created with IntelliJ IDEA. * User: Corestone * Date: 13. 7. 17 * Time: 오후 4:40 * To change this template use File | Settings | File Templates. */ public class CharsetFilterTest { }
[ "corestone.kang@gmail.com" ]
corestone.kang@gmail.com
22a98dffd54e6901fce5f42e68f95118a3fe1573
68d6585dfd6392e7ee97886a065371728fa70ad3
/src/main/java/com/youyu/cotenant/service/PersonalService.java
aa608c24463ecdf511b6c95eb9ad745773f1a37a
[]
no_license
xwf001/cotenant
51a4761b5596315423d8c4473714a47ded1776f7
99a6795babd7e943439427e4d98dab1629292d5a
refs/heads/master
2020-07-18T17:57:05.556761
2019-09-10T14:41:27
2019-09-10T14:41:27
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,599
java
package com.youyu.cotenant.service; import com.youyu.cotenant.common.CotenantConstants; import com.youyu.cotenant.common.ResponseResult; import com.youyu.cotenant.common.ResultCode; import com.youyu.cotenant.config.MyBatisConfig; import com.youyu.cotenant.entity.*; import com.youyu.cotenant.exception.BizException; import com.youyu.cotenant.repository.CotenantGroupMapper; import com.youyu.cotenant.repository.CotenantGroupUserMapper; import com.youyu.cotenant.repository.biz.CotenantGroupBizMapper; import com.youyu.cotenant.repository.biz.CotenantPersonalBizMapper; import com.youyu.cotenant.utils.CurrentUserUtils; import com.youyu.cotenant.web.rest.vm.group.CotenantListOutVM; import com.youyu.cotenant.web.rest.vm.group.GroupDetailOutVM; import com.youyu.cotenant.web.rest.vm.group.GroupListOutVM; import com.youyu.cotenant.web.rest.vm.personal.GroupExamineInVM; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.util.List; @Service @Slf4j public class PersonalService { @Autowired private CurrentUserUtils currentUserUtils; @Autowired private CotenantPersonalBizMapper cotenantPersonalBizMapper; @Autowired private CotenantGroupBizMapper cotenantGroupBizMapper; @Autowired private CotenantGroupMapper cotenantGroupMapper; @Autowired private CotenantGroupUserMapper cotenantGroupUserMapper; /** * 查询我的合租任务 * * @param role * @return */ public List<GroupListOutVM> list(Integer role) { //查询出用户信息 Long userId = currentUserUtils.getCurrUserId(); List<GroupListOutVM> list = cotenantPersonalBizMapper.selectPersonalGroupList(role, userId); return list; } /** * 查询合租详情 * * @param groupId * @return */ public GroupDetailOutVM detail(Long groupId) { //查询出用户信息 Long userId = currentUserUtils.getCurrUserId(); //查询详情内容 GroupDetailOutVM groupDetailOutVM = cotenantGroupBizMapper.selectGroupDetail(groupId); List<CotenantListOutVM> list = cotenantPersonalBizMapper.selectCotenantList(groupId, userId); groupDetailOutVM.setCotenantList(list); return groupDetailOutVM; } /** * 解散租房团 * * @param groupId */ @Transactional(value = MyBatisConfig.COTENTANT_TRANSACTION_MANAGER) public void dismiss(Long groupId) { Long userId = currentUserUtils.getCurrUserId(); if (!isGroupLeader(groupId, userId)) { //您无权限操作 throw new BizException(ResponseResult.fail(ResultCode.NO_PERMISSION_OPERATION)); } //更改租房团状态 CotenantGroup cotenantGroup = new CotenantGroup(); cotenantGroup.setId(groupId); cotenantGroup.setStatus(CotenantConstants.GROUP_STATUS.CANCEL_STATUS); cotenantGroupMapper.updateByPrimaryKeySelective(cotenantGroup); //更改租房下所有成员状态 CotenantGroupUserExample cotenantGroupUserExample = new CotenantGroupUserExample(); cotenantGroupUserExample.createCriteria().andCotenantGroupIdEqualTo(groupId); CotenantGroupUser cotenantGroupUser = new CotenantGroupUser(); cotenantGroupUser.setStatus(CotenantConstants.EXAMINE_STATUS.CANCEL); cotenantGroupUserMapper.updateByExampleSelective(cotenantGroupUser, cotenantGroupUserExample); } /** * 租房成员审核 * * @param groupExamineInVM */ public void examine(GroupExamineInVM groupExamineInVM) { Long groupId = groupExamineInVM.getGroupId(); Long memberId = groupExamineInVM.getMemberId(); Integer status = groupExamineInVM.getStatus(); Long userId = currentUserUtils.getCurrUserId(); if (!isGroupLeader(groupId, userId)) { //您无权限操作 throw new BizException(ResponseResult.fail(ResultCode.NO_PERMISSION_OPERATION)); } //更改成员状态 CotenantGroupUserExample cotenantGroupUserExample = new CotenantGroupUserExample(); cotenantGroupUserExample.createCriteria().andCotenantGroupIdEqualTo(groupId).andCotenantUserIdEqualTo(memberId); CotenantGroupUser cotenantGroupUser = new CotenantGroupUser(); cotenantGroupUser.setStatus(status); cotenantGroupUserMapper.updateByExampleSelective(cotenantGroupUser, cotenantGroupUserExample); } /** * 取消租房(团员) * * @param groupId */ public void cancel(Long groupId) { Long userId = currentUserUtils.getCurrUserId(); //更改成员状态 CotenantGroupUserExample cotenantGroupUserExample = new CotenantGroupUserExample(); cotenantGroupUserExample.createCriteria().andCotenantGroupIdEqualTo(groupId).andCotenantUserIdEqualTo(userId); CotenantGroupUser cotenantGroupUser = new CotenantGroupUser(); cotenantGroupUser.setStatus(CotenantConstants.EXAMINE_STATUS.CANCEL); cotenantGroupUserMapper.updateByExampleSelective(cotenantGroupUser, cotenantGroupUserExample); } public boolean isGroupLeader(Long groupId, Long userId) { //查询该租房团是否属于登录用户 Long leaderId = cotenantGroupBizMapper.selectGroupLeader(groupId); if (userId != leaderId) { //您无权限操作 return false; } return true; } }
[ "baopengcheng@peilian.com" ]
baopengcheng@peilian.com
51392ad012eb21758bfb011b67094171d995221d
ba88354f84b75d24efe8dc0a984479e5758e5d03
/app/src/main/java/com/zwyl/guide/main/subject/SubjectActivityWrite.java
b949df3be67d502694155598b43184e4b9f50144
[]
no_license
ZHKTApp/DaoXueBen
8cac6c69c2bf6c8a53f2e48954d3c92a1df451ee
56d7803a94f7f1ba5bcdeaea2a6a8d1684cc8b5a
refs/heads/master
2022-11-16T12:18:30.944897
2020-06-29T13:58:39
2020-06-29T13:58:39
275,811,276
0
0
null
null
null
null
UTF-8
Java
false
false
16,828
java
package com.zwyl.guide.main.subject; import android.Manifest; import android.app.Activity; import android.app.ProgressDialog; import android.content.ContentResolver; import android.content.Context; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.Interpolator; import android.media.ThumbnailUtils; import android.net.Uri; import android.os.Environment; import android.os.Handler; import android.os.Message; import android.provider.MediaStore; import android.text.Html; import android.text.TextUtils; import android.text.format.DateFormat; import android.util.Log; import android.view.View; import android.webkit.WebView; import android.widget.EditText; import android.widget.ImageView; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.TextView; import android.widget.Toast; import com.mylhyl.acp.Acp; import com.mylhyl.acp.AcpListener; import com.mylhyl.acp.AcpOptions; import com.zwyl.guide.App; import com.zwyl.guide.R; import com.zwyl.guide.base.BaseActivity; import com.zwyl.guide.base.ComFlag; import com.zwyl.guide.customveiw.PaletteView; import com.zwyl.guide.dialog.TitleDialog; import com.zwyl.guide.util.Utils; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.Calendar; import java.util.List; import java.util.Locale; import butterknife.BindView; import butterknife.OnClick; public class SubjectActivityWrite extends BaseActivity implements PaletteView.Callback, Handler.Callback { @BindView(R.id.tv_delete) RadioButton tvDelete; @BindView(R.id.tv_repeal) RadioButton tvRepeal; @BindView(R.id.tv_renew) RadioButton tvRenew; @BindView(R.id.tv_wipe) RadioButton tvWipe; @BindView(R.id.tv_write) RadioButton tvWrite; @BindView(R.id.rg_group) RadioGroup rgGroup; @BindView(R.id.rg_group_top) RadioGroup rgGroupTop; @BindView(R.id.tv_sunbjectWrite_save) TextView tvSunbjectWriteSave; @BindView(R.id.rb_top_write) RadioButton rbTopWrite; @BindView(R.id.rb_top_edit) RadioButton rbTopEdit; @BindView(R.id.rb_top_photo) RadioButton rbTopPhoto; @BindView(R.id.palette_write) PaletteView mPaletteView; @BindView(R.id.ed_content) EditText edContent; @BindView(R.id.iv_photo) ImageView ivPhoto; @BindView(R.id.webView_subject_write) WebView webView_subject_write; @BindView(R.id.tvTitle) TextView tvTitle; private ProgressDialog mSaveProgressDlg; private static final int MSG_SAVE_SUCCESS = 1; private static final int MSG_SAVE_FAILED = 2; private Handler mHandler; private int toptag;//0手写笔,1输入法,2拍照 private Bitmap bmpPhoto; private String exercisesId, exercisesTitle, exerciseAnalysis, tvTitleNo; @Override protected int getContentViewId() { return R.layout.activity_subjectwrite; } @Override protected void initView() { super.initView(); exercisesId = getIntent().getStringExtra("exercisesId"); exercisesTitle = getIntent().getStringExtra("exercisesTitle"); exerciseAnalysis = getIntent().getStringExtra("exerciseAnalysis"); tvTitleNo = getIntent().getStringExtra("title"); rbTopWrite.setChecked(true);//默认选中手写笔 setTitleCenter("导学测验"); setShowFilter(false); mHandler = new Handler(this); if (!TextUtils.isEmpty(exercisesTitle)) webView_subject_write.loadDataWithBaseURL(null, exercisesTitle, "text/html", "UTF-8", null); if (!TextUtils.isEmpty(tvTitleNo)) { tvTitle.setText(tvTitleNo); } } private int tag = 0; @OnClick({R.id.tv_delete, R.id.tv_repeal, R.id.tv_renew, R.id.tv_wipe, R.id.tv_write, R.id.tv_sunbjectWrite_save, R.id.rb_top_write, R.id.rb_top_edit, R.id.rb_top_photo, R.id.iv_photo}) public void onViewClicked(View view) { switch (view.getId()) { case R.id.tv_delete: tag = 0; mPaletteView.setMode(PaletteView.Mode.DRAW); mPaletteView.clear(); break; case R.id.tv_repeal: tag = 0; mPaletteView.setMode(PaletteView.Mode.DRAW); mPaletteView.undo(); break; case R.id.tv_renew: tag = 0; mPaletteView.setMode(PaletteView.Mode.DRAW); mPaletteView.redo(); break; case R.id.tv_wipe: if (tag == 0) { showToast("选中"); tag = 1; mPaletteView.setMode(PaletteView.Mode.ERASER); return; } else { tag = 0; showToast("未选中"); rgGroup.clearCheck(); mPaletteView.setMode(PaletteView.Mode.DRAW); } case R.id.rb_top_write: // if (toptag != ComFlag.NumFlag.RB_TOP_WRITE) { new TitleDialog(this, "当前数据将会被删除!", new TitleDialog.OnclickListener() { @Override public void OnSure() { edContent.setVisibility(View.GONE); ivPhoto.setVisibility(View.GONE); rgGroup.setVisibility(View.VISIBLE); mPaletteView.setVisibility(View.VISIBLE); toptag = ComFlag.NumFlag.RB_TOP_WRITE; } @Override public void OnCancle() { if (toptag == ComFlag.NumFlag.RB_TOP_PHOTO) { rbTopPhoto.setChecked(true); } else { rbTopEdit.setChecked(true); } } }).show(); // } else { // toptag = ComFlag.NumFlag.RB_TOP_WRITE; // } break; case R.id.rb_top_edit: // if (toptag != ComFlag.NumFlag.RB_TOP_EDIT) { edContent.setText(""); new TitleDialog(this, "当前数据将会被删除!", new TitleDialog.OnclickListener() { @Override public void OnSure() { edContent.setVisibility(View.VISIBLE); ivPhoto.setVisibility(View.GONE); rgGroup.setVisibility(View.GONE); mPaletteView.setVisibility(View.GONE); mPaletteView.clear(); toptag = ComFlag.NumFlag.RB_TOP_EDIT; } @Override public void OnCancle() { if (toptag == ComFlag.NumFlag.RB_TOP_WRITE) { rbTopWrite.setChecked(true); } else { rbTopPhoto.setChecked(true); } } }).show(); // } else { // toptag = ComFlag.NumFlag.RB_TOP_EDIT; // } break; case R.id.rb_top_photo: // if (toptag != ComFlag.NumFlag.RB_TOP_PHOTO) { new TitleDialog(this, "当前数据将会被删除!", new TitleDialog.OnclickListener() { @Override public void OnSure() { rgGroup.setVisibility(View.GONE); edContent.setVisibility(View.GONE); mPaletteView.setVisibility(View.GONE); mPaletteView.clear(); ivPhoto.setVisibility(View.VISIBLE); toptag = ComFlag.NumFlag.RB_TOP_PHOTO; Acp.getInstance(SubjectActivityWrite.this).request(new AcpOptions.Builder().setPermissions(Manifest.permission.CAMERA).build(), new AcpListener() { @Override public void onGranted() { //showToast("同意了相机权限"); startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE), 1); } @Override public void onDenied(List<String> permissions) { showToast(permissions.toString() + "权限拒绝"); } }); } @Override public void OnCancle() { if (toptag == ComFlag.NumFlag.RB_TOP_EDIT) { rbTopEdit.setChecked(true); } else { rbTopWrite.setChecked(true); } } }).show(); // } else { // toptag = ComFlag.NumFlag.RB_TOP_PHOTO; // } break; case R.id.tv_sunbjectWrite_save: showToast("提交"); if (toptag == ComFlag.NumFlag.RB_TOP_WRITE) { if (mSaveProgressDlg == null) { initSaveProgressDlg(); } mSaveProgressDlg.show(); new Thread(new Runnable() { @Override public void run() { // Bitmap bm = mPaletteView.buildBitmap(); bmpPhoto = loadBitmapFromView(mPaletteView); if (bmpPhoto != null) { mHandler.obtainMessage(MSG_SAVE_SUCCESS).sendToTarget(); } else { mHandler.obtainMessage(MSG_SAVE_FAILED).sendToTarget(); } } }).start(); } else if (toptag == ComFlag.NumFlag.RB_TOP_PHOTO) { if (mSaveProgressDlg == null) { initSaveProgressDlg(); } mSaveProgressDlg.show(); new Thread(new Runnable() { @Override public void run() { // Bitmap bm = mPaletteView.buildBitmap(); // bmpPhoto = loadBitmapFromView(mPaletteView); if (bmpPhoto != null) { mHandler.obtainMessage(MSG_SAVE_SUCCESS).sendToTarget(); } else { mHandler.obtainMessage(MSG_SAVE_FAILED).sendToTarget(); } } }).start(); } else { //输入法文字 bmpPhoto = Utils.textAsBitmap(edContent.getText().toString().trim(), 16); if (mSaveProgressDlg == null) { initSaveProgressDlg(); } mSaveProgressDlg.show(); new Thread(new Runnable() { @Override public void run() { // Bitmap bm = mPaletteView.buildBitmap(); if (bmpPhoto != null) { mHandler.obtainMessage(MSG_SAVE_SUCCESS).sendToTarget(); } else { mHandler.obtainMessage(MSG_SAVE_FAILED).sendToTarget(); } } }).start(); } setResult(); break; case R.id.iv_photo: Acp.getInstance(this).request(new AcpOptions.Builder().setPermissions(Manifest.permission.CAMERA).build(), new AcpListener() { @Override public void onGranted() { //showToast("同意了相机权限"); startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE), 1); Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); File photoFile = null; photoFile = Utils.CreateImageFile(exercisesId); takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(photoFile)); takePictureIntent.putExtra(MediaStore.Images.Media.ORIENTATION, 0); startActivityForResult(takePictureIntent, 1); } @Override public void onDenied(List<String> permissions) { showToast(permissions.toString() + "权限拒绝"); } }); break; } } private void setResult() { if (bmpPhoto != null) { String pictureStr = Utils.saveCameraImage(bmpPhoto, exercisesId); Intent intent = getIntent(); intent.putExtra("pictureStr", pictureStr); intent.putExtra("exercisesId", exercisesId); intent.putExtra("isGetBack", true); this.setResult(RESULT_OK, intent); finish(); } } private Bitmap loadBitmapFromView(View v) { if (v == null) { return null; } Bitmap screenshot; screenshot = Bitmap.createBitmap(v.getWidth(), v.getHeight(), Bitmap.Config.RGB_565); Canvas c = new Canvas(screenshot); c.translate(-v.getScrollX(), -v.getScrollY()); v.draw(c); return screenshot; } @Override protected void initData() { super.initData(); } //加载progress private void initSaveProgressDlg() { mSaveProgressDlg = new ProgressDialog(this); mSaveProgressDlg.setMessage("正在保存,请稍候..."); mSaveProgressDlg.setCancelable(false); } @Override public void onUndoRedoStatusChanged() { tvRepeal.setEnabled(mPaletteView.canUndo()); tvRenew.setEnabled(mPaletteView.canRedo()); } @Override protected void onDestroy() { super.onDestroy(); mHandler.removeMessages(MSG_SAVE_FAILED); mHandler.removeMessages(MSG_SAVE_SUCCESS); } @Override public boolean handleMessage(Message msg) { switch (msg.what) { case MSG_SAVE_FAILED: mSaveProgressDlg.dismiss(); Toast.makeText(this, "保存失败", Toast.LENGTH_SHORT).show(); break; case MSG_SAVE_SUCCESS: mSaveProgressDlg.dismiss(); setResult(); Toast.makeText(this, "画板已保存", Toast.LENGTH_SHORT).show(); break; } return true; } // 使用startActivityForResult返回结果时调用的方法 @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); // 如果返回值是正常的话 if (resultCode == Activity.RESULT_OK) { // 验证请求码是否一至,也就是startActivityForResult的第二个参数 switch (requestCode) { case 1: File mFilePath = Utils.CreateImageFile(exercisesId); FileInputStream is = null; try { is = new FileInputStream(mFilePath); // 把流解析成bitmap,此时就得到了清晰的原图 bmpPhoto = BitmapFactory.decodeStream(is); //接下来就可以展示了(或者做上传处理) ivPhoto.setVisibility(View.VISIBLE); ivPhoto.setImageBitmap(bmpPhoto); ivPhoto.setBackground(null); } catch (FileNotFoundException e) { e.printStackTrace(); } // bmpPhoto = (Bitmap) data.getExtras().get("data"); // ivPhoto.setVisibility(View.VISIBLE); // ivPhoto.setImageBitmap(bmpPhoto); // ivPhoto.setBackground(null); //saveCameraImage(data); break; } } } }
[ "han584910546@qq.com" ]
han584910546@qq.com
2cc66a8e3cad7782714e06f946ff47f064f9bee3
662a011711f3a1c8994599753e89c99dfbc0b0d5
/src/lk/ijse/hibernate/dto/ItemDTO.java
c30ad2b35b18de9868df390f87ca0301fe2dd832
[]
no_license
Shashini-Prabodha/Hibernate-Thogakade-Layerd
da8471055559da5f218ca5e67e45d72c13564609
3946bdd88877228c94a914cc9245a83c5eb22291
refs/heads/master
2023-02-21T11:36:20.512115
2021-01-23T10:53:43
2021-01-23T10:53:43
332,157,403
2
0
null
null
null
null
UTF-8
Java
false
false
1,861
java
package lk.ijse.hibernate.dto; import lk.ijse.hibernate.entity.Orders; import java.util.List; public class ItemDTO { private String code; private String description; private double price; private int qtyOnHand; private List<OrderDTO> orders; public ItemDTO() { } public ItemDTO(String code, String description, double price, int qtyOnHand) { this.code = code; this.description = description; this.price = price; this.qtyOnHand = qtyOnHand; } public ItemDTO(String code, String description, double price, int qtyOnHand, List<OrderDTO> orders) { this.code = code; this.description = description; this.price = price; this.qtyOnHand = qtyOnHand; this.orders = orders; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public int getQtyOnHand() { return qtyOnHand; } public void setQtyOnHand(int qtyOnHand) { this.qtyOnHand = qtyOnHand; } public List<OrderDTO> getOrders() { return orders; } public void setOrders(List<OrderDTO> orders) { this.orders = orders; } @Override public String toString() { return "ItemDTO{" + "code='" + code + '\'' + ", description='" + description + '\'' + ", price=" + price + ", qtyOnHand=" + qtyOnHand + ", orders=" + orders + '}'; } }
[ "shashiniprabodha0503@gmail.com" ]
shashiniprabodha0503@gmail.com
643b6c8bf89d22722b628d7533bca093031b4b8c
625ff721b2373402d33f118eb808787a89175310
/dingtalk-core/src/main/java/cn/idongjia/dingtalk/robot/RobotCalculator.java
5cfdc8cf9f899d8ea3a77fda7f60646930f76d24
[]
no_license
robertlrs/dingtalk
2d5175d281c412111363838d60f6797016b46d00
7bfb87ff3b1313f95f0da71232e9e1984412e400
refs/heads/master
2020-05-20T12:43:25.485007
2019-05-08T09:46:56
2019-05-08T09:46:56
185,579,254
0
0
null
null
null
null
UTF-8
Java
false
false
2,176
java
package cn.idongjia.dingtalk.robot; import cn.idongjia.dingtalk.common.base.Base; /** * 效率待优化 */ public class RobotCalculator extends Base { private Node[] nodes; private int len; private Integer maxCount = 0; private Integer currentCount = 0; private Integer duration; //时间周期 public RobotCalculator(int len, int maxCount, int duration){ this.len = len; this.maxCount = maxCount;; this.duration = duration; nodes = new Node[len]; for (int i=0; i<len; i++){ nodes[i] = new Node(); } } public boolean put(int index, Long time){ boolean flag = false; if (index > len){ return flag; } synchronized (nodes){ if (this.currentCount < this.maxCount){ flag = true; }else{ //index后面的数据更容易命中, 别从0开始访问 for (int i=index; i<len; i++){ flag = calculate(i, time); if (flag){ break; } } if (!flag){ for (int i=0; i<index-1; i++){ flag = calculate(i, time); if (flag){ break; } } } } if (flag){ this.currentCount += 1; if (nodes[index].getTime() == time){ nodes[index].addCount(1); }else{ nodes[index].setTime(time); nodes[index].setCount(1); } } } return flag; } private boolean calculate(int index, long time){ boolean flag = false; if (nodes[index].notEmpty() && time - nodes[index].getTime() >= this.duration){ this.currentCount -= nodes[index].getCount(); nodes[index].setCount(0); if (this.currentCount < this.maxCount){ flag = true; } } return flag; } }
[ "luorenshu@idongjia.cn" ]
luorenshu@idongjia.cn
06b1e71fd68f4e4529606ac3219e5d945a5d2691
0b79856f383629eea705e8fc87dbce46b4929247
/src/com/kchardy/game/com/kchardy/game/graphics/gui/Button.java
54ba60534876a0f2958b8dabb0d25b7e2e62d7d1
[]
no_license
kchardy/PlatformGame
2672719f7f2ae3e7c691b4f028e3efebc003bcfc
e6e0b4b37647c29cd77bbacffac0a5671d193ccf
refs/heads/master
2020-04-02T15:11:54.677146
2018-10-24T20:16:07
2018-10-24T20:16:07
139,895,284
0
0
null
null
null
null
UTF-8
Java
false
false
1,680
java
package com.kchardy.game.com.kchardy.game.graphics.gui; import com.kchardy.game.Game; import java.awt.*; public class Button { public int x, y; public int width, height; public String label; public Button(int x, int y, int width, int height, String label) { this.x = x; this.y = y; this.width = width; this.height = height; this.label = label; } public void render(Graphics g) { g.setColor(Color.ORANGE); g.setFont(new Font("Century Gothic", Font.ITALIC, 30)); g.drawRect(getX(), getY(),getWidth(), getHeight()); FontMetrics fm = g.getFontMetrics(); int stringX = (getWidth() - fm.stringWidth(getLabel())) /2; int stringY = (fm.getAscent() + (getHeight() - (fm.getAscent() + fm.getDescent())) / 2); g.drawString(getLabel(), getX() + stringX, getY() + stringY); } public void triggerEvent() { if(getLabel().toLowerCase().contains("start")) { Game.playing = true; } else if(getLabel().toLowerCase().contains("exit")) System.exit(0); } public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } public int getWidth() { return width; } public void setWidth(int width) { this.width = width; } public int getHeight() { return height; } public void setHeight(int height) { this.height = height; } public String getLabel() { return label; } }
[ "k.chardy@o2.pl" ]
k.chardy@o2.pl
4a318448847117f988a8b0061e4d1d8c0e5b9452
ae5f309432c51cdc1883ccf65fe7672aa191d6d1
/src/main/java/com/project/readandshare/business/repository/PremioRepository.java
75ae37369da6e85e6cb3336da4a3c36152755044
[]
no_license
laurabotana/readandshare
fa1941b0732bf979dafeb4e8e77b67bf5c2d1e2d
6d017c77debec14670ea97e9741fe05bfacabe09
refs/heads/master
2023-03-09T00:41:03.548307
2021-02-24T18:00:43
2021-02-24T18:00:43
311,095,319
0
0
null
null
null
null
UTF-8
Java
false
false
313
java
package com.project.readandshare.business.repository; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; import com.project.readandshare.business.model.Premio; @Repository public interface PremioRepository extends CrudRepository<Premio, Integer> { }
[ "Laura@192.168.1.36" ]
Laura@192.168.1.36
79fe977e82fd722a911faaf1b17d9126a012144d
23030f7c99f7977887d921412aa1678bf9ca350a
/data/src/main/java/org/orcid/ns/orcid/ApplicationName.java
9310b13bcc457511caefcf72651f0a8b90085ffd
[]
no_license
anu-doi/orcid-updater
5b9e17338fe2f84b0bb018c3fdf3e1e936dc3085
f1ace2004fdf5151d4cd92543da6dd4c429e821a
refs/heads/master
2021-01-01T19:52:16.268678
2014-04-28T23:52:49
2014-04-28T23:52:49
17,230,933
1
0
null
null
null
null
UTF-8
Java
false
false
1,709
java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.02.05 at 03:55:58 PM EST // package org.orcid.ns.orcid; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "application-name") public class ApplicationName { @XmlValue protected String content; /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } }
[ "genevieve.turner@anu.edu.au" ]
genevieve.turner@anu.edu.au
d62b7ab012104a306e4611b8b5a36543c5d2621c
2836ed475ebfd152dfa54e33ba40366adb22ca75
/src/main/java/com/vodafone/tenpin/scoring/FrameScoring.java
1b49e45c4555fd5259d740a7644d0038ecb0d40b
[]
no_license
stewart-thomson/tenpin
4ed28ea99dfcc47311f98cef16ae913768b5d803
e05fede7a16ef2c2c0d49d26aea810cfe95735e9
refs/heads/master
2021-01-19T00:04:22.174451
2017-04-04T04:01:22
2017-04-04T04:01:22
87,143,968
0
0
null
null
null
null
UTF-8
Java
false
false
504
java
package com.vodafone.tenpin.scoring; import com.vodafone.tenpin.model.Frame; /** * Interface of the different scoring methods * <p> * Created by stewart thomson */ public interface FrameScoring { /** * Execute the calculation based on the frames provided and the current frame position. * * @param frames All game frames * @param currentPosition Current frame position * @return the frame score */ int execute(Frame[] frames, int currentPosition); }
[ "shuruga@gmail.com" ]
shuruga@gmail.com
85783af97b86c5a33740a9603894bb15c28d734d
6d079d2fcd022435d9d1a6675a861e253b94c12a
/src/main/java/medicine/demo/project/entity/LoginRequest.java
ced8c7204e0ef768bac63f55067deae415a717b9
[]
no_license
stoylan/Medicine-Demo-Api
98351ee2354e962df1c2ac16cc7fe3daeff89c61
40d83f47287d1f94b312ae78d3cdb93819458b59
refs/heads/master
2023-08-27T06:33:58.995823
2021-10-16T19:41:32
2021-10-16T19:41:32
417,927,273
0
1
null
null
null
null
UTF-8
Java
false
false
155
java
package medicine.demo.project.entity; import lombok.Data; @Data public class LoginRequest { private String username; private String password; }
[ "toylansamet@gmail.com" ]
toylansamet@gmail.com
87767e8ceb050da18770012f3fba291bdd2ee3dd
b60edef7a15590d579c8e37162e500e15f9cdf2f
/app/src/main/java/com/bowen/tcm/mine/activity/MyOrderDetailActivity.java
8749f435035439f0c08e75da68248ea2501bb990
[]
no_license
androiddeveloper007/ByOnline
f4c921bd4f1efbf9b82786b729143ab734a3e2fc
f015c8cb355eeaf23cfe7ff442a1b809e13507e8
refs/heads/master
2020-03-31T16:19:24.345222
2018-10-16T13:29:24
2018-10-16T13:29:24
152,370,417
0
0
null
null
null
null
UTF-8
Java
false
false
11,604
java
package com.bowen.tcm.mine.activity; import android.app.Activity; import android.graphics.drawable.Drawable; import android.os.Bundle; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import com.bowen.commonlib.dialog.AffirmDialog; import com.bowen.commonlib.utils.DateUtil; import com.bowen.commonlib.utils.EmptyUtils; import com.bowen.commonlib.utils.ImageLoaderUtil; import com.bowen.commonlib.utils.RouterActivityUtil; import com.bowen.commonlib.widget.CircleImageView; import com.bowen.tcm.R; import com.bowen.tcm.common.base.BaseActivity; import com.bowen.tcm.common.bean.TraOrder; import com.bowen.tcm.common.bean.network.Doctor; import com.bowen.tcm.common.bean.network.PayOrderInfo; import com.bowen.tcm.common.event.CancelOrDeleteOrderSuccessEvent; import com.bowen.tcm.common.model.Constants; import com.bowen.tcm.inquiry.activity.ChatActivity; import com.bowen.tcm.inquiry.activity.DoctorDetailActivity; import com.bowen.tcm.inquiry.activity.PayDetaitActivity; import com.bowen.tcm.mine.contract.MyOrderDetailContract; import com.bowen.tcm.mine.presenter.MyOrderDetailPresenter; import org.greenrobot.eventbus.EventBus; import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnClick; /** * Describe:我的订单详情 * Created by zhuzhipeng on 2018/6/29. */ public class MyOrderDetailActivity extends BaseActivity implements MyOrderDetailContract.View { @BindView(R.id.myOrderDetailStatus) TextView myOrderDetailStatus; @BindView(R.id.myOrderDetailStatusIcon) ImageView myOrderDetailStatusIcon; @BindView(R.id.mOrderTypeTv) TextView mOrderTypeTv; @BindView(R.id.orderFee) TextView orderFee; @BindView(R.id.doctorImg) CircleImageView doctorImg; @BindView(R.id.doctorName) TextView doctorName; @BindView(R.id.orderDepartment) TextView orderDepartment; @BindView(R.id.doctorLevel) TextView doctorLevel; @BindView(R.id.hospitalName) TextView hospitalName; @BindView(R.id.orderNo) TextView orderNo; @BindView(R.id.payAmount) TextView payAmount; @BindView(R.id.payWay) TextView payWay; @BindView(R.id.orderTime) TextView orderTime; @BindView(R.id.immediateConsultTv) TextView immediateConsultTv; @BindView(R.id.cancelOrder) TextView cancelOrder; @BindView(R.id.continuePay) TextView continuePay; @BindView(R.id.deleteOrder) TextView deleteOrder; @BindView(R.id.comment) TextView comment; @BindView(R.id.continueConsult) TextView continueConsult; private Activity mActivity; private String orderId; private MyOrderDetailPresenter mPresenter; private TraOrder mTraOrder; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setSystemStatusBar(R.color.color_00); setContentView(R.layout.activity_my_order_detail); ButterKnife.bind(this); mActivity = this; mPresenter = new MyOrderDetailPresenter(this, this); orderId = RouterActivityUtil.getString(this); mPresenter.getTraOrderById(orderId); } private void updateUI() { if (EmptyUtils.isEmpty(mTraOrder)) return; int orderStatus = mTraOrder.getOrderStatus(); int orderType = mTraOrder.getOrderType(); switch (orderStatus) { //1:待支付,2已支付,3:已取消,4:已结束,5:已删除 case Constants.PAY_ORDER_STATUS_WAIT: myOrderDetailStatus.setText("待支付"); myOrderDetailStatusIcon.setImageResource(R.drawable.pay_wait); continuePay.setVisibility(View.VISIBLE); cancelOrder.setVisibility(View.VISIBLE); break; case Constants.PAY_ORDER_STATUS_FINISH: myOrderDetailStatus.setText("已支付"); myOrderDetailStatusIcon.setImageResource(R.drawable.pay_succ); immediateConsultTv.setVisibility(View.VISIBLE); break; case Constants.PAY_ORDER_STATUS_CANCEL: myOrderDetailStatus.setText("已取消"); myOrderDetailStatusIcon.setImageResource(R.drawable.pay_failed); deleteOrder.setVisibility(View.VISIBLE); break; case Constants.PAY_ORDER_STATUS_OVER: myOrderDetailStatus.setText("已结束"); myOrderDetailStatusIcon.setImageResource(R.drawable.pay_end); comment.setVisibility(View.VISIBLE); continueConsult.setVisibility(View.VISIBLE); break; case Constants.PAY_ORDER_STATUS_COMMENT: myOrderDetailStatus.setText("已评价"); myOrderDetailStatusIcon.setImageResource(R.drawable.pay_end); comment.setVisibility(View.GONE); continueConsult.setVisibility(View.VISIBLE); break; } switch (orderType) {//01:图文问诊,02:送心意,03:门诊预约 case Constants.TYPE_PRODUCT_CONSULT: mOrderTypeTv.setText("图文问诊"); setTextViewDrawableLeft(mOrderTypeTv, R.drawable.picture_word_commend); break; case Constants.TYPE_PRODUCT_SEND_GIFT: mOrderTypeTv.setText("送心意"); setTextViewDrawableLeft(mOrderTypeTv, R.drawable.picture_word_commend); break; case Constants.TYPE_PRODUCT_APPIONTMENT: mOrderTypeTv.setText("门诊预约"); setTextViewDrawableLeft(mOrderTypeTv, R.drawable.appointment); break; } orderFee.setText(Constants.RMB + mTraOrder.getTotalAmount()); ImageLoaderUtil.getInstance().show(this, mTraOrder.getFileLink(), doctorImg, R.drawable.img_bg, true); doctorName.setText(mTraOrder.getName()); orderDepartment.setText(mTraOrder.getHospitalDepartments()); doctorLevel.setText(mTraOrder.getPositionStr()); hospitalName.setText(mTraOrder.getHospital()); orderNo.setText(mTraOrder.getOrderId()); payAmount.setText(Constants.RMB + mTraOrder.getRealAmount()); switch (mTraOrder.getPayChannel()) { case "WECHAT": findViewById(R.id.payChannelLayout).setVisibility(View.VISIBLE); payWay.setText("微信支付"); setTextViewDrawableLeft(payWay, R.drawable.weixin_pay); break; case "ALIPAY": findViewById(R.id.payChannelLayout).setVisibility(View.VISIBLE); payWay.setText("支付宝支付"); setTextViewDrawableLeft(payWay, R.drawable.ali_pay); break; default: findViewById(R.id.payChannelLayout).setVisibility(View.GONE); break; } orderTime.setText(DateUtil.date2String(mTraOrder.getPayTime(), DateUtil.DEFAULT_FORMAT_DATETIME_WITHOUT_SECOND)); } @Override public void onLoadSuccess(TraOrder traOrder) { mTraOrder = traOrder; updateUI(); } @OnClick({R.id.immediateConsultTv, R.id.cancelOrder, R.id.continuePay, R.id.deleteOrder, R.id.comment, R.id.continueConsult, R.id.backText}) public void onViewClicked(View view) { Bundle bundle = new Bundle(); switch (view.getId()) { case R.id.immediateConsultTv: continueConsult(bundle); break; case R.id.cancelOrder: AffirmDialog affirmDialog = new AffirmDialog(this, "确认取消订单?"); affirmDialog.setAffirmDialogListenner(new AffirmDialog.AffirmDialogListenner() { @Override public void onCancle() { } @Override public void onOK() { mPresenter.cancelTraOrder(orderId, "3"); } }); affirmDialog.show(); break; case R.id.continuePay: PayOrderInfo payOrderInfo = new PayOrderInfo(); payOrderInfo.setOrderType(mTraOrder.getOrderType()); payOrderInfo.setAmount(mTraOrder.getRealAmount()); payOrderInfo.setOrderId(mTraOrder.getOrderId()); payOrderInfo.setPayChannel(mTraOrder.getPayChannel()); Doctor doctorInfo = new Doctor(); doctorInfo.setDoctorId(mTraOrder.getDoctorId()); doctorInfo.setName(mTraOrder.getName()); doctorInfo.setHospitalDepartments(mTraOrder.getHospitalDepartments()); doctorInfo.setPositionStr(mTraOrder.getPositionStr()); doctorInfo.setHospital(mTraOrder.getHospital()); doctorInfo.setFileLink(mTraOrder.getFileLink()); payOrderInfo.setEmrDoctor(doctorInfo); bundle.putSerializable(RouterActivityUtil.FROM_TAG, payOrderInfo); RouterActivityUtil.startActivity(mActivity, PayDetaitActivity.class, bundle); break; case R.id.deleteOrder: AffirmDialog affirmDialog1 = new AffirmDialog(this, "确认删除订单?"); affirmDialog1.setAffirmDialogListenner(new AffirmDialog.AffirmDialogListenner() { @Override public void onCancle() { } @Override public void onOK() { mPresenter.cancelTraOrder(orderId, "5"); } }); affirmDialog1.show(); break; case R.id.comment://评价 bundle.putString(RouterActivityUtil.FROM_TAG, mTraOrder.getOrderId()); RouterActivityUtil.startActivity(MyOrderDetailActivity.this, ServiceEvaluateActivity.class, bundle); break; case R.id.continueConsult: bundle = new Bundle(); bundle.putString(RouterActivityUtil.FROM_TAG, mTraOrder.getDoctorId()); RouterActivityUtil.startActivity(mActivity, DoctorDetailActivity.class, bundle); break; case R.id.backText: onBackPressed(); break; } } private void continueConsult(Bundle bundle) { PayOrderInfo payOrderInfo1 = new PayOrderInfo(); Doctor doctor = new Doctor(); doctor.setHeadImgUrl(mTraOrder.getFileLink()); doctor.setDoctorId(mTraOrder.getDoctorId()); doctor.setName(mTraOrder.getName()); payOrderInfo1.setEmrDoctor(doctor); payOrderInfo1.setOrderId(mTraOrder.getOrderId()); bundle.putSerializable(RouterActivityUtil.FROM_TAG, payOrderInfo1); RouterActivityUtil.startActivity(mActivity, ChatActivity.class, bundle); } @Override public void onLoadFail(TraOrder list) { } private void setTextViewDrawableLeft(TextView tv, int resId) { Drawable drawable = getResources().getDrawable(resId); drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());// 这一步必须要做,否则不会显示. tv.setCompoundDrawables(drawable, null, null, null); } @Override public void cancelOrderSucc() { EventBus.getDefault().post(new CancelOrDeleteOrderSuccessEvent()); finish(); } @Override public void cancelOrderFail() { } }
[ "zhu852514500@163.com" ]
zhu852514500@163.com